com.finbourne.horizon.model.IntegrationInstance Maven / Gradle / Ivy
/*
* FINBOURNE Horizon 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.horizon.model;
import java.util.Objects;
import com.finbourne.horizon.model.Trigger;
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.horizon.JSON;
/**
* Response containing an integration instance.
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class IntegrationInstance {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_INTEGRATION_TYPE = "integrationType";
@SerializedName(SERIALIZED_NAME_INTEGRATION_TYPE)
private String integrationType;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ENABLED = "enabled";
@SerializedName(SERIALIZED_NAME_ENABLED)
private Boolean enabled;
public static final String SERIALIZED_NAME_TRIGGERS = "triggers";
@SerializedName(SERIALIZED_NAME_TRIGGERS)
private List triggers = new ArrayList<>();
public static final String SERIALIZED_NAME_DETAILS = "details";
@SerializedName(SERIALIZED_NAME_DETAILS)
private Object details;
public IntegrationInstance() {
}
public IntegrationInstance id(String id) {
this.id = id;
return this;
}
/**
* Identifies the instance within the integration.
* @return id
**/
@jakarta.annotation.Nonnull
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IntegrationInstance integrationType(String integrationType) {
this.integrationType = integrationType;
return this;
}
/**
* The integration type.
* @return integrationType
**/
@jakarta.annotation.Nonnull
public String getIntegrationType() {
return integrationType;
}
public void setIntegrationType(String integrationType) {
this.integrationType = integrationType;
}
public IntegrationInstance name(String name) {
this.name = name;
return this;
}
/**
* Name of the instance.
* @return name
**/
@jakarta.annotation.Nonnull
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public IntegrationInstance description(String description) {
this.description = description;
return this;
}
/**
* Description of the instance.
* @return description
**/
@jakarta.annotation.Nonnull
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public IntegrationInstance enabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* If true the instance will be executed if its trigger is satisfied.
* @return enabled
**/
@jakarta.annotation.Nonnull
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public IntegrationInstance triggers(List triggers) {
this.triggers = triggers;
return this;
}
public IntegrationInstance addTriggersItem(Trigger triggersItem) {
if (this.triggers == null) {
this.triggers = new ArrayList<>();
}
this.triggers.add(triggersItem);
return this;
}
/**
* Defines what triggers execution of the instance.
* @return triggers
**/
@jakarta.annotation.Nonnull
public List getTriggers() {
return triggers;
}
public void setTriggers(List triggers) {
this.triggers = triggers;
}
public IntegrationInstance details(Object details) {
this.details = details;
return this;
}
/**
* Get details
* @return details
**/
@jakarta.annotation.Nonnull
public Object getDetails() {
return details;
}
public void setDetails(Object details) {
this.details = details;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IntegrationInstance integrationInstance = (IntegrationInstance) o;
return Objects.equals(this.id, integrationInstance.id) &&
Objects.equals(this.integrationType, integrationInstance.integrationType) &&
Objects.equals(this.name, integrationInstance.name) &&
Objects.equals(this.description, integrationInstance.description) &&
Objects.equals(this.enabled, integrationInstance.enabled) &&
Objects.equals(this.triggers, integrationInstance.triggers) &&
Objects.equals(this.details, integrationInstance.details);
}
@Override
public int hashCode() {
return Objects.hash(id, integrationType, name, description, enabled, triggers, details);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IntegrationInstance {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" integrationType: ").append(toIndentedString(integrationType)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n");
sb.append(" triggers: ").append(toIndentedString(triggers)).append("\n");
sb.append(" details: ").append(toIndentedString(details)).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("integrationType");
openapiFields.add("name");
openapiFields.add("description");
openapiFields.add("enabled");
openapiFields.add("triggers");
openapiFields.add("details");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("id");
openapiRequiredFields.add("integrationType");
openapiRequiredFields.add("name");
openapiRequiredFields.add("description");
openapiRequiredFields.add("enabled");
openapiRequiredFields.add("triggers");
openapiRequiredFields.add("details");
}
/**
* 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 IntegrationInstance
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!IntegrationInstance.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in IntegrationInstance is not found in the empty JSON string", IntegrationInstance.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : IntegrationInstance.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("id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("id").toString()));
}
if (!jsonObj.get("integrationType").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `integrationType` to be a primitive type in the JSON string but got `%s`", jsonObj.get("integrationType").toString()));
}
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("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()));
}
// ensure the json data is an array
if (!jsonObj.get("triggers").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `triggers` to be an array in the JSON string but got `%s`", jsonObj.get("triggers").toString()));
}
JsonArray jsonArraytriggers = jsonObj.getAsJsonArray("triggers");
// validate the required field `triggers` (array)
for (int i = 0; i < jsonArraytriggers.size(); i++) {
Trigger.validateJsonElement(jsonArraytriggers.get(i));
};
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!IntegrationInstance.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'IntegrationInstance' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(IntegrationInstance.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, IntegrationInstance value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public IntegrationInstance read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of IntegrationInstance given an JSON string
*
* @param jsonString JSON string
* @return An instance of IntegrationInstance
* @throws IOException if the JSON string is invalid with respect to IntegrationInstance
*/
public static IntegrationInstance fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, IntegrationInstance.class);
}
/**
* Convert an instance of IntegrationInstance to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}