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

com.here.account.oauth2.FileAccessTokenResponse Maven / Gradle / Ivy

/*
 * Copyright (c) 2018 HERE Europe B.V.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.here.account.oauth2;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * A FileAccessTokenResponse provides access to an Access Token 
 * read from a File.  Because Files may have been written in the 
 * past, the method {@link #getExp()} gives you the proper expiration time, 
 * and {@link #getExpiresIn()} is dynamically computed to behave as though 
 * you just got the response from a server.
 * 
 * @author kmccrack
 *
 */
public class FileAccessTokenResponse extends AccessTokenResponse {

    /**
     * exp
         The "exp" (expiration time) claim identifies the expiration time on
   or after which the JWT MUST NOT be accepted for processing.
     *
     * 

* See also * JSON Web Token (JWT): "exp" (Expiration Time) Claim. * *

* It is of type "NumericDate": * A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds. * *

* See also * JSON Web Token (JWT): Terminology. */ @JsonProperty("exp") private final Long exp; public FileAccessTokenResponse() { this(null, null, null, null, null, null, null); } /** * Please use {@link #FileAccessTokenResponse(String, String, Long, String, String, Long, String)}. * * @param accessToken the accessToken * @param tokenType the tokenType, for example "bearer" * @param expiresIn the expiresIn, in seconds to expiration * @param refreshToken the refreshToken * @param idToken the idToken * @param exp the expiration time in UTC seconds */ @Deprecated public FileAccessTokenResponse(String accessToken, String tokenType, Long expiresIn, String refreshToken, String idToken, Long exp) { this(accessToken, tokenType, expiresIn, refreshToken, idToken, exp, null); } /** * Construct a FileAccessTokenResponse with the specified values. * * @param accessToken the accessToken * @param tokenType the tokenType, for example "bearer" * @param expiresIn the expiresIn, in seconds to expiration * @param refreshToken the refreshToken * @param idToken the idToken * @param exp the expiration time in UTC seconds * @param scope the scope of the accessToken, if applicable */ public FileAccessTokenResponse(String accessToken, String tokenType, Long expiresIn, String refreshToken, String idToken, Long exp, String scope) { super(accessToken, tokenType, expiresIn, refreshToken, idToken, scope); this.exp = exp; } /** * In a File-based Access Token Response, the access_token may have been written * long ago, and the appropriate expiresIn value is derived from the fixed quantity * "exp" seconds minus the time of this object creation in seconds. * *

* {@inheritDoc} */ @Override public Long getExpiresIn() { return exp - (getStartTimeMilliseconds() / 1000); } /** * exp The "exp" (expiration time) claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing. * *

* See also * JSON Web Token (JWT): "exp" (Expiration Time) Claim. * *

* It is of type "NumericDate": * A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds. * *

* See also * JSON Web Token (JWT): Terminology. * * @return the exp */ public Long getExp() { return exp; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy