sh.ory.hydra.model.TrustedJwtGrantIssuer Maven / Gradle / Ivy
/*
* Ory Oathkeeper API
* Documentation for all of Ory Oathkeeper's APIs.
*
* The version of the OpenAPI document: v1.11.6
* Contact: [email protected]
*
* 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.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
import sh.ory.hydra.model.TrustedJsonWebKey;
/**
* TrustedJwtGrantIssuer
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-02-23T08:12:00.883126307Z[Etc/UTC]")
public class TrustedJwtGrantIssuer {
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_EXPIRES_AT = "expires_at";
@SerializedName(SERIALIZED_NAME_EXPIRES_AT)
private OffsetDateTime expiresAt;
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_ISSUER = "issuer";
@SerializedName(SERIALIZED_NAME_ISSUER)
private String issuer;
public static final String SERIALIZED_NAME_PUBLIC_KEY = "public_key";
@SerializedName(SERIALIZED_NAME_PUBLIC_KEY)
private TrustedJsonWebKey publicKey;
public static final String SERIALIZED_NAME_SCOPE = "scope";
@SerializedName(SERIALIZED_NAME_SCOPE)
private List scope = null;
public static final String SERIALIZED_NAME_SUBJECT = "subject";
@SerializedName(SERIALIZED_NAME_SUBJECT)
private String subject;
public TrustedJwtGrantIssuer() {
}
public TrustedJwtGrantIssuer createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* The \"created_at\" indicates, when grant was created.
* @return createdAt
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The \"created_at\" indicates, when grant was created.")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public TrustedJwtGrantIssuer expiresAt(OffsetDateTime expiresAt) {
this.expiresAt = expiresAt;
return this;
}
/**
* The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".
* @return expiresAt
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".")
public OffsetDateTime getExpiresAt() {
return expiresAt;
}
public void setExpiresAt(OffsetDateTime expiresAt) {
this.expiresAt = expiresAt;
}
public TrustedJwtGrantIssuer id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "9edc811f-4e28-453c-9b46-4de65f00217f", value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public TrustedJwtGrantIssuer issuer(String issuer) {
this.issuer = issuer;
return this;
}
/**
* The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).
* @return issuer
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://jwt-idp.example.com", value = "The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).")
public String getIssuer() {
return issuer;
}
public void setIssuer(String issuer) {
this.issuer = issuer;
}
public TrustedJwtGrantIssuer publicKey(TrustedJsonWebKey publicKey) {
this.publicKey = publicKey;
return this;
}
/**
* Get publicKey
* @return publicKey
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public TrustedJsonWebKey getPublicKey() {
return publicKey;
}
public void setPublicKey(TrustedJsonWebKey publicKey) {
this.publicKey = publicKey;
}
public TrustedJwtGrantIssuer scope(List scope) {
this.scope = scope;
return this;
}
public TrustedJwtGrantIssuer addScopeItem(String scopeItem) {
if (this.scope == null) {
this.scope = new ArrayList<>();
}
this.scope.add(scopeItem);
return this;
}
/**
* The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])
* @return scope
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "[\"openid\",\"offline\"]", value = "The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])")
public List getScope() {
return scope;
}
public void setScope(List scope) {
this.scope = scope;
}
public TrustedJwtGrantIssuer subject(String subject) {
this.subject = subject;
return this;
}
/**
* The \"subject\" identifies the principal that is the subject of the JWT.
* @return subject
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "[email protected]", value = "The \"subject\" identifies the principal that is the subject of the JWT.")
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TrustedJwtGrantIssuer trustedJwtGrantIssuer = (TrustedJwtGrantIssuer) o;
return Objects.equals(this.createdAt, trustedJwtGrantIssuer.createdAt) &&
Objects.equals(this.expiresAt, trustedJwtGrantIssuer.expiresAt) &&
Objects.equals(this.id, trustedJwtGrantIssuer.id) &&
Objects.equals(this.issuer, trustedJwtGrantIssuer.issuer) &&
Objects.equals(this.publicKey, trustedJwtGrantIssuer.publicKey) &&
Objects.equals(this.scope, trustedJwtGrantIssuer.scope) &&
Objects.equals(this.subject, trustedJwtGrantIssuer.subject);
}
@Override
public int hashCode() {
return Objects.hash(createdAt, expiresAt, id, issuer, publicKey, scope, subject);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TrustedJwtGrantIssuer {\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" expiresAt: ").append(toIndentedString(expiresAt)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" issuer: ").append(toIndentedString(issuer)).append("\n");
sb.append(" publicKey: ").append(toIndentedString(publicKey)).append("\n");
sb.append(" scope: ").append(toIndentedString(scope)).append("\n");
sb.append(" subject: ").append(toIndentedString(subject)).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 ");
}
}