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.
/*
* Criteo API
* Criteo API - RetailMedia
*
* The version of the OpenAPI document: 2024-07
*
*
* 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.criteo.api.retailmedia.v2024_07.model;
import java.util.Objects;
import java.util.Arrays;
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.util.HashMap;
import java.util.Map;
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 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.criteo.api.retailmedia.v2024_07.JSON;
/**
* Common problem object.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class RmcaCommonProblem {
public static final String SERIALIZED_NAME_TRACE_ID = "traceId";
@SerializedName(SERIALIZED_NAME_TRACE_ID)
private String traceId;
/**
* The problem's category.
*/
@JsonAdapter(TypeEnum.Adapter.class)
public enum TypeEnum {
UNKNOWN("unknown"),
ACCESS_CONTROL("access-control"),
AUTHENTICATION("authentication"),
AUTHORIZATION("authorization"),
AVAILABILITY("availability"),
DEPRECATION("deprecation"),
QUOTA("quota"),
VALIDATION("validation");
private String value;
TypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static TypeEnum fromValue(String value) {
for (TypeEnum b : TypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public TypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return TypeEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private TypeEnum type;
public static final String SERIALIZED_NAME_CODE = "code";
@SerializedName(SERIALIZED_NAME_CODE)
private String code;
public static final String SERIALIZED_NAME_INSTANCE = "instance";
@SerializedName(SERIALIZED_NAME_INSTANCE)
private String instance;
public static final String SERIALIZED_NAME_TITLE = "title";
@SerializedName(SERIALIZED_NAME_TITLE)
private String title;
public static final String SERIALIZED_NAME_DETAIL = "detail";
@SerializedName(SERIALIZED_NAME_DETAIL)
private String detail;
public static final String SERIALIZED_NAME_SOURCE = "source";
@SerializedName(SERIALIZED_NAME_SOURCE)
private Map source = null;
public static final String SERIALIZED_NAME_STACK_TRACE = "stackTrace";
@SerializedName(SERIALIZED_NAME_STACK_TRACE)
private String stackTrace;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private Integer status;
public RmcaCommonProblem() {
}
public RmcaCommonProblem traceId(String traceId) {
this.traceId = traceId;
return this;
}
/**
* The request correlation ID this problem comes from.
* @return traceId
**/
@javax.annotation.Nullable
public String getTraceId() {
return traceId;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
public RmcaCommonProblem type(TypeEnum type) {
this.type = type;
return this;
}
/**
* The problem's category.
* @return type
**/
@javax.annotation.Nullable
public TypeEnum getType() {
return type;
}
public void setType(TypeEnum type) {
this.type = type;
}
public RmcaCommonProblem code(String code) {
this.code = code;
return this;
}
/**
* A machine-readable error code, expressed as a string value.
* @return code
**/
@javax.annotation.Nullable
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public RmcaCommonProblem instance(String instance) {
this.instance = instance;
return this;
}
/**
* A URI that identifies the specific occurrence of the problem.
* @return instance
**/
@javax.annotation.Nullable
public String getInstance() {
return instance;
}
public void setInstance(String instance) {
this.instance = instance;
}
public RmcaCommonProblem title(String title) {
this.title = title;
return this;
}
/**
* A short human-readable description of the problem type
* @return title
**/
@javax.annotation.Nullable
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public RmcaCommonProblem detail(String detail) {
this.detail = detail;
return this;
}
/**
* A human-readable explanation specific to this occurrence of the problem
* @return detail
**/
@javax.annotation.Nullable
public String getDetail() {
return detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public RmcaCommonProblem source(Map source) {
this.source = source;
return this;
}
public RmcaCommonProblem putSourceItem(String key, String sourceItem) {
if (this.source == null) {
this.source = null;
}
this.source.put(key, sourceItem);
return this;
}
/**
* A machine-readable structure to reference to the exact location(s) causing the error(s)
* @return source
**/
@javax.annotation.Nullable
public Map getSource() {
return source;
}
public void setSource(Map source) {
this.source = source;
}
public RmcaCommonProblem stackTrace(String stackTrace) {
this.stackTrace = stackTrace;
return this;
}
/**
* Get stackTrace
* @return stackTrace
**/
@javax.annotation.Nullable
public String getStackTrace() {
return stackTrace;
}
public void setStackTrace(String stackTrace) {
this.stackTrace = stackTrace;
}
public RmcaCommonProblem status(Integer status) {
this.status = status;
return this;
}
/**
* The problem's HTTP Status code.
* @return status
**/
@javax.annotation.Nullable
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RmcaCommonProblem rmcaCommonProblem = (RmcaCommonProblem) o;
return Objects.equals(this.traceId, rmcaCommonProblem.traceId) &&
Objects.equals(this.type, rmcaCommonProblem.type) &&
Objects.equals(this.code, rmcaCommonProblem.code) &&
Objects.equals(this.instance, rmcaCommonProblem.instance) &&
Objects.equals(this.title, rmcaCommonProblem.title) &&
Objects.equals(this.detail, rmcaCommonProblem.detail) &&
Objects.equals(this.source, rmcaCommonProblem.source) &&
Objects.equals(this.stackTrace, rmcaCommonProblem.stackTrace) &&
Objects.equals(this.status, rmcaCommonProblem.status);
}
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(traceId, type, code, instance, title, detail, source, stackTrace, status);
}
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 RmcaCommonProblem {\n");
sb.append(" traceId: ").append(toIndentedString(traceId)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" instance: ").append(toIndentedString(instance)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" detail: ").append(toIndentedString(detail)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" stackTrace: ").append(toIndentedString(stackTrace)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).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("traceId");
openapiFields.add("type");
openapiFields.add("code");
openapiFields.add("instance");
openapiFields.add("title");
openapiFields.add("detail");
openapiFields.add("source");
openapiFields.add("stackTrace");
openapiFields.add("status");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* Validates the JSON Object and throws an exception if issues found
*
* @param jsonObj JSON Object
* @throws IOException if the JSON Object is invalid with respect to RmcaCommonProblem
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (!RmcaCommonProblem.openapiRequiredFields.isEmpty()) { // has required fields but JSON object is null
throw new IllegalArgumentException(String.format("The required field(s) %s in RmcaCommonProblem is not found in the empty JSON string", RmcaCommonProblem.openapiRequiredFields.toString()));
}
}
Set> entries = jsonObj.entrySet();
// check to see if the JSON string contains additional fields
for (Entry entry : entries) {
if (!RmcaCommonProblem.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `RmcaCommonProblem` properties. JSON: %s", entry.getKey(), jsonObj.toString()));
}
}
if ((jsonObj.get("traceId") != null && !jsonObj.get("traceId").isJsonNull()) && !jsonObj.get("traceId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `traceId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("traceId").toString()));
}
if ((jsonObj.get("type") != null && !jsonObj.get("type").isJsonNull()) && !jsonObj.get("type").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("type").toString()));
}
if ((jsonObj.get("code") != null && !jsonObj.get("code").isJsonNull()) && !jsonObj.get("code").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `code` to be a primitive type in the JSON string but got `%s`", jsonObj.get("code").toString()));
}
if ((jsonObj.get("instance") != null && !jsonObj.get("instance").isJsonNull()) && !jsonObj.get("instance").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `instance` to be a primitive type in the JSON string but got `%s`", jsonObj.get("instance").toString()));
}
if ((jsonObj.get("title") != null && !jsonObj.get("title").isJsonNull()) && !jsonObj.get("title").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `title` to be a primitive type in the JSON string but got `%s`", jsonObj.get("title").toString()));
}
if ((jsonObj.get("detail") != null && !jsonObj.get("detail").isJsonNull()) && !jsonObj.get("detail").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `detail` to be a primitive type in the JSON string but got `%s`", jsonObj.get("detail").toString()));
}
if ((jsonObj.get("stackTrace") != null && !jsonObj.get("stackTrace").isJsonNull()) && !jsonObj.get("stackTrace").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `stackTrace` to be a primitive type in the JSON string but got `%s`", jsonObj.get("stackTrace").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!RmcaCommonProblem.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'RmcaCommonProblem' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(RmcaCommonProblem.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, RmcaCommonProblem value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public RmcaCommonProblem read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
return thisAdapter.fromJsonTree(jsonObj);
}
}.nullSafe();
}
}
/**
* Create an instance of RmcaCommonProblem given an JSON string
*
* @param jsonString JSON string
* @return An instance of RmcaCommonProblem
* @throws IOException if the JSON string is invalid with respect to RmcaCommonProblem
*/
public static RmcaCommonProblem fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, RmcaCommonProblem.class);
}
/**
* Convert an instance of RmcaCommonProblem to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}