All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.finbourne.workflow.model.UpdateEventHandlerRequest 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.EventHandlerMapping;
import com.finbourne.workflow.model.EventMatchingPattern;
import com.finbourne.workflow.model.ResourceId;
import com.finbourne.workflow.model.TaskActivity;
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.time.OffsetDateTime;
import java.util.Arrays;
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.workflow.JSON;
/**
* Contains information for updating an Event Handler
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class UpdateEventHandlerRequest {
public static final String SERIALIZED_NAME_DISPLAY_NAME = "displayName";
@SerializedName(SERIALIZED_NAME_DISPLAY_NAME)
private String displayName;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private String status;
public static final String SERIALIZED_NAME_EVENT_MATCHING_PATTERN = "eventMatchingPattern";
@SerializedName(SERIALIZED_NAME_EVENT_MATCHING_PATTERN)
private EventMatchingPattern eventMatchingPattern;
public static final String SERIALIZED_NAME_RUN_AS_USER_ID = "runAsUserId";
@SerializedName(SERIALIZED_NAME_RUN_AS_USER_ID)
private EventHandlerMapping runAsUserId;
public static final String SERIALIZED_NAME_TASK_DEFINITION_ID = "taskDefinitionId";
@SerializedName(SERIALIZED_NAME_TASK_DEFINITION_ID)
private ResourceId taskDefinitionId;
public static final String SERIALIZED_NAME_TASK_DEFINITION_AS_AT = "taskDefinitionAsAt";
@SerializedName(SERIALIZED_NAME_TASK_DEFINITION_AS_AT)
private OffsetDateTime taskDefinitionAsAt;
public static final String SERIALIZED_NAME_TASK_ACTIVITY = "taskActivity";
@SerializedName(SERIALIZED_NAME_TASK_ACTIVITY)
private TaskActivity taskActivity;
public UpdateEventHandlerRequest() {
}
public UpdateEventHandlerRequest displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Human readable name
* @return displayName
**/
@jakarta.annotation.Nonnull
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public UpdateEventHandlerRequest description(String description) {
this.description = description;
return this;
}
/**
* Human readable description
* @return description
**/
@jakarta.annotation.Nullable
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public UpdateEventHandlerRequest status(String status) {
this.status = status;
return this;
}
/**
* The current status of the event handler
* @return status
**/
@jakarta.annotation.Nonnull
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public UpdateEventHandlerRequest eventMatchingPattern(EventMatchingPattern eventMatchingPattern) {
this.eventMatchingPattern = eventMatchingPattern;
return this;
}
/**
* Get eventMatchingPattern
* @return eventMatchingPattern
**/
@jakarta.annotation.Nonnull
public EventMatchingPattern getEventMatchingPattern() {
return eventMatchingPattern;
}
public void setEventMatchingPattern(EventMatchingPattern eventMatchingPattern) {
this.eventMatchingPattern = eventMatchingPattern;
}
public UpdateEventHandlerRequest runAsUserId(EventHandlerMapping runAsUserId) {
this.runAsUserId = runAsUserId;
return this;
}
/**
* Get runAsUserId
* @return runAsUserId
**/
@jakarta.annotation.Nonnull
public EventHandlerMapping getRunAsUserId() {
return runAsUserId;
}
public void setRunAsUserId(EventHandlerMapping runAsUserId) {
this.runAsUserId = runAsUserId;
}
public UpdateEventHandlerRequest taskDefinitionId(ResourceId taskDefinitionId) {
this.taskDefinitionId = taskDefinitionId;
return this;
}
/**
* Get taskDefinitionId
* @return taskDefinitionId
**/
@jakarta.annotation.Nonnull
public ResourceId getTaskDefinitionId() {
return taskDefinitionId;
}
public void setTaskDefinitionId(ResourceId taskDefinitionId) {
this.taskDefinitionId = taskDefinitionId;
}
public UpdateEventHandlerRequest taskDefinitionAsAt(OffsetDateTime taskDefinitionAsAt) {
this.taskDefinitionAsAt = taskDefinitionAsAt;
return this;
}
/**
* AsAt of the required task definition
* @return taskDefinitionAsAt
**/
@jakarta.annotation.Nullable
public OffsetDateTime getTaskDefinitionAsAt() {
return taskDefinitionAsAt;
}
public void setTaskDefinitionAsAt(OffsetDateTime taskDefinitionAsAt) {
this.taskDefinitionAsAt = taskDefinitionAsAt;
}
public UpdateEventHandlerRequest taskActivity(TaskActivity taskActivity) {
this.taskActivity = taskActivity;
return this;
}
/**
* Get taskActivity
* @return taskActivity
**/
@jakarta.annotation.Nonnull
public TaskActivity getTaskActivity() {
return taskActivity;
}
public void setTaskActivity(TaskActivity taskActivity) {
this.taskActivity = taskActivity;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateEventHandlerRequest updateEventHandlerRequest = (UpdateEventHandlerRequest) o;
return Objects.equals(this.displayName, updateEventHandlerRequest.displayName) &&
Objects.equals(this.description, updateEventHandlerRequest.description) &&
Objects.equals(this.status, updateEventHandlerRequest.status) &&
Objects.equals(this.eventMatchingPattern, updateEventHandlerRequest.eventMatchingPattern) &&
Objects.equals(this.runAsUserId, updateEventHandlerRequest.runAsUserId) &&
Objects.equals(this.taskDefinitionId, updateEventHandlerRequest.taskDefinitionId) &&
Objects.equals(this.taskDefinitionAsAt, updateEventHandlerRequest.taskDefinitionAsAt) &&
Objects.equals(this.taskActivity, updateEventHandlerRequest.taskActivity);
}
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(displayName, description, status, eventMatchingPattern, runAsUserId, taskDefinitionId, taskDefinitionAsAt, taskActivity);
}
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 UpdateEventHandlerRequest {\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" eventMatchingPattern: ").append(toIndentedString(eventMatchingPattern)).append("\n");
sb.append(" runAsUserId: ").append(toIndentedString(runAsUserId)).append("\n");
sb.append(" taskDefinitionId: ").append(toIndentedString(taskDefinitionId)).append("\n");
sb.append(" taskDefinitionAsAt: ").append(toIndentedString(taskDefinitionAsAt)).append("\n");
sb.append(" taskActivity: ").append(toIndentedString(taskActivity)).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("displayName");
openapiFields.add("description");
openapiFields.add("status");
openapiFields.add("eventMatchingPattern");
openapiFields.add("runAsUserId");
openapiFields.add("taskDefinitionId");
openapiFields.add("taskDefinitionAsAt");
openapiFields.add("taskActivity");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("displayName");
openapiRequiredFields.add("status");
openapiRequiredFields.add("eventMatchingPattern");
openapiRequiredFields.add("runAsUserId");
openapiRequiredFields.add("taskDefinitionId");
openapiRequiredFields.add("taskActivity");
}
/**
* 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 UpdateEventHandlerRequest
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!UpdateEventHandlerRequest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in UpdateEventHandlerRequest is not found in the empty JSON string", UpdateEventHandlerRequest.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : UpdateEventHandlerRequest.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("displayName").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `displayName` to be a primitive type in the JSON string but got `%s`", jsonObj.get("displayName").toString()));
}
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("status").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `status` to be a primitive type in the JSON string but got `%s`", jsonObj.get("status").toString()));
}
// validate the required field `eventMatchingPattern`
EventMatchingPattern.validateJsonElement(jsonObj.get("eventMatchingPattern"));
// validate the required field `runAsUserId`
EventHandlerMapping.validateJsonElement(jsonObj.get("runAsUserId"));
// validate the required field `taskDefinitionId`
ResourceId.validateJsonElement(jsonObj.get("taskDefinitionId"));
// validate the required field `taskActivity`
TaskActivity.validateJsonElement(jsonObj.get("taskActivity"));
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!UpdateEventHandlerRequest.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'UpdateEventHandlerRequest' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(UpdateEventHandlerRequest.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, UpdateEventHandlerRequest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public UpdateEventHandlerRequest read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of UpdateEventHandlerRequest given an JSON string
*
* @param jsonString JSON string
* @return An instance of UpdateEventHandlerRequest
* @throws IOException if the JSON string is invalid with respect to UpdateEventHandlerRequest
*/
public static UpdateEventHandlerRequest fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, UpdateEventHandlerRequest.class);
}
/**
* Convert an instance of UpdateEventHandlerRequest to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}