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.
/*
* 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.CreateChildTasksActionResponse;
import com.finbourne.workflow.model.FieldMapping;
import com.finbourne.workflow.model.ResourceId;
import com.finbourne.workflow.model.ResultantChildTaskConfiguration;
import com.finbourne.workflow.model.RunWorkerActionResponse;
import com.finbourne.workflow.model.TriggerParentTaskActionResponse;
import com.finbourne.workflow.model.WorkerStatusTriggers;
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.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.openapitools.jackson.nullable.JsonNullable;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.JsonPrimitive;
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 com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonArray;
import com.google.gson.JsonParseException;
import com.finbourne.workflow.JSON;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ActionDetailsResponse extends AbstractOpenApiSchema {
private static final Logger log = Logger.getLogger(ActionDetailsResponse.class.getName());
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!ActionDetailsResponse.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'ActionDetailsResponse' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter adapterCreateChildTasksActionResponse = gson.getDelegateAdapter(this, TypeToken.get(CreateChildTasksActionResponse.class));
final TypeAdapter adapterRunWorkerActionResponse = gson.getDelegateAdapter(this, TypeToken.get(RunWorkerActionResponse.class));
final TypeAdapter adapterTriggerParentTaskActionResponse = gson.getDelegateAdapter(this, TypeToken.get(TriggerParentTaskActionResponse.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, ActionDetailsResponse value) throws IOException {
if (value == null || value.getActualInstance() == null) {
elementAdapter.write(out, null);
return;
}
// check if the actual instance is of the type `CreateChildTasksActionResponse`
if (value.getActualInstance() instanceof CreateChildTasksActionResponse) {
JsonElement element = adapterCreateChildTasksActionResponse.toJsonTree((CreateChildTasksActionResponse)value.getActualInstance());
elementAdapter.write(out, element);
return;
}
// check if the actual instance is of the type `RunWorkerActionResponse`
if (value.getActualInstance() instanceof RunWorkerActionResponse) {
JsonElement element = adapterRunWorkerActionResponse.toJsonTree((RunWorkerActionResponse)value.getActualInstance());
elementAdapter.write(out, element);
return;
}
// check if the actual instance is of the type `TriggerParentTaskActionResponse`
if (value.getActualInstance() instanceof TriggerParentTaskActionResponse) {
JsonElement element = adapterTriggerParentTaskActionResponse.toJsonTree((TriggerParentTaskActionResponse)value.getActualInstance());
elementAdapter.write(out, element);
return;
}
throw new IOException("Failed to serialize as the type doesn't match oneOf schemas: CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse");
}
@Override
public ActionDetailsResponse read(JsonReader in) throws IOException {
Object deserialized = null;
JsonElement jsonElement = elementAdapter.read(in);
int match = 0;
ArrayList errorMessages = new ArrayList<>();
TypeAdapter actualAdapter = elementAdapter;
// deserialize CreateChildTasksActionResponse
try {
// validate the JSON object to see if any exception is thrown
CreateChildTasksActionResponse.validateJsonElement(jsonElement);
actualAdapter = adapterCreateChildTasksActionResponse;
match++;
log.log(Level.FINER, "Input data matches schema 'CreateChildTasksActionResponse'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for CreateChildTasksActionResponse failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'CreateChildTasksActionResponse'", e);
}
// deserialize RunWorkerActionResponse
try {
// validate the JSON object to see if any exception is thrown
RunWorkerActionResponse.validateJsonElement(jsonElement);
actualAdapter = adapterRunWorkerActionResponse;
match++;
log.log(Level.FINER, "Input data matches schema 'RunWorkerActionResponse'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for RunWorkerActionResponse failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'RunWorkerActionResponse'", e);
}
// deserialize TriggerParentTaskActionResponse
try {
// validate the JSON object to see if any exception is thrown
TriggerParentTaskActionResponse.validateJsonElement(jsonElement);
actualAdapter = adapterTriggerParentTaskActionResponse;
match++;
log.log(Level.FINER, "Input data matches schema 'TriggerParentTaskActionResponse'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for TriggerParentTaskActionResponse failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'TriggerParentTaskActionResponse'", e);
}
if (match == 1) {
ActionDetailsResponse ret = new ActionDetailsResponse();
ret.setActualInstance(actualAdapter.fromJsonTree(jsonElement));
return ret;
}
throw new IOException(String.format("Failed deserialization for ActionDetailsResponse: %d classes match result, expected 1. Detailed failure message for oneOf schemas: %s. JSON: %s", match, errorMessages, jsonElement.toString()));
}
}.nullSafe();
}
}
// store a list of schema names defined in oneOf
public static final Map> schemas = new HashMap>();
public ActionDetailsResponse() {
super("oneOf", Boolean.FALSE);
}
public ActionDetailsResponse(CreateChildTasksActionResponse o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public ActionDetailsResponse(RunWorkerActionResponse o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public ActionDetailsResponse(TriggerParentTaskActionResponse o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
static {
schemas.put("CreateChildTasksActionResponse", CreateChildTasksActionResponse.class);
schemas.put("RunWorkerActionResponse", RunWorkerActionResponse.class);
schemas.put("TriggerParentTaskActionResponse", TriggerParentTaskActionResponse.class);
}
@Override
public Map> getSchemas() {
return ActionDetailsResponse.schemas;
}
/**
* Set the instance that matches the oneOf child schema, check
* the instance parameter is valid against the oneOf child schemas:
* CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse
*
* It could be an instance of the 'oneOf' schemas.
*/
@Override
public void setActualInstance(Object instance) {
if (instance instanceof CreateChildTasksActionResponse) {
super.setActualInstance(instance);
return;
}
if (instance instanceof RunWorkerActionResponse) {
super.setActualInstance(instance);
return;
}
if (instance instanceof TriggerParentTaskActionResponse) {
super.setActualInstance(instance);
return;
}
throw new RuntimeException("Invalid instance type. Must be CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse");
}
/**
* Get the actual instance, which can be the following:
* CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse
*
* @return The actual instance (CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse)
*/
@Override
public Object getActualInstance() {
return super.getActualInstance();
}
/**
* Get the actual instance of `CreateChildTasksActionResponse`. If the actual instance is not `CreateChildTasksActionResponse`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `CreateChildTasksActionResponse`
* @throws ClassCastException if the instance is not `CreateChildTasksActionResponse`
*/
public CreateChildTasksActionResponse getCreateChildTasksActionResponse() throws ClassCastException {
return (CreateChildTasksActionResponse)super.getActualInstance();
}
/**
* Get the actual instance of `RunWorkerActionResponse`. If the actual instance is not `RunWorkerActionResponse`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `RunWorkerActionResponse`
* @throws ClassCastException if the instance is not `RunWorkerActionResponse`
*/
public RunWorkerActionResponse getRunWorkerActionResponse() throws ClassCastException {
return (RunWorkerActionResponse)super.getActualInstance();
}
/**
* Get the actual instance of `TriggerParentTaskActionResponse`. If the actual instance is not `TriggerParentTaskActionResponse`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `TriggerParentTaskActionResponse`
* @throws ClassCastException if the instance is not `TriggerParentTaskActionResponse`
*/
public TriggerParentTaskActionResponse getTriggerParentTaskActionResponse() throws ClassCastException {
return (TriggerParentTaskActionResponse)super.getActualInstance();
}
/**
* 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 ActionDetailsResponse
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
// validate oneOf schemas one by one
int validCount = 0;
ArrayList errorMessages = new ArrayList<>();
// validate the json string with CreateChildTasksActionResponse
try {
CreateChildTasksActionResponse.validateJsonElement(jsonElement);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for CreateChildTasksActionResponse failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with RunWorkerActionResponse
try {
RunWorkerActionResponse.validateJsonElement(jsonElement);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for RunWorkerActionResponse failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with TriggerParentTaskActionResponse
try {
TriggerParentTaskActionResponse.validateJsonElement(jsonElement);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for TriggerParentTaskActionResponse failed with `%s`.", e.getMessage()));
// continue to the next one
}
if (validCount != 1) {
throw new IOException(String.format("The JSON string is invalid for ActionDetailsResponse with oneOf schemas: CreateChildTasksActionResponse, RunWorkerActionResponse, TriggerParentTaskActionResponse. %d class(es) match the result, expected 1. Detailed failure message for oneOf schemas: %s. JSON: %s", validCount, errorMessages, jsonElement.toString()));
}
}
/**
* Create an instance of ActionDetailsResponse given an JSON string
*
* @param jsonString JSON string
* @return An instance of ActionDetailsResponse
* @throws IOException if the JSON string is invalid with respect to ActionDetailsResponse
*/
public static ActionDetailsResponse fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, ActionDetailsResponse.class);
}
/**
* Convert an instance of ActionDetailsResponse to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}