blob: dbc9eae3de0b3428f8c2a022ab5a126e24f8de6a [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.syncope.core.logic.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonPropertyOrder({
"access_token",
"id_token",
"expires_in",
"token_type"
})
public class TokenEndpointResponse {
@JsonProperty("access_token")
private String accessToken;
@JsonProperty("id_token")
private String idToken;
@JsonProperty("expires_in")
private int expiresIn;
@JsonProperty("token_type")
private String tokenType;
@JsonProperty("access_token")
public String getAccessToken() {
return accessToken;
}
@JsonProperty("access_token")
public void setAccessToken(final String accessToken) {
this.accessToken = accessToken;
}
@JsonProperty("id_token")
public String getIdToken() {
return idToken;
}
@JsonProperty("id_token")
public void setIdToken(final String idToken) {
this.idToken = idToken;
}
@JsonProperty("expires_in")
public int getExpiresIn() {
return expiresIn;
}
@JsonProperty("expires_in")
public void setExpiresIn(final int expiresIn) {
this.expiresIn = expiresIn;
}
@JsonProperty("token_type")
public String getTokenType() {
return tokenType;
}
@JsonProperty("token_type")
public void setTokenType(final String tokenType) {
this.tokenType = tokenType;
}
}