@Generated(value="org.immutables.processor.ProxyProcessor") public final class InternalConfiguration extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
InternalConfiguration.Builder
Builds instances of type
InternalConfiguration. |
| Modifier and Type | Method and Description |
|---|---|
static InternalConfiguration.Builder |
builder()
Creates a builder for
InternalConfiguration. |
boolean |
equals(Object another)
This instance is equal to all instances of
InternalConfiguration that have equal attribute values. |
Boolean |
getDisableInternalUserManagement()
When set to true, user management is disabled for this provider, defaults to false
|
List<String> |
getEmailDomains()
List of email domains associated with the provider for the purpose of associating users to the correct origin upon invitation.
|
LockoutPolicy |
getLockoutPolicy()
The lockout policy
|
PasswordPolicy |
getPasswordPolicy()
The password policy
|
String |
getProviderDescription()
Human readable name/description of this provider
|
int |
hashCode()
Computes a hash code from attributes:
disableInternalUserManagement, emailDomains, lockoutPolicy, passwordPolicy, providerDescription. |
String |
toString()
Prints the immutable value
InternalConfiguration with attribute values. |
public Boolean getDisableInternalUserManagement()
public List<String> getEmailDomains()
public LockoutPolicy getLockoutPolicy()
public PasswordPolicy getPasswordPolicy()
public String getProviderDescription()
public boolean equals(Object another)
InternalConfiguration that have equal attribute values.public int hashCode()
disableInternalUserManagement, emailDomains, lockoutPolicy, passwordPolicy, providerDescription.public String toString()
InternalConfiguration with attribute values.public static InternalConfiguration.Builder builder()
InternalConfiguration.
InternalConfiguration.builder()
.disableInternalUserManagement(Boolean | null) // nullable disableInternalUserManagement
.emailDomains(List<String> | null) // nullable emailDomains
.lockoutPolicy(org.cloudfoundry.uaa.identityproviders.LockoutPolicy | null) // nullable lockoutPolicy
.passwordPolicy(org.cloudfoundry.uaa.identityproviders.PasswordPolicy | null) // nullable passwordPolicy
.providerDescription(String | null) // nullable providerDescription
.build();
Copyright © 2020. All rights reserved.