nl.reinkrul.nuts.auth.AccessTokenResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for using the Nuts Node's REST API.
/*
* Nuts Auth Service API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package nl.reinkrul.nuts.auth;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Successful response as described in rfc6749 section 5.1
*/
@ApiModel(description = "Successful response as described in rfc6749 section 5.1")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:35.626800+02:00[Europe/Amsterdam]")
public class AccessTokenResponse {
public static final String SERIALIZED_NAME_ACCESS_TOKEN = "access_token";
@SerializedName(SERIALIZED_NAME_ACCESS_TOKEN)
private String accessToken;
public static final String SERIALIZED_NAME_TOKEN_TYPE = "token_type";
@SerializedName(SERIALIZED_NAME_TOKEN_TYPE)
private String tokenType;
public static final String SERIALIZED_NAME_EXPIRES_IN = "expires_in";
@SerializedName(SERIALIZED_NAME_EXPIRES_IN)
private Integer expiresIn;
public AccessTokenResponse accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The access token issued by the authorization server. Could be a signed JWT or a random number. It should not have a meaning to the client.
* @return accessToken
**/
@ApiModelProperty(example = "12345", required = true, value = "The access token issued by the authorization server. Could be a signed JWT or a random number. It should not have a meaning to the client. ")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public AccessTokenResponse tokenType(String tokenType) {
this.tokenType = tokenType;
return this;
}
/**
* The type of the token issued
* @return tokenType
**/
@ApiModelProperty(example = "nuts_session_token", required = true, value = "The type of the token issued")
public String getTokenType() {
return tokenType;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
public AccessTokenResponse expiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
return this;
}
/**
* The lifetime in seconds of the access token.
* @return expiresIn
**/
@ApiModelProperty(example = "900", required = true, value = "The lifetime in seconds of the access token.")
public Integer getExpiresIn() {
return expiresIn;
}
public void setExpiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccessTokenResponse accessTokenResponse = (AccessTokenResponse) o;
return Objects.equals(this.accessToken, accessTokenResponse.accessToken) &&
Objects.equals(this.tokenType, accessTokenResponse.tokenType) &&
Objects.equals(this.expiresIn, accessTokenResponse.expiresIn);
}
@Override
public int hashCode() {
return Objects.hash(accessToken, tokenType, expiresIn);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccessTokenResponse {\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" tokenType: ").append(toIndentedString(tokenType)).append("\n");
sb.append(" expiresIn: ").append(toIndentedString(expiresIn)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy