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

com.datadog.api.client.v2.model.TeamIncluded Maven / Gradle / Ivy

/*
 * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
 * This product includes software developed at Datadog (https://www.datadoghq.com/).
 * Copyright 2019-Present Datadog, Inc.
 */

package com.datadog.api.client.v2.model;

import com.datadog.api.client.AbstractOpenApiSchema;
import com.datadog.api.client.JSON;
import com.datadog.api.client.UnparsedObject;
import com.fasterxml.jackson.annotation.JsonIgnore;
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.ObjectMapper;
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 jakarta.ws.rs.core.GenericType;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

@jakarta.annotation.Generated(
    value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
@JsonDeserialize(using = TeamIncluded.TeamIncludedDeserializer.class)
@JsonSerialize(using = TeamIncluded.TeamIncludedSerializer.class)
public class TeamIncluded extends AbstractOpenApiSchema {
  private static final Logger log = Logger.getLogger(TeamIncluded.class.getName());

  @JsonIgnore public boolean unparsed = false;

  public static class TeamIncludedSerializer extends StdSerializer {
    public TeamIncludedSerializer(Class t) {
      super(t);
    }

    public TeamIncludedSerializer() {
      this(null);
    }

    @Override
    public void serialize(TeamIncluded value, JsonGenerator jgen, SerializerProvider provider)
        throws IOException, JsonProcessingException {
      jgen.writeObject(value.getActualInstance());
    }
  }

  public static class TeamIncludedDeserializer extends StdDeserializer {
    public TeamIncludedDeserializer() {
      this(TeamIncluded.class);
    }

    public TeamIncludedDeserializer(Class vc) {
      super(vc);
    }

    @Override
    public TeamIncluded deserialize(JsonParser jp, DeserializationContext ctxt)
        throws IOException, JsonProcessingException {
      JsonNode tree = jp.readValueAsTree();
      Object deserialized = null;
      Object tmp = null;
      boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS);
      int match = 0;
      JsonToken token = tree.traverse(jp.getCodec()).nextToken();
      // deserialize User
      try {
        boolean attemptParsing = true;
        // ensure that we respect type coercion as set on the client ObjectMapper
        if (User.class.equals(Integer.class)
            || User.class.equals(Long.class)
            || User.class.equals(Float.class)
            || User.class.equals(Double.class)
            || User.class.equals(Boolean.class)
            || User.class.equals(String.class)) {
          attemptParsing = typeCoercion;
          if (!attemptParsing) {
            attemptParsing |=
                ((User.class.equals(Integer.class) || User.class.equals(Long.class))
                    && token == JsonToken.VALUE_NUMBER_INT);
            attemptParsing |=
                ((User.class.equals(Float.class) || User.class.equals(Double.class))
                    && (token == JsonToken.VALUE_NUMBER_FLOAT
                        || token == JsonToken.VALUE_NUMBER_INT));
            attemptParsing |=
                (User.class.equals(Boolean.class)
                    && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
            attemptParsing |= (User.class.equals(String.class) && token == JsonToken.VALUE_STRING);
          }
        }
        if (attemptParsing) {
          tmp = tree.traverse(jp.getCodec()).readValueAs(User.class);
          // 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.
          if (!((User) tmp).unparsed) {
            deserialized = tmp;
            match++;
          }
          log.log(Level.FINER, "Input data matches schema 'User'");
        }
      } catch (Exception e) {
        // deserialization failed, continue
        log.log(Level.FINER, "Input data does not match schema 'User'", e);
      }

      // deserialize TeamLink
      try {
        boolean attemptParsing = true;
        // ensure that we respect type coercion as set on the client ObjectMapper
        if (TeamLink.class.equals(Integer.class)
            || TeamLink.class.equals(Long.class)
            || TeamLink.class.equals(Float.class)
            || TeamLink.class.equals(Double.class)
            || TeamLink.class.equals(Boolean.class)
            || TeamLink.class.equals(String.class)) {
          attemptParsing = typeCoercion;
          if (!attemptParsing) {
            attemptParsing |=
                ((TeamLink.class.equals(Integer.class) || TeamLink.class.equals(Long.class))
                    && token == JsonToken.VALUE_NUMBER_INT);
            attemptParsing |=
                ((TeamLink.class.equals(Float.class) || TeamLink.class.equals(Double.class))
                    && (token == JsonToken.VALUE_NUMBER_FLOAT
                        || token == JsonToken.VALUE_NUMBER_INT));
            attemptParsing |=
                (TeamLink.class.equals(Boolean.class)
                    && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
            attemptParsing |=
                (TeamLink.class.equals(String.class) && token == JsonToken.VALUE_STRING);
          }
        }
        if (attemptParsing) {
          tmp = tree.traverse(jp.getCodec()).readValueAs(TeamLink.class);
          // 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.
          if (!((TeamLink) tmp).unparsed) {
            deserialized = tmp;
            match++;
          }
          log.log(Level.FINER, "Input data matches schema 'TeamLink'");
        }
      } catch (Exception e) {
        // deserialization failed, continue
        log.log(Level.FINER, "Input data does not match schema 'TeamLink'", e);
      }

      // deserialize UserTeamPermission
      try {
        boolean attemptParsing = true;
        // ensure that we respect type coercion as set on the client ObjectMapper
        if (UserTeamPermission.class.equals(Integer.class)
            || UserTeamPermission.class.equals(Long.class)
            || UserTeamPermission.class.equals(Float.class)
            || UserTeamPermission.class.equals(Double.class)
            || UserTeamPermission.class.equals(Boolean.class)
            || UserTeamPermission.class.equals(String.class)) {
          attemptParsing = typeCoercion;
          if (!attemptParsing) {
            attemptParsing |=
                ((UserTeamPermission.class.equals(Integer.class)
                        || UserTeamPermission.class.equals(Long.class))
                    && token == JsonToken.VALUE_NUMBER_INT);
            attemptParsing |=
                ((UserTeamPermission.class.equals(Float.class)
                        || UserTeamPermission.class.equals(Double.class))
                    && (token == JsonToken.VALUE_NUMBER_FLOAT
                        || token == JsonToken.VALUE_NUMBER_INT));
            attemptParsing |=
                (UserTeamPermission.class.equals(Boolean.class)
                    && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
            attemptParsing |=
                (UserTeamPermission.class.equals(String.class) && token == JsonToken.VALUE_STRING);
          }
        }
        if (attemptParsing) {
          tmp = tree.traverse(jp.getCodec()).readValueAs(UserTeamPermission.class);
          // 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.
          if (!((UserTeamPermission) tmp).unparsed) {
            deserialized = tmp;
            match++;
          }
          log.log(Level.FINER, "Input data matches schema 'UserTeamPermission'");
        }
      } catch (Exception e) {
        // deserialization failed, continue
        log.log(Level.FINER, "Input data does not match schema 'UserTeamPermission'", e);
      }

      TeamIncluded ret = new TeamIncluded();
      if (match == 1) {
        ret.setActualInstance(deserialized);
      } else {
        Map res =
            new ObjectMapper()
                .readValue(
                    tree.traverse(jp.getCodec()).readValueAsTree().toString(),
                    new TypeReference>() {});
        ret.setActualInstance(new UnparsedObject(res));
      }
      return ret;
    }

    /** Handle deserialization of the 'null' value. */
    @Override
    public TeamIncluded getNullValue(DeserializationContext ctxt) throws JsonMappingException {
      throw new JsonMappingException(ctxt.getParser(), "TeamIncluded cannot be null");
    }
  }

  // store a list of schema names defined in oneOf
  public static final Map schemas = new HashMap();

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

  public TeamIncluded(User o) {
    super("oneOf", Boolean.FALSE);
    setActualInstance(o);
  }

  public TeamIncluded(TeamLink o) {
    super("oneOf", Boolean.FALSE);
    setActualInstance(o);
  }

  public TeamIncluded(UserTeamPermission o) {
    super("oneOf", Boolean.FALSE);
    setActualInstance(o);
  }

  static {
    schemas.put("User", new GenericType() {});
    schemas.put("TeamLink", new GenericType() {});
    schemas.put("UserTeamPermission", new GenericType() {});
    JSON.registerDescendants(TeamIncluded.class, Collections.unmodifiableMap(schemas));
  }

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

  /**
   * Set the instance that matches the oneOf child schema, check the instance parameter is valid
   * against the oneOf child schemas: User, TeamLink, UserTeamPermission
   *
   * 

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) { if (JSON.isInstanceOf(User.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } if (JSON.isInstanceOf(TeamLink.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } if (JSON.isInstanceOf(UserTeamPermission.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { super.setActualInstance(instance); return; } throw new RuntimeException("Invalid instance type. Must be User, TeamLink, UserTeamPermission"); } /** * Get the actual instance, which can be the following: User, TeamLink, UserTeamPermission * * @return The actual instance (User, TeamLink, UserTeamPermission) */ @Override public Object getActualInstance() { return super.getActualInstance(); } /** * Get the actual instance of `User`. If the actual instance is not `User`, the ClassCastException * will be thrown. * * @return The actual instance of `User` * @throws ClassCastException if the instance is not `User` */ public User getUser() throws ClassCastException { return (User) super.getActualInstance(); } /** * Get the actual instance of `TeamLink`. If the actual instance is not `TeamLink`, the * ClassCastException will be thrown. * * @return The actual instance of `TeamLink` * @throws ClassCastException if the instance is not `TeamLink` */ public TeamLink getTeamLink() throws ClassCastException { return (TeamLink) super.getActualInstance(); } /** * Get the actual instance of `UserTeamPermission`. If the actual instance is not * `UserTeamPermission`, the ClassCastException will be thrown. * * @return The actual instance of `UserTeamPermission` * @throws ClassCastException if the instance is not `UserTeamPermission` */ public UserTeamPermission getUserTeamPermission() throws ClassCastException { return (UserTeamPermission) super.getActualInstance(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy