com.finbourne.identity.model.SupportRole Maven / Gradle / Ivy
/*
* FINBOURNE Identity Service API
*
* 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 com.finbourne.identity.model;
import java.util.Objects;
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 java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.openapitools.jackson.nullable.JsonNullable;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import com.finbourne.identity.JSON;
/**
* SupportRole
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class SupportRole {
public static final String SERIALIZED_NAME_LABEL = "label";
@SerializedName(SERIALIZED_NAME_LABEL)
private String label;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ROLE_IDENTIFIER = "roleIdentifier";
@SerializedName(SERIALIZED_NAME_ROLE_IDENTIFIER)
private Map roleIdentifier;
public static final String SERIALIZED_NAME_INTERNAL_IDENTIFIER = "internalIdentifier";
@SerializedName(SERIALIZED_NAME_INTERNAL_IDENTIFIER)
private String internalIdentifier;
public SupportRole() {
}
public SupportRole label(String label) {
this.label = label;
return this;
}
/**
* Get label
* @return label
**/
@jakarta.annotation.Nullable
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public SupportRole description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@jakarta.annotation.Nullable
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public SupportRole roleIdentifier(Map roleIdentifier) {
this.roleIdentifier = roleIdentifier;
return this;
}
public SupportRole putRoleIdentifierItem(String key, String roleIdentifierItem) {
if (this.roleIdentifier == null) {
this.roleIdentifier = new HashMap<>();
}
this.roleIdentifier.put(key, roleIdentifierItem);
return this;
}
/**
* Get roleIdentifier
* @return roleIdentifier
**/
@jakarta.annotation.Nullable
public Map getRoleIdentifier() {
return roleIdentifier;
}
public void setRoleIdentifier(Map roleIdentifier) {
this.roleIdentifier = roleIdentifier;
}
public SupportRole internalIdentifier(String internalIdentifier) {
this.internalIdentifier = internalIdentifier;
return this;
}
/**
* Get internalIdentifier
* @return internalIdentifier
**/
@jakarta.annotation.Nullable
public String getInternalIdentifier() {
return internalIdentifier;
}
public void setInternalIdentifier(String internalIdentifier) {
this.internalIdentifier = internalIdentifier;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SupportRole supportRole = (SupportRole) o;
return Objects.equals(this.label, supportRole.label) &&
Objects.equals(this.description, supportRole.description) &&
Objects.equals(this.roleIdentifier, supportRole.roleIdentifier) &&
Objects.equals(this.internalIdentifier, supportRole.internalIdentifier);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(label, description, roleIdentifier, internalIdentifier);
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SupportRole {\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" roleIdentifier: ").append(toIndentedString(roleIdentifier)).append("\n");
sb.append(" internalIdentifier: ").append(toIndentedString(internalIdentifier)).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 ");
}
public static HashSet openapiFields;
public static HashSet openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet();
openapiFields.add("label");
openapiFields.add("description");
openapiFields.add("roleIdentifier");
openapiFields.add("internalIdentifier");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* Validates the JSON Element and throws an exception if issues found
*
* @param jsonElement JSON Element
* @throws IOException if the JSON Element is invalid with respect to SupportRole
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!SupportRole.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in SupportRole is not found in the empty JSON string", SupportRole.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if ((jsonObj.get("label") != null && !jsonObj.get("label").isJsonNull()) && !jsonObj.get("label").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `label` to be a primitive type in the JSON string but got `%s`", jsonObj.get("label").toString()));
}
if ((jsonObj.get("description") != null && !jsonObj.get("description").isJsonNull()) && !jsonObj.get("description").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `description` to be a primitive type in the JSON string but got `%s`", jsonObj.get("description").toString()));
}
if ((jsonObj.get("internalIdentifier") != null && !jsonObj.get("internalIdentifier").isJsonNull()) && !jsonObj.get("internalIdentifier").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `internalIdentifier` to be a primitive type in the JSON string but got `%s`", jsonObj.get("internalIdentifier").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!SupportRole.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'SupportRole' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(SupportRole.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, SupportRole value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public SupportRole read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of SupportRole given an JSON string
*
* @param jsonString JSON string
* @return An instance of SupportRole
* @throws IOException if the JSON string is invalid with respect to SupportRole
*/
public static SupportRole fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, SupportRole.class);
}
/**
* Convert an instance of SupportRole to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}