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
FieldsModifier and TypeFieldDescriptionprivate StringClient ID of the applicant.private longUnix epoch in seconds of expiration of the returned access token.private StringResource which can be accessed using the returned access token.private StringType of the returned access token.private StringValue of the returned access token. - 
Constructor Summary
Constructors - 
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.
 
 -