@Generated(value="org.immutables.processor.ProxyProcessor") public final class CreateUserRequest extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
CreateUserRequest.Builder
Builds instances of type
CreateUserRequest. |
| Modifier and Type | Method and Description |
|---|---|
static CreateUserRequest.Builder |
builder()
Creates a builder for
CreateUserRequest. |
boolean |
equals(Object another)
This instance is equal to all instances of
CreateUserRequest that have equal attribute values. |
Boolean |
getActive()
Whether the user is active
|
List<Email> |
getEmail()
The emails for the user
|
String |
getExternalId()
The external id
|
String |
getIdentityZoneId()
Returns the identity zone id
|
String |
getIdentityZoneSubdomain()
Returns the identity zone subdomain
|
Name |
getName()
The user's name
|
String |
getOrigin()
The identity provider that authenticated this user
|
String |
getPassword()
The password
|
List<PhoneNumber> |
getPhoneNumbers()
The phone numbers for the user
|
String |
getUserName()
The user name
|
Boolean |
getVerified()
Whether the user's email is verified
|
int |
hashCode()
Computes a hash code from attributes:
identityZoneId, identityZoneSubdomain, active, email, externalId, name, origin, password, phoneNumbers, userName, verified. |
String |
toString()
Prints the immutable value
CreateUserRequest with attribute values. |
public String getIdentityZoneId()
public String getIdentityZoneSubdomain()
public Boolean getActive()
public String getExternalId()
public Name getName()
public String getOrigin()
public String getPassword()
public List<PhoneNumber> getPhoneNumbers()
public String getUserName()
public Boolean getVerified()
public boolean equals(Object another)
CreateUserRequest that have equal attribute values.public int hashCode()
identityZoneId, identityZoneSubdomain, active, email, externalId, name, origin, password, phoneNumbers, userName, verified.public String toString()
CreateUserRequest with attribute values.public static CreateUserRequest.Builder builder()
CreateUserRequest.
CreateUserRequest.builder()
.identityZoneId(String | null) // nullable identityZoneId
.identityZoneSubdomain(String | null) // nullable identityZoneSubdomain
.active(Boolean | null) // nullable active
.email|addAllEmail(Email) // email elements
.externalId(String | null) // nullable externalId
.name(org.cloudfoundry.uaa.users.Name | null) // nullable name
.origin(String | null) // nullable origin
.password(String | null) // nullable password
.phoneNumbers(List<PhoneNumber> | null) // nullable phoneNumbers
.userName(String) // required userName
.verified(Boolean | null) // nullable verified
.build();
Copyright © 2020. All rights reserved.