All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.finbourne.access.model.PolicyCollectionUpdateRequest Maven / Gradle / Ivy

There is a newer version: 2.0.296
Show 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.EntitlementMetadata;
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.HashMap;
import java.util.List;
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.access.JSON;

/**
 * Update an existing PolicyCollection
 */
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PolicyCollectionUpdateRequest {
  public static final String SERIALIZED_NAME_POLICIES = "policies";
  @SerializedName(SERIALIZED_NAME_POLICIES)
  private List policies;

  public static final String SERIALIZED_NAME_METADATA = "metadata";
  @SerializedName(SERIALIZED_NAME_METADATA)
  private Map> metadata;

  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 PolicyCollectionUpdateRequest() {
  }

  public PolicyCollectionUpdateRequest policies(List policies) {
    
    this.policies = policies;
    return this;
  }

  public PolicyCollectionUpdateRequest 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 PolicyCollectionUpdateRequest metadata(Map> metadata) {
    
    this.metadata = metadata;
    return this;
  }

  public PolicyCollectionUpdateRequest putMetadataItem(String key, List metadataItem) {
    if (this.metadata == null) {
      this.metadata = new HashMap<>();
    }
    this.metadata.put(key, metadataItem);
    return this;
  }

   /**
   * Any relevant metadata associated with this resource for controlling access to this resource
   * @return metadata
  **/
  @jakarta.annotation.Nullable
  public Map> getMetadata() {
    return metadata;
  }


  public void setMetadata(Map> metadata) {
    this.metadata = metadata;
  }


  public PolicyCollectionUpdateRequest policyCollections(List policyCollections) {
    
    this.policyCollections = policyCollections;
    return this;
  }

  public PolicyCollectionUpdateRequest 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 PolicyCollectionUpdateRequest 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;
  }



  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PolicyCollectionUpdateRequest policyCollectionUpdateRequest = (PolicyCollectionUpdateRequest) o;
    return Objects.equals(this.policies, policyCollectionUpdateRequest.policies) &&
        Objects.equals(this.metadata, policyCollectionUpdateRequest.metadata) &&
        Objects.equals(this.policyCollections, policyCollectionUpdateRequest.policyCollections) &&
        Objects.equals(this.description, policyCollectionUpdateRequest.description);
  }

  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(policies, metadata, policyCollections, description);
  }

  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 PolicyCollectionUpdateRequest {\n");
    sb.append("    policies: ").append(toIndentedString(policies)).append("\n");
    sb.append("    metadata: ").append(toIndentedString(metadata)).append("\n");
    sb.append("    policyCollections: ").append(toIndentedString(policyCollections)).append("\n");
    sb.append("    description: ").append(toIndentedString(description)).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("policies");
    openapiFields.add("metadata");
    openapiFields.add("policyCollections");
    openapiFields.add("description");

    // 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 PolicyCollectionUpdateRequest
  */
  public static void validateJsonElement(JsonElement jsonElement) throws IOException {
      if (jsonElement == null) {
        if (!PolicyCollectionUpdateRequest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
          throw new IllegalArgumentException(String.format("The required field(s) %s in PolicyCollectionUpdateRequest is not found in the empty JSON string", PolicyCollectionUpdateRequest.openapiRequiredFields.toString()));
        }
      }
        JsonObject jsonObj = jsonElement.getAsJsonObject();
      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()));
      }
  }

  public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
    @SuppressWarnings("unchecked")
    @Override
    public  TypeAdapter create(Gson gson, TypeToken type) {
       if (!PolicyCollectionUpdateRequest.class.isAssignableFrom(type.getRawType())) {
         return null; // this class only serializes 'PolicyCollectionUpdateRequest' and its subtypes
       }
       final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
       final TypeAdapter thisAdapter
                        = gson.getDelegateAdapter(this, TypeToken.get(PolicyCollectionUpdateRequest.class));

       return (TypeAdapter) new TypeAdapter() {
           @Override
           public void write(JsonWriter out, PolicyCollectionUpdateRequest value) throws IOException {
             JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
             elementAdapter.write(out, obj);
           }

           @Override
           public PolicyCollectionUpdateRequest read(JsonReader in) throws IOException {
             JsonElement jsonElement = elementAdapter.read(in);
             validateJsonElement(jsonElement);
             return thisAdapter.fromJsonTree(jsonElement);
           }

       }.nullSafe();
    }
  }

 /**
  * Create an instance of PolicyCollectionUpdateRequest given an JSON string
  *
  * @param jsonString JSON string
  * @return An instance of PolicyCollectionUpdateRequest
  * @throws IOException if the JSON string is invalid with respect to PolicyCollectionUpdateRequest
  */
  public static PolicyCollectionUpdateRequest fromJson(String jsonString) throws IOException {
    return JSON.getGson().fromJson(jsonString, PolicyCollectionUpdateRequest.class);
  }

 /**
  * Convert an instance of PolicyCollectionUpdateRequest to an JSON string
  *
  * @return JSON string
  */
  public String toJson() {
    return JSON.getGson().toJson(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy