Interface ITokenRefreshResponse
- All Superinterfaces:
Serializable
Common interface for responses to a refresh token request.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
getAccessToken
String getAccessToken()- Returns:
- The new access token.
-
getExpiresIn
Long getExpiresIn()- Returns:
- The time in seconds until the access token expires.
-
getRefreshToken
String getRefreshToken()- Returns:
- The new refresh token.
-
getRefreshExpiresIn
Long getRefreshExpiresIn()- Returns:
- The time in seconds until the refresh token expires.
-
getIdToken
String getIdToken()- Returns:
- The id token containing user information.
-
getIdTokenExpiresIn
Long getIdTokenExpiresIn()- Returns:
- The time in seconds until the id token expires.
-
getTokenType
String getTokenType()- Returns:
- The type of the token, e.g. "Bearer".
-