All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.core.credential.AccessToken Maven / Gradle / Ivy

There is a newer version: 1.54.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.core.credential;

import java.time.OffsetDateTime;

/**
 * 

* 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 com.azure.core.credential * @see com.azure.core.credential.TokenCredential */ public class AccessToken { private final String token; private final OffsetDateTime expiresAt; /** * Creates an access token instance. * * @param token the token string. * @param expiresAt the expiration time. */ public AccessToken(String token, OffsetDateTime expiresAt) { this.token = token; this.expiresAt = expiresAt; } /** * Gets the token. * * @return The token. */ public String getToken() { return token; } /** * Gets the time when the token expires, in UTC. * * @return The time when the token expires, in UTC. */ public OffsetDateTime getExpiresAt() { return expiresAt; } /** * Whether the token has expired. * * @return Whether the token has expired. */ public boolean isExpired() { return OffsetDateTime.now().isAfter(expiresAt); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy