io.dataspray.stream.control.client.model.ApiKeyWithSecret Maven / Gradle / Ivy
The newest version!
/*
* DataSpray API
* DataSpray API documentation for controlling and development.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.dataspray.stream.control.client.model;
import java.util.Objects;
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.ArrayList;
import java.util.Arrays;
import java.util.List;
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 com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import io.dataspray.stream.control.client.JSON;
/**
* ApiKeyWithSecret
*/
public class ApiKeyWithSecret {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_QUEUE_WHITELIST = "queueWhitelist";
@SerializedName(SERIALIZED_NAME_QUEUE_WHITELIST)
private List queueWhitelist;
public static final String SERIALIZED_NAME_EXPIRES_AT = "expiresAt";
@SerializedName(SERIALIZED_NAME_EXPIRES_AT)
private Long expiresAt;
public static final String SERIALIZED_NAME_SECRET = "secret";
@SerializedName(SERIALIZED_NAME_SECRET)
private String secret;
public ApiKeyWithSecret() {
}
public ApiKeyWithSecret id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@jakarta.annotation.Nonnull
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public ApiKeyWithSecret description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@jakarta.annotation.Nonnull
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public ApiKeyWithSecret queueWhitelist(List queueWhitelist) {
this.queueWhitelist = queueWhitelist;
return this;
}
public ApiKeyWithSecret addQueueWhitelistItem(String queueWhitelistItem) {
if (this.queueWhitelist == null) {
this.queueWhitelist = new ArrayList<>();
}
this.queueWhitelist.add(queueWhitelistItem);
return this;
}
/**
* Get queueWhitelist
* @return queueWhitelist
**/
@jakarta.annotation.Nullable
public List getQueueWhitelist() {
return queueWhitelist;
}
public void setQueueWhitelist(List queueWhitelist) {
this.queueWhitelist = queueWhitelist;
}
public ApiKeyWithSecret expiresAt(Long expiresAt) {
this.expiresAt = expiresAt;
return this;
}
/**
* Get expiresAt
* @return expiresAt
**/
@jakarta.annotation.Nullable
public Long getExpiresAt() {
return expiresAt;
}
public void setExpiresAt(Long expiresAt) {
this.expiresAt = expiresAt;
}
public ApiKeyWithSecret secret(String secret) {
this.secret = secret;
return this;
}
/**
* Get secret
* @return secret
**/
@jakarta.annotation.Nonnull
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ApiKeyWithSecret apiKeyWithSecret = (ApiKeyWithSecret) o;
return Objects.equals(this.id, apiKeyWithSecret.id) &&
Objects.equals(this.description, apiKeyWithSecret.description) &&
Objects.equals(this.queueWhitelist, apiKeyWithSecret.queueWhitelist) &&
Objects.equals(this.expiresAt, apiKeyWithSecret.expiresAt) &&
Objects.equals(this.secret, apiKeyWithSecret.secret);
}
@Override
public int hashCode() {
return Objects.hash(id, description, queueWhitelist, expiresAt, secret);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ApiKeyWithSecret {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" queueWhitelist: ").append(toIndentedString(queueWhitelist)).append("\n");
sb.append(" expiresAt: ").append(toIndentedString(expiresAt)).append("\n");
sb.append(" secret: ").append(toIndentedString(secret)).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("id");
openapiFields.add("description");
openapiFields.add("queueWhitelist");
openapiFields.add("expiresAt");
openapiFields.add("secret");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("id");
openapiRequiredFields.add("description");
openapiRequiredFields.add("secret");
}
/**
* 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 ApiKeyWithSecret
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!ApiKeyWithSecret.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in ApiKeyWithSecret is not found in the empty JSON string", ApiKeyWithSecret.openapiRequiredFields.toString()));
}
}
Set> entries = jsonElement.getAsJsonObject().entrySet();
// check to see if the JSON string contains additional fields
for (Map.Entry entry : entries) {
if (!ApiKeyWithSecret.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `ApiKeyWithSecret` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : ApiKeyWithSecret.openapiRequiredFields) {
if (jsonElement.getAsJsonObject().get(requiredField) == null) {
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if (!jsonObj.get("id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("id").toString()));
}
if (!jsonObj.get("description").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `description` to be a primitive type in the JSON string but got `%s`", jsonObj.get("description").toString()));
}
// ensure the optional json data is an array if present
if (jsonObj.get("queueWhitelist") != null && !jsonObj.get("queueWhitelist").isJsonNull() && !jsonObj.get("queueWhitelist").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `queueWhitelist` to be an array in the JSON string but got `%s`", jsonObj.get("queueWhitelist").toString()));
}
if (!jsonObj.get("secret").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `secret` to be a primitive type in the JSON string but got `%s`", jsonObj.get("secret").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!ApiKeyWithSecret.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'ApiKeyWithSecret' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(ApiKeyWithSecret.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, ApiKeyWithSecret value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public ApiKeyWithSecret read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of ApiKeyWithSecret given an JSON string
*
* @param jsonString JSON string
* @return An instance of ApiKeyWithSecret
* @throws IOException if the JSON string is invalid with respect to ApiKeyWithSecret
*/
public static ApiKeyWithSecret fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, ApiKeyWithSecret.class);
}
/**
* Convert an instance of ApiKeyWithSecret to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy