com.finbourne.workflow.model.TaskFieldDefinition Maven / Gradle / Ivy
/*
* 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.finbourne.workflow.model.ReadOnlyStates;
import com.finbourne.workflow.model.ValueConstraints;
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 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;
/**
* Defines a Task Definition Field
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TaskFieldDefinition {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_READ_ONLY_STATES = "readOnlyStates";
@SerializedName(SERIALIZED_NAME_READ_ONLY_STATES)
private ReadOnlyStates readOnlyStates;
public static final String SERIALIZED_NAME_VALUE_CONSTRAINTS = "valueConstraints";
@SerializedName(SERIALIZED_NAME_VALUE_CONSTRAINTS)
private ValueConstraints valueConstraints;
public TaskFieldDefinition() {
}
public TaskFieldDefinition name(String name) {
this.name = name;
return this;
}
/**
* The name of this Field
* @return name
**/
@jakarta.annotation.Nonnull
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public TaskFieldDefinition type(String type) {
this.type = type;
return this;
}
/**
* The value type for the field. Available values are: \"String\", \"Decimal\", \"DateTime\", \"Boolean\")
* @return type
**/
@jakarta.annotation.Nonnull
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public TaskFieldDefinition readOnlyStates(ReadOnlyStates readOnlyStates) {
this.readOnlyStates = readOnlyStates;
return this;
}
/**
* Get readOnlyStates
* @return readOnlyStates
**/
@jakarta.annotation.Nullable
public ReadOnlyStates getReadOnlyStates() {
return readOnlyStates;
}
public void setReadOnlyStates(ReadOnlyStates readOnlyStates) {
this.readOnlyStates = readOnlyStates;
}
public TaskFieldDefinition valueConstraints(ValueConstraints valueConstraints) {
this.valueConstraints = valueConstraints;
return this;
}
/**
* Get valueConstraints
* @return valueConstraints
**/
@jakarta.annotation.Nullable
public ValueConstraints getValueConstraints() {
return valueConstraints;
}
public void setValueConstraints(ValueConstraints valueConstraints) {
this.valueConstraints = valueConstraints;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TaskFieldDefinition taskFieldDefinition = (TaskFieldDefinition) o;
return Objects.equals(this.name, taskFieldDefinition.name) &&
Objects.equals(this.type, taskFieldDefinition.type) &&
Objects.equals(this.readOnlyStates, taskFieldDefinition.readOnlyStates) &&
Objects.equals(this.valueConstraints, taskFieldDefinition.valueConstraints);
}
@Override
public int hashCode() {
return Objects.hash(name, type, readOnlyStates, valueConstraints);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TaskFieldDefinition {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" readOnlyStates: ").append(toIndentedString(readOnlyStates)).append("\n");
sb.append(" valueConstraints: ").append(toIndentedString(valueConstraints)).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("name");
openapiFields.add("type");
openapiFields.add("readOnlyStates");
openapiFields.add("valueConstraints");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("name");
openapiRequiredFields.add("type");
}
/**
* 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 TaskFieldDefinition
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!TaskFieldDefinition.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in TaskFieldDefinition is not found in the empty JSON string", TaskFieldDefinition.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : TaskFieldDefinition.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("name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("name").toString()));
}
if (!jsonObj.get("type").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("type").toString()));
}
// validate the optional field `readOnlyStates`
if (jsonObj.get("readOnlyStates") != null && !jsonObj.get("readOnlyStates").isJsonNull()) {
ReadOnlyStates.validateJsonElement(jsonObj.get("readOnlyStates"));
}
// validate the optional field `valueConstraints`
if (jsonObj.get("valueConstraints") != null && !jsonObj.get("valueConstraints").isJsonNull()) {
ValueConstraints.validateJsonElement(jsonObj.get("valueConstraints"));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!TaskFieldDefinition.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'TaskFieldDefinition' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(TaskFieldDefinition.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, TaskFieldDefinition value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public TaskFieldDefinition read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of TaskFieldDefinition given an JSON string
*
* @param jsonString JSON string
* @return An instance of TaskFieldDefinition
* @throws IOException if the JSON string is invalid with respect to TaskFieldDefinition
*/
public static TaskFieldDefinition fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, TaskFieldDefinition.class);
}
/**
* Convert an instance of TaskFieldDefinition to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}