@Generated(value="org.immutables.processor.ProxyProcessor") public final class RefreshTokenRequest extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
RefreshTokenRequest.Builder
Builds instances of type
RefreshTokenRequest. |
| Modifier and Type | Method and Description |
|---|---|
static RefreshTokenRequest.Builder |
builder()
Creates a builder for
RefreshTokenRequest. |
boolean |
equals(Object another)
This instance is equal to all instances of
RefreshTokenRequest that have equal attribute values. |
String |
getClientId()
The client identifier
|
String |
getClientSecret()
The client's secret passphrase
|
String |
getRefreshToken()
The password
|
TokenFormat |
getTokenFormat()
The token format
|
int |
hashCode()
Computes a hash code from attributes:
clientId, clientSecret, refreshToken, tokenFormat. |
String |
toString()
Prints the immutable value
RefreshTokenRequest with attribute values. |
public String getClientId()
public String getClientSecret()
public String getRefreshToken()
public TokenFormat getTokenFormat()
public boolean equals(Object another)
RefreshTokenRequest that have equal attribute values.public int hashCode()
clientId, clientSecret, refreshToken, tokenFormat.public String toString()
RefreshTokenRequest with attribute values.public static RefreshTokenRequest.Builder builder()
RefreshTokenRequest.
RefreshTokenRequest.builder()
.clientId(String) // required clientId
.clientSecret(String) // required clientSecret
.refreshToken(String) // required refreshToken
.tokenFormat(org.cloudfoundry.uaa.tokens.TokenFormat | null) // nullable tokenFormat
.build();
Copyright © 2020. All rights reserved.