com.factset.sdk.OpenRisk.models.RemoveCurrencyRisk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openrisk Show documentation
Show all versions of openrisk Show documentation
FactSet SDK for Java - openrisk
/*
* Open:Risk API
* Service to calculate parametric linear risk statistics and generate risk model asset identifier mappings.
*
* The version of the OpenAPI document: 1.26.0
* 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.factset.sdk.OpenRisk.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import io.swagger.annotations.ApiModel;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.OpenRisk.JSON;
import com.fasterxml.jackson.core.type.TypeReference;
import jakarta.ws.rs.core.GenericType;
import jakarta.ws.rs.core.Response;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.math.BigDecimal;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import com.factset.sdk.OpenRisk.JSON;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
@JsonDeserialize(using = RemoveCurrencyRisk.RemoveCurrencyRiskDeserializer.class)
@JsonSerialize(using = RemoveCurrencyRisk.RemoveCurrencyRiskSerializer.class)
public class RemoveCurrencyRisk extends AbstractOpenApiSchema implements Serializable {
private static final Logger log = Logger.getLogger(RemoveCurrencyRisk.class.getName());
public static class RemoveCurrencyRiskSerializer extends StdSerializer {
public RemoveCurrencyRiskSerializer(Class t) {
super(t);
}
public RemoveCurrencyRiskSerializer() {
this(null);
}
@Override
public void serialize(RemoveCurrencyRisk value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
jgen.writeObject(value.getActualInstance());
}
}
public static class RemoveCurrencyRiskDeserializer extends StdDeserializer {
public RemoveCurrencyRiskDeserializer() {
this(RemoveCurrencyRisk.class);
}
public RemoveCurrencyRiskDeserializer(Class> vc) {
super(vc);
}
@Override
public RemoveCurrencyRisk deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
JsonNode tree = jp.readValueAsTree();
Object deserialized = null;
boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS);
int match = 0;
JsonToken token = tree.traverse(jp.getCodec()).nextToken();
// deserialize Boolean
try {
boolean attemptParsing = true;
// ensure that we respect type coercion as set on the client ObjectMapper
if (Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class) || Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class) || Boolean.class.equals(Boolean.class) || Boolean.class.equals(String.class)) {
attemptParsing = typeCoercion;
if (!attemptParsing) {
attemptParsing |= ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) && token == JsonToken.VALUE_NUMBER_INT);
attemptParsing |= ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) && token == JsonToken.VALUE_NUMBER_FLOAT);
attemptParsing |= (Boolean.class.equals(Boolean.class) && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
attemptParsing |= (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING);
}
}
if (attemptParsing) {
deserialized = tree.traverse(jp.getCodec()).readValueAs(new TypeReference() { });
// TODO: there is no validation against JSON schema constraints
// (min, max, enum, pattern...), this does not perform a strict JSON
// validation, which means the 'match' count may be higher than it should be.
match++;
log.log(Level.FINER, "Input data matches schema 'Boolean'");
}
} catch (Exception e) {
// deserialization failed, continue
log.log(Level.FINER, "Input data does not match schema 'Boolean'", e);
}
// deserialize java.util.Map
try {
boolean attemptParsing = true;
// ensure that we respect type coercion as set on the client ObjectMapper
if (java.util.Map.class.equals(Integer.class) || java.util.Map.class.equals(Long.class) || java.util.Map.class.equals(Float.class) || java.util.Map.class.equals(Double.class) || java.util.Map.class.equals(Boolean.class) || java.util.Map.class.equals(String.class)) {
attemptParsing = typeCoercion;
if (!attemptParsing) {
attemptParsing |= ((java.util.Map.class.equals(Integer.class) || java.util.Map.class.equals(Long.class)) && token == JsonToken.VALUE_NUMBER_INT);
attemptParsing |= ((java.util.Map.class.equals(Float.class) || java.util.Map.class.equals(Double.class)) && token == JsonToken.VALUE_NUMBER_FLOAT);
attemptParsing |= (java.util.Map.class.equals(Boolean.class) && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
attemptParsing |= (java.util.Map.class.equals(String.class) && token == JsonToken.VALUE_STRING);
}
}
if (attemptParsing) {
deserialized = tree.traverse(jp.getCodec()).readValueAs(new TypeReference>() { });
// TODO: there is no validation against JSON schema constraints
// (min, max, enum, pattern...), this does not perform a strict JSON
// validation, which means the 'match' count may be higher than it should be.
match++;
log.log(Level.FINER, "Input data matches schema 'java.util.Map'");
}
} catch (Exception e) {
// deserialization failed, continue
log.log(Level.FINER, "Input data does not match schema 'java.util.Map'", e);
}
if (match == 1) {
RemoveCurrencyRisk ret = new RemoveCurrencyRisk();
ret.setActualInstance(deserialized);
return ret;
}
throw new IOException(String.format("Failed deserialization for RemoveCurrencyRisk: %d classes match result, expected 1", match));
}
/**
* Handle deserialization of the 'null' value.
*/
@Override
public RemoveCurrencyRisk getNullValue(DeserializationContext ctxt) throws JsonMappingException {
throw new JsonMappingException(ctxt.getParser(), "RemoveCurrencyRisk cannot be null");
}
}
// store a list of schema names defined in oneOf
public static final Map schemas = new HashMap();
public RemoveCurrencyRisk() {
super("oneOf", Boolean.FALSE);
}
public RemoveCurrencyRisk(Boolean o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
static {
schemas.put("Boolean", new GenericType() {
});
schemas.put("java.util.Map", new GenericType>() {
});
JSON.registerDescendants(RemoveCurrencyRisk.class, Collections.unmodifiableMap(schemas));
}
@Override
public Map getSchemas() {
return RemoveCurrencyRisk.schemas;
}
/**
* Set the instance that matches the oneOf child schema, check
* the instance parameter is valid against the oneOf child schemas:
* Boolean, java.util.Map
*
* It could be an instance of the 'oneOf' schemas.
* The oneOf child schemas may themselves be a composed schema (allOf, anyOf, oneOf).
*/
@Override
public void setActualInstance(Object instance) {
// Boolean
if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) {
super.setActualInstance(instance);
return;
}
// java.util.Map
if (JSON.isInstanceOf(java.util.Map.class, instance, new HashSet>())) {
super.setActualInstance(instance);
return;
}
throw new RuntimeException("Invalid instance type. Must be Boolean, java.util.Map");
}
/**
* Get the actual instance, which can be the following:
* Boolean, java.util.Map
*
* @return The actual instance (Boolean, java.util.Map)
*/
@Override
public Object getActualInstance() {
return super.getActualInstance();
}
/**
* Get the actual instance of `Boolean`. If the actual instance is not `Boolean`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `Boolean`
* @throws ClassCastException if the instance is not `Boolean`
*/
public Boolean getBoolean() throws ClassCastException {
return (Boolean)super.getActualInstance();
}
/**
* Get the actual instance of `java.util.Map`. If the actual instance is not `java.util.Map`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `java.util.Map`
* @throws ClassCastException if the instance is not `java.util.Map`
*/
public java.util.Map getOneOf1() throws ClassCastException {
return (java.util.Map)super.getActualInstance();
}
}