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

com.onfido.model.CompleteTaskDataBuilder Maven / Gradle / Ivy

/*
 * Onfido API v3.6
 * The Onfido API (v3.6)
 *
 * The version of the OpenAPI document: v3.6
 * 
 *
 * 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.onfido.model;

import java.util.Objects;
import java.util.List;



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 java.util.UUID;  

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

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
public class CompleteTaskDataBuilder extends AbstractOpenApiSchema {
    private static final Logger log = Logger.getLogger(CompleteTaskDataBuilder.class.getName());

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

            final Type typeInstance = new TypeToken>(){}.getType();
            final TypeAdapter> adapterListObject = (TypeAdapter>) gson.getDelegateAdapter(this, TypeToken.get(typeInstance));
            final TypeAdapter adapterObject = gson.getDelegateAdapter(this, TypeToken.get(Object.class));

            final TypeAdapter adapterReportShared = gson.getDelegateAdapter(this, TypeToken.get(ReportShared.class));

            return (TypeAdapter) new TypeAdapter() {
                @Override
                public void write(JsonWriter out, CompleteTaskDataBuilder value) throws IOException {
                    if (value == null || value.getActualInstance() == null) {
                        elementAdapter.write(out, null);
                        return;
                    }

                    // check if the actual instance is of the type `List`
                    if (value.getActualInstance() instanceof List) {
                        JsonElement element = adapterListObject.toJsonTree((List)value.getActualInstance());
                        elementAdapter.write(out, element);
                        return;
                    }
                    // check if the actual instance is of the type `Object`
                    if (value.getActualInstance() instanceof Object) {
                        JsonElement element = new GsonBuilder().create().toJsonTree(value.getActualInstance());
                        elementAdapter.write(out, element);
                        return;
                    }
                    throw new IOException("Failed to serialize as the type doesn't match oneOf schemas: List, Object");
                }

                @Override
                public CompleteTaskDataBuilder read(JsonReader in) throws IOException {
                    Object deserialized = null;
                    JsonElement jsonElement = elementAdapter.read(in);

                    int match = 0;
                    ArrayList errorMessages = new ArrayList<>();
                    TypeAdapter actualAdapter = elementAdapter;

                    // deserialize List
                    try {
                        // validate the JSON object to see if any exception is thrown
                        if (!jsonElement.isJsonArray()) {
                            throw new IllegalArgumentException(String.format("Expected json element to be a array type in the JSON string but got `%s`", jsonElement.toString()));
                        }

                        JsonArray array = jsonElement.getAsJsonArray();
                        // validate array items
                        for(JsonElement element : array) {
                            if (!element.getAsJsonPrimitive().isNumber()) {
                                throw new IllegalArgumentException(String.format("Expected array items to be of type Number in the JSON string but got `%s`", jsonElement.toString()));
                            }
                        }
                        actualAdapter = adapterListObject;
                        match++;
                        log.log(Level.FINER, "Input data matches schema 'List'");
                    } catch (Exception e) {
                        // deserialization failed, continue
                        errorMessages.add(String.format("Deserialization for List failed with `%s`.", e.getMessage()));
                        log.log(Level.FINER, "Input data does not match schema 'List'", e);
                    }
                    // deserialize Object
                    try {
                        // validate the JSON object to see if any exception is thrown
                        if (!jsonElement.getAsJsonPrimitive().isNumber()) {
                            throw new IllegalArgumentException(String.format("Expected json element to be of type Number in the JSON string but got `%s`", jsonElement.toString()));
                        }
                        actualAdapter = adapterObject;
                        match++;
                        log.log(Level.FINER, "Input data matches schema 'Object'");
                    } catch (Exception e) {
                        // deserialization failed, continue
                        errorMessages.add(String.format("Deserialization for Object failed with `%s`.", e.getMessage()));
                        log.log(Level.FINER, "Input data does not match schema 'Object'", e);
                    }

                    if (match == 1) {
                        CompleteTaskDataBuilder ret = new CompleteTaskDataBuilder();
                        ret.setActualInstance(actualAdapter.fromJsonTree(jsonElement));
                        return ret;
                    }

                    throw new IOException(String.format("Failed deserialization for CompleteTaskDataBuilder: %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>();

    private ReportShared reportShared;

    public CompleteTaskDataBuilder() {
        super("oneOf", Boolean.FALSE);
    }

    public CompleteTaskDataBuilder(List o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    public CompleteTaskDataBuilder(Object o) {
        super("oneOf", Boolean.FALSE);
        setActualInstance(o);
    }

    static {
        schemas.put("List", List.class);
        schemas.put("Object", Object.class);
    }

    @Override
    public Map> getSchemas() {
        return CompleteTaskDataBuilder.schemas;
    }

    /**
     * Set the instance that matches the oneOf child schema, check
     * the instance parameter is valid against the oneOf child schemas:
     * List, Object
     *
     * It could be an instance of the 'oneOf' schemas.
     */
    @Override
    public void setActualInstance(Object instance) {
        if (instance instanceof List) {
            List list = (List) instance;
            if (list.get(0) instanceof Object) {
                super.setActualInstance(instance);
                return;
            }
        }

        if (instance instanceof Object) {
            super.setActualInstance(instance);
            return;
        }

        throw new RuntimeException("Invalid instance type. Must be List, Object");
    }

    /**
     * Get the actual instance, which can be the following:
     * List, Object
     *
     * @return The actual instance (List, Object)
     */
    @SuppressWarnings("unchecked")
    @Override
    public Object getActualInstance() {
        return super.getActualInstance();
    }

    /**
     * Get the actual instance of `List`. If the actual instance is not `List`,
     * the ClassCastException will be thrown.
     *
     * @return The actual instance of `List`
     * @throws ClassCastException if the instance is not `List`
     */
    @SuppressWarnings("unchecked")
    public List getListObject() throws ClassCastException {
        return (List)super.getActualInstance();
    }
    /**
     * Get the actual instance of `Object`. If the actual instance is not `Object`,
     * the ClassCastException will be thrown.
     *
     * @return The actual instance of `Object`
     * @throws ClassCastException if the instance is not `Object`
     */
    @SuppressWarnings("unchecked")
    public Object getObject() throws ClassCastException {
        return (Object)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 CompleteTaskDataBuilder
     */
    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 List
        try {
            if (!jsonElement.isJsonArray()) {
                throw new IllegalArgumentException(String.format("Expected json element to be a array type in the JSON string but got `%s`", jsonElement.toString()));
            }
            JsonArray array = jsonElement.getAsJsonArray();
            // validate array items
            for(JsonElement element : array) {
                if (!element.getAsJsonPrimitive().isNumber()) {
                    throw new IllegalArgumentException(String.format("Expected array items to be of type Number in the JSON string but got `%s`", jsonElement.toString()));
                }
            }
            validCount++;
        } catch (Exception e) {
            errorMessages.add(String.format("Deserialization for List failed with `%s`.", e.getMessage()));
            // continue to the next one
        }
        // validate the json string with Object
        try {
            if (!jsonElement.getAsJsonPrimitive().isNumber()) {
                throw new IllegalArgumentException(String.format("Expected json element to be of type Number in the JSON string but got `%s`", jsonElement.toString()));
            }
            validCount++;
        } catch (Exception e) {
            errorMessages.add(String.format("Deserialization for Object failed with `%s`.", e.getMessage()));
            // continue to the next one
        }
        if (validCount < 1) {
            throw new IOException(String.format("The JSON string is invalid for CompleteTaskDataBuilder with oneOf schemas: List, Object. %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 CompleteTaskDataBuilder given an JSON string
     *
     * @param jsonString JSON string
     * @return An instance of CompleteTaskDataBuilder
     * @throws IOException if the JSON string is invalid with respect to CompleteTaskDataBuilder
     */
    public static CompleteTaskDataBuilder fromJson(String jsonString) throws IOException {
        return JSON.getGson().fromJson(jsonString, CompleteTaskDataBuilder.class);
    }

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


    /**
     * Give access to shared properties. Read-only.
     * @return ReportShared object with common fields
     **/

    public ReportShared getReportShared() {
        return reportShared;
    }

    /**
     * Give access to shared properties. Read-only.
     * @return id
     **/

    public UUID getId() {
        return reportShared.getId();
    }

    /**
     * Get name
     * @return name
     **/

    public ReportName getName() {
        return reportShared.getName();
    }

    /**
     * Get status
     * @return status
     **/

    public ReportStatus getStatus() {
        return reportShared.getStatus();
    }

}