io.alauda.kubernetes.api.model.IntOrString Maven / Gradle / Ivy
/**
* Copyright (C) 2018 Alauda, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.ObjectCodec;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.IOException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonDeserialize(using = IntOrString.Deserializer.class)
@JsonSerialize(using = IntOrString.Serializer.class)
@JsonPropertyOrder({
"IntVal",
"Kind",
"StrVal"
})
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage=true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class IntOrString implements Serializable {
@JsonProperty("IntVal")
private Integer IntVal;
@JsonProperty("Kind")
private Integer Kind;
@JsonProperty("StrVal")
private String StrVal;
@JsonIgnore
private Map additionalProperties = new HashMap();
public IntOrString() {
}
//Builders are generated for the first non-empty constructor found.
public IntOrString(Integer intVal, Integer kind, String strVal, Map additionalProperties) {
IntVal = intVal;
Kind = kind;
StrVal = strVal;
this.additionalProperties = additionalProperties;
}
public IntOrString(Integer intVal) {
this(intVal, 0, null, new HashMap());
}
public IntOrString(String strVal) {
this(null, 1, strVal, new HashMap());
}
/**
*
* @return
* The IntVal
*/
@JsonProperty("IntVal")
public Integer getIntVal() {
return IntVal;
}
/**
*
* @param IntVal
* The IntVal
*/
@JsonProperty("IntVal")
public void setIntVal(Integer IntVal) {
this.IntVal = IntVal;
}
/**
*
* @return
* The Kind
*/
@JsonProperty("Kind")
public Integer getKind() {
return Kind;
}
/**
*
* @param Kind
* The Kind
*/
@JsonProperty("Kind")
public void setKind(Integer Kind) {
this.Kind = Kind;
}
/**
*
* @return
* The StrVal
*/
@JsonProperty("StrVal")
public String getStrVal() {
return StrVal;
}
/**
*
* @param StrVal
* The StrVal
*/
@JsonProperty("StrVal")
public void setStrVal(String StrVal) {
this.StrVal = StrVal;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public static class Serializer extends JsonSerializer {
@Override
public void serialize(IntOrString value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
if (value != null) {
Integer intValue = value.getIntVal();
if (intValue != null) {
jgen.writeNumber(intValue);
} else {
String stringValue = value.getStrVal();
if (stringValue != null) {
jgen.writeString(stringValue);
} else {
jgen.writeNull();
}
}
} else {
jgen.writeNull();
}
}
}
public static class Deserializer extends JsonDeserializer {
@Override
public IntOrString deserialize(JsonParser jsonParser, DeserializationContext ctxt) throws IOException, JsonProcessingException {
ObjectCodec oc = jsonParser.getCodec();
JsonNode node = oc.readTree(jsonParser);
IntOrString intOrString = new IntOrString();
if (node.isInt()) {
intOrString.setIntVal(node.asInt());
} else {
intOrString.setStrVal(node.asText());
}
return intOrString;
}
}
}