sh.ory.hydra.model.PreviousConsentSession Maven / Gradle / Ivy
/*
* ORY Hydra
* Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
*
* The version of the OpenAPI document: v1.9.0-alpha.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package sh.ory.hydra.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;
import java.util.ArrayList;
import java.util.List;
import org.threeten.bp.OffsetDateTime;
import sh.ory.hydra.model.ConsentRequest;
import sh.ory.hydra.model.ConsentRequestSession;
/**
* The response used to return used consent requests same as HandledLoginRequest, just with consent_request exposed as json
*/
@ApiModel(description = "The response used to return used consent requests same as HandledLoginRequest, just with consent_request exposed as json")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-10-29T17:18:58.591596Z[GMT]")
public class PreviousConsentSession {
public static final String SERIALIZED_NAME_CONSENT_REQUEST = "consent_request";
@SerializedName(SERIALIZED_NAME_CONSENT_REQUEST)
private ConsentRequest consentRequest;
public static final String SERIALIZED_NAME_GRANT_ACCESS_TOKEN_AUDIENCE = "grant_access_token_audience";
@SerializedName(SERIALIZED_NAME_GRANT_ACCESS_TOKEN_AUDIENCE)
private List grantAccessTokenAudience = null;
public static final String SERIALIZED_NAME_GRANT_SCOPE = "grant_scope";
@SerializedName(SERIALIZED_NAME_GRANT_SCOPE)
private List grantScope = null;
public static final String SERIALIZED_NAME_HANDLED_AT = "handled_at";
@SerializedName(SERIALIZED_NAME_HANDLED_AT)
private OffsetDateTime handledAt;
public static final String SERIALIZED_NAME_REMEMBER = "remember";
@SerializedName(SERIALIZED_NAME_REMEMBER)
private Boolean remember;
public static final String SERIALIZED_NAME_REMEMBER_FOR = "remember_for";
@SerializedName(SERIALIZED_NAME_REMEMBER_FOR)
private Long rememberFor;
public static final String SERIALIZED_NAME_SESSION = "session";
@SerializedName(SERIALIZED_NAME_SESSION)
private ConsentRequestSession session;
public PreviousConsentSession consentRequest(ConsentRequest consentRequest) {
this.consentRequest = consentRequest;
return this;
}
/**
* Get consentRequest
* @return consentRequest
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ConsentRequest getConsentRequest() {
return consentRequest;
}
public void setConsentRequest(ConsentRequest consentRequest) {
this.consentRequest = consentRequest;
}
public PreviousConsentSession grantAccessTokenAudience(List grantAccessTokenAudience) {
this.grantAccessTokenAudience = grantAccessTokenAudience;
return this;
}
public PreviousConsentSession addGrantAccessTokenAudienceItem(String grantAccessTokenAudienceItem) {
if (this.grantAccessTokenAudience == null) {
this.grantAccessTokenAudience = new ArrayList();
}
this.grantAccessTokenAudience.add(grantAccessTokenAudienceItem);
return this;
}
/**
* Get grantAccessTokenAudience
* @return grantAccessTokenAudience
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List getGrantAccessTokenAudience() {
return grantAccessTokenAudience;
}
public void setGrantAccessTokenAudience(List grantAccessTokenAudience) {
this.grantAccessTokenAudience = grantAccessTokenAudience;
}
public PreviousConsentSession grantScope(List grantScope) {
this.grantScope = grantScope;
return this;
}
public PreviousConsentSession addGrantScopeItem(String grantScopeItem) {
if (this.grantScope == null) {
this.grantScope = new ArrayList();
}
this.grantScope.add(grantScopeItem);
return this;
}
/**
* Get grantScope
* @return grantScope
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List getGrantScope() {
return grantScope;
}
public void setGrantScope(List grantScope) {
this.grantScope = grantScope;
}
public PreviousConsentSession handledAt(OffsetDateTime handledAt) {
this.handledAt = handledAt;
return this;
}
/**
* Get handledAt
* @return handledAt
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public OffsetDateTime getHandledAt() {
return handledAt;
}
public void setHandledAt(OffsetDateTime handledAt) {
this.handledAt = handledAt;
}
public PreviousConsentSession remember(Boolean remember) {
this.remember = remember;
return this;
}
/**
* Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.
* @return remember
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.")
public Boolean getRemember() {
return remember;
}
public void setRemember(Boolean remember) {
this.remember = remember;
}
public PreviousConsentSession rememberFor(Long rememberFor) {
this.rememberFor = rememberFor;
return this;
}
/**
* RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.
* @return rememberFor
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.")
public Long getRememberFor() {
return rememberFor;
}
public void setRememberFor(Long rememberFor) {
this.rememberFor = rememberFor;
}
public PreviousConsentSession session(ConsentRequestSession session) {
this.session = session;
return this;
}
/**
* Get session
* @return session
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public ConsentRequestSession getSession() {
return session;
}
public void setSession(ConsentRequestSession session) {
this.session = session;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PreviousConsentSession previousConsentSession = (PreviousConsentSession) o;
return Objects.equals(this.consentRequest, previousConsentSession.consentRequest) &&
Objects.equals(this.grantAccessTokenAudience, previousConsentSession.grantAccessTokenAudience) &&
Objects.equals(this.grantScope, previousConsentSession.grantScope) &&
Objects.equals(this.handledAt, previousConsentSession.handledAt) &&
Objects.equals(this.remember, previousConsentSession.remember) &&
Objects.equals(this.rememberFor, previousConsentSession.rememberFor) &&
Objects.equals(this.session, previousConsentSession.session);
}
@Override
public int hashCode() {
return Objects.hash(consentRequest, grantAccessTokenAudience, grantScope, handledAt, remember, rememberFor, session);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PreviousConsentSession {\n");
sb.append(" consentRequest: ").append(toIndentedString(consentRequest)).append("\n");
sb.append(" grantAccessTokenAudience: ").append(toIndentedString(grantAccessTokenAudience)).append("\n");
sb.append(" grantScope: ").append(toIndentedString(grantScope)).append("\n");
sb.append(" handledAt: ").append(toIndentedString(handledAt)).append("\n");
sb.append(" remember: ").append(toIndentedString(remember)).append("\n");
sb.append(" rememberFor: ").append(toIndentedString(rememberFor)).append("\n");
sb.append(" session: ").append(toIndentedString(session)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}