Class AccessToken
java.lang.Object
it.pagopa.swclient.mil.azureservices.identity.bean.AccessToken
DTO of the response from Microsoft Entra ID to the request for an access token.
- Author:
- Antonio Tarricone
-
Field Summary
Modifier and TypeFieldDescriptionprivate String
Client ID of the applicant.private long
Unix epoch in seconds of expiration of the returned access token.private String
Resource which can be accessed using the returned access token.private String
Type of the returned access token.private String
Value of the returned access token. -
Constructor Summary
-
Method Summary
-
Field Details
-
type
Type of the returned access token. It should be always
Bearer
. -
expiresOn
private long expiresOnUnix epoch in seconds of expiration of the returned access token.
-
clientId
Client ID of the applicant.
-
resource
Resource which can be accessed using the returned access token.
-
value
Value of the returned access token.
-
-
Constructor Details
-
AccessToken
public AccessToken()Default constructor.
-