@Generated(value="org.immutables.processor.ProxyProcessor") public final class CreateUserResponse extends AbstractUser
| Modifier and Type | Class and Description |
|---|---|
static class |
CreateUserResponse.Builder
Builds instances of type
CreateUserResponse. |
| Modifier and Type | Method and Description |
|---|---|
static CreateUserResponse.Builder |
builder()
Creates a builder for
CreateUserResponse. |
boolean |
equals(Object another)
This instance is equal to all instances of
CreateUserResponse that have equal attribute values. |
Boolean |
getActive()
Whether the user is active
|
List<Approval> |
getApprovals()
The approvals for the user
|
List<Email> |
getEmail()
The emails for the user
|
String |
getExternalId()
The external id
|
List<Group> |
getGroups()
The groups for the user
|
String |
getId()
The id
|
Long |
getLastLogonTime()
The unix epoch timestamp of when the user last authenticated
|
Meta |
getMeta()
Metadata for the result
|
Name |
getName()
The user's name
|
String |
getOrigin()
The identity provider that authenticated this user
|
String |
getPasswordLastModified()
The timestamp when the user's password was last modified
|
List<PhoneNumber> |
getPhoneNumbers()
The phone numbers for the user
|
Long |
getPreviousLoginTime()
The unix epoch timestamp of when the user last authenticated
|
List<String> |
getSchemas()
The schemas
|
String |
getUserName()
The user name
|
Boolean |
getVerified()
Whether the user's email is verified
|
String |
getZoneId()
The zone id the user belongs to
|
int |
hashCode()
Computes a hash code from attributes:
id, origin, userName, active, email, lastLogonTime, meta, name, passwordLastModified, phoneNumbers, previousLoginTime, schemas, verified, zoneId, approvals, externalId, groups. |
String |
toString()
Prints the immutable value
CreateUserResponse with attribute values. |
public String getId()
getId in class AbstractUserIdpublic String getOrigin()
getOrigin in class AbstractUserIdpublic String getUserName()
getUserName in class AbstractUserIdpublic Boolean getActive()
getActive in class AbstractUserSummarypublic List<Email> getEmail()
getEmail in class AbstractUserSummarypublic Long getLastLogonTime()
getLastLogonTime in class AbstractUserSummarypublic Meta getMeta()
getMeta in class AbstractUserSummarypublic Name getName()
getName in class AbstractUserSummarypublic String getPasswordLastModified()
getPasswordLastModified in class AbstractUserSummarypublic List<PhoneNumber> getPhoneNumbers()
getPhoneNumbers in class AbstractUserSummarypublic Long getPreviousLoginTime()
getPreviousLoginTime in class AbstractUserSummarypublic List<String> getSchemas()
getSchemas in class AbstractUserSummarypublic Boolean getVerified()
getVerified in class AbstractUserSummarypublic String getZoneId()
getZoneId in class AbstractUserSummarypublic List<Approval> getApprovals()
getApprovals in class AbstractUserpublic String getExternalId()
getExternalId in class AbstractUserpublic List<Group> getGroups()
getGroups in class AbstractUserpublic boolean equals(Object another)
CreateUserResponse that have equal attribute values.public int hashCode()
id, origin, userName, active, email, lastLogonTime, meta, name, passwordLastModified, phoneNumbers, previousLoginTime, schemas, verified, zoneId, approvals, externalId, groups.public String toString()
CreateUserResponse with attribute values.public static CreateUserResponse.Builder builder()
CreateUserResponse.
CreateUserResponse.builder()
.id(String) // required id
.origin(String) // required origin
.userName(String) // required userName
.active(Boolean) // required active
.email|addAllEmail(Email) // email elements
.lastLogonTime(Long | null) // nullable lastLogonTime
.meta(org.cloudfoundry.uaa.users.Meta) // required meta
.name(org.cloudfoundry.uaa.users.Name) // required name
.passwordLastModified(String) // required passwordLastModified
.phoneNumber|addAllPhoneNumbers(PhoneNumber) // phoneNumbers elements
.previousLoginTime(Long | null) // nullable previousLoginTime
.schema|addAllSchemas(String) // schemas elements
.verified(Boolean) // required verified
.zoneId(String) // required zoneId
.approval|addAllApprovals(Approval) // approvals elements
.externalId(String | null) // nullable externalId
.group|addAllGroups(org.cloudfoundry.uaa.users.Group) // groups elements
.build();
Copyright © 2020. All rights reserved.