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

com.finbourne.workflow.model.ValueConstraints Maven / Gradle / Ivy

There is a newer version: 2.0.166
Show newest version
/*
 * FINBOURNE Workflow 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.workflow.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.ArrayList;
import java.util.Arrays;
import java.util.List;

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.workflow.JSON;

/**
 * Constraints that should be applied to a Tasks fields
 */
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ValueConstraints {
  public static final String SERIALIZED_NAME_CONSTRAINT_TYPE = "constraintType";
  @SerializedName(SERIALIZED_NAME_CONSTRAINT_TYPE)
  private String constraintType;

  public static final String SERIALIZED_NAME_VALUE_SOURCE_TYPE = "valueSourceType";
  @SerializedName(SERIALIZED_NAME_VALUE_SOURCE_TYPE)
  private String valueSourceType;

  public static final String SERIALIZED_NAME_ACCEPTABLE_VALUES = "acceptableValues";
  @SerializedName(SERIALIZED_NAME_ACCEPTABLE_VALUES)
  private List acceptableValues = new ArrayList<>();

  public ValueConstraints() {
  }

  public ValueConstraints constraintType(String constraintType) {
    
    this.constraintType = constraintType;
    return this;
  }

   /**
   * Whether the constraint is a suggestion or should be enforced via validation (e.g. Suggested, Validated)
   * @return constraintType
  **/
  @jakarta.annotation.Nonnull
  public String getConstraintType() {
    return constraintType;
  }


  public void setConstraintType(String constraintType) {
    this.constraintType = constraintType;
  }


  public ValueConstraints valueSourceType(String valueSourceType) {
    
    this.valueSourceType = valueSourceType;
    return this;
  }

   /**
   * The source of the acceptable values (e.g. AcceptableValues)
   * @return valueSourceType
  **/
  @jakarta.annotation.Nonnull
  public String getValueSourceType() {
    return valueSourceType;
  }


  public void setValueSourceType(String valueSourceType) {
    this.valueSourceType = valueSourceType;
  }


  public ValueConstraints acceptableValues(List acceptableValues) {
    
    this.acceptableValues = acceptableValues;
    return this;
  }

  public ValueConstraints addAcceptableValuesItem(Object acceptableValuesItem) {
    if (this.acceptableValues == null) {
      this.acceptableValues = new ArrayList<>();
    }
    this.acceptableValues.add(acceptableValuesItem);
    return this;
  }

   /**
   * The acceptable values for the field
   * @return acceptableValues
  **/
  @jakarta.annotation.Nonnull
  public List getAcceptableValues() {
    return acceptableValues;
  }


  public void setAcceptableValues(List acceptableValues) {
    this.acceptableValues = acceptableValues;
  }



  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ValueConstraints valueConstraints = (ValueConstraints) o;
    return Objects.equals(this.constraintType, valueConstraints.constraintType) &&
        Objects.equals(this.valueSourceType, valueConstraints.valueSourceType) &&
        Objects.equals(this.acceptableValues, valueConstraints.acceptableValues);
  }

  @Override
  public int hashCode() {
    return Objects.hash(constraintType, valueSourceType, acceptableValues);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ValueConstraints {\n");
    sb.append("    constraintType: ").append(toIndentedString(constraintType)).append("\n");
    sb.append("    valueSourceType: ").append(toIndentedString(valueSourceType)).append("\n");
    sb.append("    acceptableValues: ").append(toIndentedString(acceptableValues)).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("constraintType");
    openapiFields.add("valueSourceType");
    openapiFields.add("acceptableValues");

    // a set of required properties/fields (JSON key names)
    openapiRequiredFields = new HashSet();
    openapiRequiredFields.add("constraintType");
    openapiRequiredFields.add("valueSourceType");
    openapiRequiredFields.add("acceptableValues");
  }

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

      // check to make sure all required properties/fields are present in the JSON string
      for (String requiredField : ValueConstraints.openapiRequiredFields) {
        if (jsonElement.getAsJsonObject().get(requiredField) == null) {
          throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
        }
      }
        JsonObject jsonObj = jsonElement.getAsJsonObject();
      if (!jsonObj.get("constraintType").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `constraintType` to be a primitive type in the JSON string but got `%s`", jsonObj.get("constraintType").toString()));
      }
      if (!jsonObj.get("valueSourceType").isJsonPrimitive()) {
        throw new IllegalArgumentException(String.format("Expected the field `valueSourceType` to be a primitive type in the JSON string but got `%s`", jsonObj.get("valueSourceType").toString()));
      }
      // ensure the required json array is present
      if (jsonObj.get("acceptableValues") == null) {
        throw new IllegalArgumentException("Expected the field `linkedContent` to be an array in the JSON string but got `null`");
      } else if (!jsonObj.get("acceptableValues").isJsonArray()) {
        throw new IllegalArgumentException(String.format("Expected the field `acceptableValues` to be an array in the JSON string but got `%s`", jsonObj.get("acceptableValues").toString()));
      }
  }

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

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

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

       }.nullSafe();
    }
  }

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

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