Class AccessToken
Represents an immutable access token with a token string and an expiration time.
An Access Token is a security token that is issued by an authentication source, such as Azure Active Directory (AAD), and it represents the authorization to access a specific resource or service. It is typically used to authenticate and authorize requests made to Azure services.
Access Tokens are obtained through the authentication process, where the user or application presents valid credentials (such as a client ID, client secret, username/password, or certificate) to the authentication source. The authentication source then verifies the credentials and issues an Access Token, which is a time-limited token that grants access to the requested resource.
Once an Access Token is obtained, it can be included in the Authorization header of HTTP requests to authenticate and authorize requests to Azure services.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAccessToken(String token, OffsetDateTime expiresAt) Creates an access token instance.AccessToken(String token, OffsetDateTime expiresAt, OffsetDateTime refreshAt) Creates an access token instance.AccessToken(String token, OffsetDateTime expiresAt, OffsetDateTime refreshAt, String tokenType) Creates an access token instance. -
Method Summary
Modifier and TypeMethodDescriptionGets theDurationuntil theAccessTokenexpires.Gets the time when the token expires, in UTC.Gets the time when the token should refresh next, in UTC.getToken()Gets the token.Gets the token type.booleanWhether the token has expired.
-
Constructor Details
-
AccessToken
Creates an access token instance.- Parameters:
token- the token string.expiresAt- the expiration time.
-
AccessToken
Creates an access token instance.- Parameters:
token- the token string.expiresAt- the expiration time.refreshAt- the next token refresh time.
-
AccessToken
public AccessToken(String token, OffsetDateTime expiresAt, OffsetDateTime refreshAt, String tokenType) Creates an access token instance.- Parameters:
token- the token string.expiresAt- the expiration time.refreshAt- the next token refresh time.tokenType- the type of token.
-
-
Method Details
-
getToken
Gets the token.- Returns:
- The token.
-
getExpiresAt
Gets the time when the token expires, in UTC.- Returns:
- The time when the token expires, in UTC.
-
getRefreshAt
Gets the time when the token should refresh next, in UTC.Note: This value can be null as it is not always provided by the service. When it is provided, it overrides the default refresh offset used by the
BearerTokenAuthenticationPolicyto proactively refresh the token.- Returns:
- The time when the token should refresh next, in UTC.
-
isExpired
public boolean isExpired()Whether the token has expired.- Returns:
- Whether the token has expired.
-
getTokenType
Gets the token type.- Returns:
- A string representing the token type. It can be "Bearer" or "Pop".
-
getDurationUntilExpiration
Gets theDurationuntil theAccessTokenexpires.The
Durationis based on thecurrent timeand may return a negativeDuration, indicating that theAccessTokenhas expired.- Returns:
- The
Durationuntil theAccessTokenexpires.
-