Interface IRefreshTokenResponse
-
- All Superinterfaces:
Serializable
public interface IRefreshTokenResponse extends Serializable
Common interface for responses to a refresh token request.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
ITokenEndpoint.refresh(String, String)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAccessToken()
Long
getExpiresIn()
Long
getRefreshExpiresIn()
String
getRefreshToken()
String
getTokenType()
-
-
-
Method Detail
-
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.
-
getTokenType
String getTokenType()
- Returns:
- The type of the token, e.g. "Bearer".
-
-