@Generated(value="org.immutables.processor.ProxyProcessor") public final class CreateIdentityProviderRequest extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
CreateIdentityProviderRequest.Builder
Builds instances of type
CreateIdentityProviderRequest. |
| Modifier and Type | Method and Description |
|---|---|
static CreateIdentityProviderRequest.Builder |
builder()
Creates a builder for
CreateIdentityProviderRequest. |
boolean |
equals(Object another)
This instance is equal to all instances of
CreateIdentityProviderRequest that have equal attribute values. |
Boolean |
getActive()
Whether the identity provider is active
|
IdentityProviderConfiguration |
getConfiguration()
The configuration of this identity provider according to its type.
|
String |
getIdentityZoneId()
Returns the identity zone id
|
String |
getIdentityZoneSubdomain()
Returns the identity zone subdomain
|
String |
getName()
Human-readable name for this provider
|
String |
getOriginKey()
A unique alias for the provider
|
Type |
getType()
The type of the identity provider.
|
int |
hashCode()
Computes a hash code from attributes:
identityZoneId, identityZoneSubdomain, active, configuration, name, originKey, type. |
String |
toString()
Prints the immutable value
CreateIdentityProviderRequest with attribute values. |
public String getIdentityZoneId()
public String getIdentityZoneSubdomain()
public Boolean getActive()
public IdentityProviderConfiguration getConfiguration()
public String getName()
public String getOriginKey()
public Type getType()
public boolean equals(Object another)
CreateIdentityProviderRequest that have equal attribute values.public int hashCode()
identityZoneId, identityZoneSubdomain, active, configuration, name, originKey, type.public String toString()
CreateIdentityProviderRequest with attribute values.public static CreateIdentityProviderRequest.Builder builder()
CreateIdentityProviderRequest.
CreateIdentityProviderRequest.builder()
.identityZoneId(String | null) // nullable identityZoneId
.identityZoneSubdomain(String | null) // nullable identityZoneSubdomain
.active(Boolean | null) // nullable active
.configuration(org.cloudfoundry.uaa.identityproviders.IdentityProviderConfiguration) // required configuration
.name(String) // required name
.originKey(String) // required originKey
.type(org.cloudfoundry.uaa.identityproviders.Type) // required type
.build();
Copyright © 2020. All rights reserved.