com.finbourne.access.model.PolicyCollectionResponse Maven / Gradle / Ivy
The newest version!
/*
* FINBOURNE Access Management 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.access.model;
import java.util.Objects;
import com.finbourne.access.model.Link;
import com.finbourne.access.model.PolicyCollectionId;
import com.finbourne.access.model.PolicyId;
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.ArrayList;
import java.util.Arrays;
import java.util.List;
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.access.JSON;
/**
* A PolicyCollection encapsulating one or more Policies and PolicyCollections
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PolicyCollectionResponse {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private PolicyCollectionId id;
public static final String SERIALIZED_NAME_POLICIES = "policies";
@SerializedName(SERIALIZED_NAME_POLICIES)
private List policies;
public static final String SERIALIZED_NAME_POLICY_COLLECTIONS = "policyCollections";
@SerializedName(SERIALIZED_NAME_POLICY_COLLECTIONS)
private List policyCollections;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_LINKS = "links";
@SerializedName(SERIALIZED_NAME_LINKS)
private List links;
public PolicyCollectionResponse() {
}
public PolicyCollectionResponse id(PolicyCollectionId id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@jakarta.annotation.Nullable
public PolicyCollectionId getId() {
return id;
}
public void setId(PolicyCollectionId id) {
this.id = id;
}
public PolicyCollectionResponse policies(List policies) {
this.policies = policies;
return this;
}
public PolicyCollectionResponse addPoliciesItem(PolicyId policiesItem) {
if (this.policies == null) {
this.policies = new ArrayList<>();
}
this.policies.add(policiesItem);
return this;
}
/**
* The identifiers of the Policies in this collection
* @return policies
**/
@jakarta.annotation.Nullable
public List getPolicies() {
return policies;
}
public void setPolicies(List policies) {
this.policies = policies;
}
public PolicyCollectionResponse policyCollections(List policyCollections) {
this.policyCollections = policyCollections;
return this;
}
public PolicyCollectionResponse addPolicyCollectionsItem(PolicyCollectionId policyCollectionsItem) {
if (this.policyCollections == null) {
this.policyCollections = new ArrayList<>();
}
this.policyCollections.add(policyCollectionsItem);
return this;
}
/**
* The identifiers of the PolicyCollections in this collection
* @return policyCollections
**/
@jakarta.annotation.Nullable
public List getPolicyCollections() {
return policyCollections;
}
public void setPolicyCollections(List policyCollections) {
this.policyCollections = policyCollections;
}
public PolicyCollectionResponse description(String description) {
this.description = description;
return this;
}
/**
* A description of this policy collection
* @return description
**/
@jakarta.annotation.Nullable
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public PolicyCollectionResponse links(List links) {
this.links = links;
return this;
}
public PolicyCollectionResponse addLinksItem(Link linksItem) {
if (this.links == null) {
this.links = new ArrayList<>();
}
this.links.add(linksItem);
return this;
}
/**
* Get links
* @return links
**/
@jakarta.annotation.Nullable
public List getLinks() {
return links;
}
public void setLinks(List links) {
this.links = links;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PolicyCollectionResponse policyCollectionResponse = (PolicyCollectionResponse) o;
return Objects.equals(this.id, policyCollectionResponse.id) &&
Objects.equals(this.policies, policyCollectionResponse.policies) &&
Objects.equals(this.policyCollections, policyCollectionResponse.policyCollections) &&
Objects.equals(this.description, policyCollectionResponse.description) &&
Objects.equals(this.links, policyCollectionResponse.links);
}
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(id, policies, policyCollections, description, links);
}
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 PolicyCollectionResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" policies: ").append(toIndentedString(policies)).append("\n");
sb.append(" policyCollections: ").append(toIndentedString(policyCollections)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" links: ").append(toIndentedString(links)).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("id");
openapiFields.add("policies");
openapiFields.add("policyCollections");
openapiFields.add("description");
openapiFields.add("links");
// 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 PolicyCollectionResponse
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!PolicyCollectionResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in PolicyCollectionResponse is not found in the empty JSON string", PolicyCollectionResponse.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
// validate the optional field `id`
if (jsonObj.get("id") != null && !jsonObj.get("id").isJsonNull()) {
PolicyCollectionId.validateJsonElement(jsonObj.get("id"));
}
if (jsonObj.get("policies") != null && !jsonObj.get("policies").isJsonNull()) {
JsonArray jsonArraypolicies = jsonObj.getAsJsonArray("policies");
if (jsonArraypolicies != null) {
// ensure the json data is an array
if (!jsonObj.get("policies").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `policies` to be an array in the JSON string but got `%s`", jsonObj.get("policies").toString()));
}
// validate the optional field `policies` (array)
for (int i = 0; i < jsonArraypolicies.size(); i++) {
PolicyId.validateJsonElement(jsonArraypolicies.get(i));
};
}
}
if (jsonObj.get("policyCollections") != null && !jsonObj.get("policyCollections").isJsonNull()) {
JsonArray jsonArraypolicyCollections = jsonObj.getAsJsonArray("policyCollections");
if (jsonArraypolicyCollections != null) {
// ensure the json data is an array
if (!jsonObj.get("policyCollections").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `policyCollections` to be an array in the JSON string but got `%s`", jsonObj.get("policyCollections").toString()));
}
// validate the optional field `policyCollections` (array)
for (int i = 0; i < jsonArraypolicyCollections.size(); i++) {
PolicyCollectionId.validateJsonElement(jsonArraypolicyCollections.get(i));
};
}
}
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("links") != null && !jsonObj.get("links").isJsonNull()) {
JsonArray jsonArraylinks = jsonObj.getAsJsonArray("links");
if (jsonArraylinks != null) {
// ensure the json data is an array
if (!jsonObj.get("links").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `links` to be an array in the JSON string but got `%s`", jsonObj.get("links").toString()));
}
// validate the optional field `links` (array)
for (int i = 0; i < jsonArraylinks.size(); i++) {
Link.validateJsonElement(jsonArraylinks.get(i));
};
}
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!PolicyCollectionResponse.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'PolicyCollectionResponse' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(PolicyCollectionResponse.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, PolicyCollectionResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public PolicyCollectionResponse read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of PolicyCollectionResponse given an JSON string
*
* @param jsonString JSON string
* @return An instance of PolicyCollectionResponse
* @throws IOException if the JSON string is invalid with respect to PolicyCollectionResponse
*/
public static PolicyCollectionResponse fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, PolicyCollectionResponse.class);
}
/**
* Convert an instance of PolicyCollectionResponse to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}