@Generated(value="org.immutables.processor.ProxyProcessor") public final class Approval extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Approval.Builder
Builds instances of type
Approval. |
| Modifier and Type | Method and Description |
|---|---|
static Approval.Builder |
builder()
Creates a builder for
Approval. |
boolean |
equals(Object another)
This instance is equal to all instances of
Approval that have equal attribute values. |
String |
getClientId()
The client id
|
String |
getExpiresAt()
When the approval expires
|
String |
getLastUpdatedAt()
When the approval was last updated
|
String |
getScope()
The scope on the approval
|
ApprovalStatus |
getStatus()
The status of the approval
|
String |
getUserId()
The user id
|
int |
hashCode()
Computes a hash code from attributes:
clientId, expiresAt, lastUpdatedAt, scope, status, userId. |
String |
toString()
Prints the immutable value
Approval with attribute values. |
public String getClientId()
public String getExpiresAt()
public String getLastUpdatedAt()
public String getScope()
public ApprovalStatus getStatus()
public String getUserId()
public boolean equals(Object another)
Approval that have equal attribute values.public int hashCode()
clientId, expiresAt, lastUpdatedAt, scope, status, userId.public String toString()
Approval with attribute values.public static Approval.Builder builder()
Approval.
Approval.builder()
.clientId(String) // required clientId
.expiresAt(String) // required expiresAt
.lastUpdatedAt(String) // required lastUpdatedAt
.scope(String) // required scope
.status(org.cloudfoundry.uaa.users.ApprovalStatus) // required status
.userId(String) // required userId
.build();
Copyright © 2020. All rights reserved.