io.lakefs.clients.api.model.StsAuthRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
lakeFS OpenAPI Java client legacy SDK
/*
* lakeFS API
* lakeFS HTTP API
*
* 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 io.lakefs.clients.api.model;
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;
/**
* StsAuthRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class StsAuthRequest {
public static final String SERIALIZED_NAME_CODE = "code";
@SerializedName(SERIALIZED_NAME_CODE)
private String code;
public static final String SERIALIZED_NAME_STATE = "state";
@SerializedName(SERIALIZED_NAME_STATE)
private String state;
public static final String SERIALIZED_NAME_REDIRECT_URI = "redirect_uri";
@SerializedName(SERIALIZED_NAME_REDIRECT_URI)
private String redirectUri;
public static final String SERIALIZED_NAME_TTL_SECONDS = "ttl_seconds";
@SerializedName(SERIALIZED_NAME_TTL_SECONDS)
private Long ttlSeconds;
public StsAuthRequest code(String code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public StsAuthRequest state(String state) {
this.state = state;
return this;
}
/**
* Get state
* @return state
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public StsAuthRequest redirectUri(String redirectUri) {
this.redirectUri = redirectUri;
return this;
}
/**
* Get redirectUri
* @return redirectUri
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
public String getRedirectUri() {
return redirectUri;
}
public void setRedirectUri(String redirectUri) {
this.redirectUri = redirectUri;
}
public StsAuthRequest ttlSeconds(Long ttlSeconds) {
this.ttlSeconds = ttlSeconds;
return this;
}
/**
* The time-to-live for the generated token in seconds. The default value is 3600 seconds (1 hour) maximum time allowed is 12 hours.
* @return ttlSeconds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The time-to-live for the generated token in seconds. The default value is 3600 seconds (1 hour) maximum time allowed is 12 hours. ")
public Long getTtlSeconds() {
return ttlSeconds;
}
public void setTtlSeconds(Long ttlSeconds) {
this.ttlSeconds = ttlSeconds;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StsAuthRequest stsAuthRequest = (StsAuthRequest) o;
return Objects.equals(this.code, stsAuthRequest.code) &&
Objects.equals(this.state, stsAuthRequest.state) &&
Objects.equals(this.redirectUri, stsAuthRequest.redirectUri) &&
Objects.equals(this.ttlSeconds, stsAuthRequest.ttlSeconds);
}
@Override
public int hashCode() {
return Objects.hash(code, state, redirectUri, ttlSeconds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StsAuthRequest {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).append("\n");
sb.append(" redirectUri: ").append(toIndentedString(redirectUri)).append("\n");
sb.append(" ttlSeconds: ").append(toIndentedString(ttlSeconds)).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 ");
}
}