SpringAppDomains Interface

Implements

public interface SpringAppDomains
extends HasManager<AppPlatformManager>, HasParent<SpringApp>, SupportsGettingById<SpringAppDomain>, SupportsGettingByName<SpringAppDomain>, SupportsListing<SpringAppDomain>, SupportsDeletingById, SupportsDeletingByName

Entry point for Spring App Custom Domains API.

Method Summary

Modifier and Type Method and Description
abstract CustomDomainValidateResult validate(String domain)

Checks the domain is validate for the app or not.

abstract Mono<CustomDomainValidateResult> validateAsync(String domain)

Checks the domain is validate for the app or not.

Method Details

validate

public abstract CustomDomainValidateResult validate(String domain)

Checks the domain is validate for the app or not.

Parameters:

domain - the domain name

Returns:

the domain is validate for the parent app or not

validateAsync

public abstract Mono validateAsync(String domain)

Checks the domain is validate for the app or not.

Parameters:

domain - the domain name

Returns:

the domain is validate for the parent app or not

Applies to