sh.ory.hydra.model.TrustedJsonWebKey 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;
/**
* TrustedJsonWebKey
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-02-23T08:12:00.883126307Z[Etc/UTC]")
public class TrustedJsonWebKey {
public static final String SERIALIZED_NAME_KID = "kid";
@SerializedName(SERIALIZED_NAME_KID)
private String kid;
public static final String SERIALIZED_NAME_SET = "set";
@SerializedName(SERIALIZED_NAME_SET)
private String set;
public TrustedJsonWebKey() {
}
public TrustedJsonWebKey kid(String kid) {
this.kid = kid;
return this;
}
/**
* The \"key_id\" is key unique identifier (same as kid header in jws/jwt).
* @return kid
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "123e4567-e89b-12d3-a456-426655440000", value = "The \"key_id\" is key unique identifier (same as kid header in jws/jwt).")
public String getKid() {
return kid;
}
public void setKid(String kid) {
this.kid = kid;
}
public TrustedJsonWebKey set(String set) {
this.set = set;
return this;
}
/**
* The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant.
* @return set
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://jwt-idp.example.com", value = "The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant.")
public String getSet() {
return set;
}
public void setSet(String set) {
this.set = set;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TrustedJsonWebKey trustedJsonWebKey = (TrustedJsonWebKey) o;
return Objects.equals(this.kid, trustedJsonWebKey.kid) &&
Objects.equals(this.set, trustedJsonWebKey.set);
}
@Override
public int hashCode() {
return Objects.hash(kid, set);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TrustedJsonWebKey {\n");
sb.append(" kid: ").append(toIndentedString(kid)).append("\n");
sb.append(" set: ").append(toIndentedString(set)).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 ");
}
}