blob: 2e261ddce0336b16d13d8d7f01e71500664c91e2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.nifi.oauth2;
public class AccessToken {
private String accessToken;
private String refreshToken;
private String tokenType;
private Integer expires;
private String scope;
private Long fetchTime;
public AccessToken(String accessToken,
String refreshToken,
String tokenType,
Integer expires,
String scope) {
this.accessToken = accessToken;
this.tokenType = tokenType;
this.refreshToken = refreshToken;
this.expires = expires;
this.scope = scope;
this.fetchTime = System.currentTimeMillis();
}
public String getAccessToken() {
return accessToken;
}
public String getRefreshToken() {
return refreshToken;
}
public String getTokenType() {
return tokenType;
}
public Integer getExpires() {
return expires;
}
public String getScope() {
return scope;
}
public Long getFetchTime() {
return fetchTime;
}
public boolean isExpired() {
return System.currentTimeMillis() >= ( fetchTime + (expires * 1000) );
}
}