mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-19 04:07:07 +00:00
fix: honor required fields in jackson @JsonProperty annotations (#21876)
* fix: honor required fields in jackson @JsonProperty annotations * add samples * fix: trigger build * fix: undo * update to handle nullable as well --------- Co-authored-by: Erik Lagerholm <erik.lagerholm@volvocars.com>
This commit is contained in:
@@ -53,7 +53,7 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -61,7 +61,7 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -54,7 +54,7 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -62,7 +62,7 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -53,7 +53,7 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -61,7 +61,7 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -112,7 +112,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, String> getMapString() {
|
||||
@@ -120,7 +120,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapString(@javax.annotation.Nullable Map<String, String> mapString) {
|
||||
this.mapString = mapString;
|
||||
@@ -145,7 +145,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, BigDecimal> getMapNumber() {
|
||||
@@ -153,7 +153,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapNumber(@javax.annotation.Nullable Map<String, BigDecimal> mapNumber) {
|
||||
this.mapNumber = mapNumber;
|
||||
@@ -178,7 +178,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Integer> getMapInteger() {
|
||||
@@ -186,7 +186,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapInteger(@javax.annotation.Nullable Map<String, Integer> mapInteger) {
|
||||
this.mapInteger = mapInteger;
|
||||
@@ -211,7 +211,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Boolean> getMapBoolean() {
|
||||
@@ -219,7 +219,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapBoolean(@javax.annotation.Nullable Map<String, Boolean> mapBoolean) {
|
||||
this.mapBoolean = mapBoolean;
|
||||
@@ -244,7 +244,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapArrayInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_ARRAY_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, List<Integer>> getMapArrayInteger() {
|
||||
@@ -252,7 +252,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_ARRAY_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapArrayInteger(@javax.annotation.Nullable Map<String, List<Integer>> mapArrayInteger) {
|
||||
this.mapArrayInteger = mapArrayInteger;
|
||||
@@ -277,7 +277,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapArrayAnytype
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_ARRAY_ANYTYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, List<Object>> getMapArrayAnytype() {
|
||||
@@ -285,7 +285,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_ARRAY_ANYTYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapArrayAnytype(@javax.annotation.Nullable Map<String, List<Object>> mapArrayAnytype) {
|
||||
this.mapArrayAnytype = mapArrayAnytype;
|
||||
@@ -310,7 +310,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapMapString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Map<String, String>> getMapMapString() {
|
||||
@@ -318,7 +318,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapMapString(@javax.annotation.Nullable Map<String, Map<String, String>> mapMapString) {
|
||||
this.mapMapString = mapMapString;
|
||||
@@ -343,7 +343,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return mapMapAnytype
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_ANYTYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Map<String, Object>> getMapMapAnytype() {
|
||||
@@ -351,7 +351,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_ANYTYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapMapAnytype(@javax.annotation.Nullable Map<String, Map<String, Object>> mapMapAnytype) {
|
||||
this.mapMapAnytype = mapMapAnytype;
|
||||
@@ -368,7 +368,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return anytype1
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE1)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE1, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Object getAnytype1() {
|
||||
@@ -376,7 +376,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE1)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE1, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAnytype1(@javax.annotation.Nullable Object anytype1) {
|
||||
this.anytype1 = anytype1;
|
||||
@@ -393,7 +393,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return anytype2
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE2)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE2, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Object getAnytype2() {
|
||||
@@ -401,7 +401,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE2)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE2, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAnytype2(@javax.annotation.Nullable Object anytype2) {
|
||||
this.anytype2 = anytype2;
|
||||
@@ -418,7 +418,7 @@ public class AdditionalPropertiesClass {
|
||||
* @return anytype3
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE3)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE3, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Object getAnytype3() {
|
||||
@@ -426,7 +426,7 @@ public class AdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ANYTYPE3)
|
||||
@JsonProperty(value = JSON_PROPERTY_ANYTYPE3, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAnytype3(@javax.annotation.Nullable Object anytype3) {
|
||||
this.anytype3 = anytype3;
|
||||
|
||||
@@ -53,7 +53,7 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -61,7 +61,7 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -54,7 +54,7 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -62,7 +62,7 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -53,7 +53,7 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -61,7 +61,7 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -53,7 +53,7 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -61,7 +61,7 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -69,7 +69,7 @@ public class Animal {
|
||||
* @return className
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_CLASS_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_CLASS_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getClassName() {
|
||||
@@ -77,7 +77,7 @@ public class Animal {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CLASS_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_CLASS_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setClassName(@javax.annotation.Nonnull String className) {
|
||||
this.className = className;
|
||||
@@ -94,7 +94,7 @@ public class Animal {
|
||||
* @return color
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_COLOR)
|
||||
@JsonProperty(value = JSON_PROPERTY_COLOR, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getColor() {
|
||||
@@ -102,7 +102,7 @@ public class Animal {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_COLOR)
|
||||
@JsonProperty(value = JSON_PROPERTY_COLOR, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setColor(@javax.annotation.Nullable String color) {
|
||||
this.color = color;
|
||||
|
||||
@@ -62,7 +62,7 @@ public class ArrayOfArrayOfNumberOnly {
|
||||
* @return arrayArrayNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<List<BigDecimal>> getArrayArrayNumber() {
|
||||
@@ -70,7 +70,7 @@ public class ArrayOfArrayOfNumberOnly {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayArrayNumber(@javax.annotation.Nullable List<List<BigDecimal>> arrayArrayNumber) {
|
||||
this.arrayArrayNumber = arrayArrayNumber;
|
||||
|
||||
@@ -62,7 +62,7 @@ public class ArrayOfNumberOnly {
|
||||
* @return arrayNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<BigDecimal> getArrayNumber() {
|
||||
@@ -70,7 +70,7 @@ public class ArrayOfNumberOnly {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayNumber(@javax.annotation.Nullable List<BigDecimal> arrayNumber) {
|
||||
this.arrayNumber = arrayNumber;
|
||||
|
||||
@@ -72,7 +72,7 @@ public class ArrayTest {
|
||||
* @return arrayOfString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_OF_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<String> getArrayOfString() {
|
||||
@@ -80,7 +80,7 @@ public class ArrayTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_OF_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayOfString(@javax.annotation.Nullable List<String> arrayOfString) {
|
||||
this.arrayOfString = arrayOfString;
|
||||
@@ -105,7 +105,7 @@ public class ArrayTest {
|
||||
* @return arrayArrayOfInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<List<Long>> getArrayArrayOfInteger() {
|
||||
@@ -113,7 +113,7 @@ public class ArrayTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayArrayOfInteger(@javax.annotation.Nullable List<List<Long>> arrayArrayOfInteger) {
|
||||
this.arrayArrayOfInteger = arrayArrayOfInteger;
|
||||
@@ -138,7 +138,7 @@ public class ArrayTest {
|
||||
* @return arrayArrayOfModel
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
|
||||
@@ -146,7 +146,7 @@ public class ArrayTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayArrayOfModel(@javax.annotation.Nullable List<List<ReadOnlyFirst>> arrayArrayOfModel) {
|
||||
this.arrayArrayOfModel = arrayArrayOfModel;
|
||||
|
||||
@@ -100,7 +100,7 @@ public class BigCat extends Cat {
|
||||
* @return kind
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_KIND)
|
||||
@JsonProperty(value = JSON_PROPERTY_KIND, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public KindEnum getKind() {
|
||||
@@ -108,7 +108,7 @@ public class BigCat extends Cat {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_KIND)
|
||||
@JsonProperty(value = JSON_PROPERTY_KIND, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setKind(@javax.annotation.Nullable KindEnum kind) {
|
||||
this.kind = kind;
|
||||
|
||||
@@ -75,7 +75,7 @@ public class Capitalization {
|
||||
* @return smallCamel
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SMALL_CAMEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_SMALL_CAMEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getSmallCamel() {
|
||||
@@ -83,7 +83,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_SMALL_CAMEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_SMALL_CAMEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setSmallCamel(@javax.annotation.Nullable String smallCamel) {
|
||||
this.smallCamel = smallCamel;
|
||||
@@ -100,7 +100,7 @@ public class Capitalization {
|
||||
* @return capitalCamel
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_CAPITAL_CAMEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getCapitalCamel() {
|
||||
@@ -108,7 +108,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL)
|
||||
@JsonProperty(value = JSON_PROPERTY_CAPITAL_CAMEL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setCapitalCamel(@javax.annotation.Nullable String capitalCamel) {
|
||||
this.capitalCamel = capitalCamel;
|
||||
@@ -125,7 +125,7 @@ public class Capitalization {
|
||||
* @return smallSnake
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SMALL_SNAKE)
|
||||
@JsonProperty(value = JSON_PROPERTY_SMALL_SNAKE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getSmallSnake() {
|
||||
@@ -133,7 +133,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_SMALL_SNAKE)
|
||||
@JsonProperty(value = JSON_PROPERTY_SMALL_SNAKE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setSmallSnake(@javax.annotation.Nullable String smallSnake) {
|
||||
this.smallSnake = smallSnake;
|
||||
@@ -150,7 +150,7 @@ public class Capitalization {
|
||||
* @return capitalSnake
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE)
|
||||
@JsonProperty(value = JSON_PROPERTY_CAPITAL_SNAKE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getCapitalSnake() {
|
||||
@@ -158,7 +158,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE)
|
||||
@JsonProperty(value = JSON_PROPERTY_CAPITAL_SNAKE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setCapitalSnake(@javax.annotation.Nullable String capitalSnake) {
|
||||
this.capitalSnake = capitalSnake;
|
||||
@@ -175,7 +175,7 @@ public class Capitalization {
|
||||
* @return scAETHFlowPoints
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS)
|
||||
@JsonProperty(value = JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getScAETHFlowPoints() {
|
||||
@@ -183,7 +183,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS)
|
||||
@JsonProperty(value = JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setScAETHFlowPoints(@javax.annotation.Nullable String scAETHFlowPoints) {
|
||||
this.scAETHFlowPoints = scAETHFlowPoints;
|
||||
@@ -200,7 +200,7 @@ public class Capitalization {
|
||||
* @return ATT_NAME
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E)
|
||||
@JsonProperty(value = JSON_PROPERTY_A_T_T_N_A_M_E, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getATTNAME() {
|
||||
@@ -208,7 +208,7 @@ public class Capitalization {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E)
|
||||
@JsonProperty(value = JSON_PROPERTY_A_T_T_N_A_M_E, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setATTNAME(@javax.annotation.Nullable String ATT_NAME) {
|
||||
this.ATT_NAME = ATT_NAME;
|
||||
|
||||
@@ -64,7 +64,7 @@ public class Cat extends Animal {
|
||||
* @return declawed
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_DECLAWED)
|
||||
@JsonProperty(value = JSON_PROPERTY_DECLAWED, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getDeclawed() {
|
||||
@@ -72,7 +72,7 @@ public class Cat extends Animal {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DECLAWED)
|
||||
@JsonProperty(value = JSON_PROPERTY_DECLAWED, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setDeclawed(@javax.annotation.Nullable Boolean declawed) {
|
||||
this.declawed = declawed;
|
||||
|
||||
@@ -55,7 +55,7 @@ public class Category {
|
||||
* @return id
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getId() {
|
||||
@@ -63,7 +63,7 @@ public class Category {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setId(@javax.annotation.Nullable Long id) {
|
||||
this.id = id;
|
||||
@@ -80,7 +80,7 @@ public class Category {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getName() {
|
||||
@@ -88,7 +88,7 @@ public class Category {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setName(@javax.annotation.Nonnull String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -50,7 +50,7 @@ public class ClassModel {
|
||||
* @return propertyClass
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY_CLASS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY_CLASS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPropertyClass() {
|
||||
@@ -58,7 +58,7 @@ public class ClassModel {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY_CLASS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY_CLASS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPropertyClass(@javax.annotation.Nullable String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
|
||||
@@ -50,7 +50,7 @@ public class Client {
|
||||
* @return client
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_CLIENT)
|
||||
@JsonProperty(value = JSON_PROPERTY_CLIENT, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getClient() {
|
||||
@@ -58,7 +58,7 @@ public class Client {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CLIENT)
|
||||
@JsonProperty(value = JSON_PROPERTY_CLIENT, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setClient(@javax.annotation.Nullable String client) {
|
||||
this.client = client;
|
||||
|
||||
@@ -61,7 +61,7 @@ public class Dog extends Animal {
|
||||
* @return breed
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BREED)
|
||||
@JsonProperty(value = JSON_PROPERTY_BREED, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getBreed() {
|
||||
@@ -69,7 +69,7 @@ public class Dog extends Animal {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BREED)
|
||||
@JsonProperty(value = JSON_PROPERTY_BREED, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setBreed(@javax.annotation.Nullable String breed) {
|
||||
this.breed = breed;
|
||||
|
||||
@@ -128,7 +128,7 @@ public class EnumArrays {
|
||||
* @return justSymbol
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_JUST_SYMBOL)
|
||||
@JsonProperty(value = JSON_PROPERTY_JUST_SYMBOL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public JustSymbolEnum getJustSymbol() {
|
||||
@@ -136,7 +136,7 @@ public class EnumArrays {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_JUST_SYMBOL)
|
||||
@JsonProperty(value = JSON_PROPERTY_JUST_SYMBOL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setJustSymbol(@javax.annotation.Nullable JustSymbolEnum justSymbol) {
|
||||
this.justSymbol = justSymbol;
|
||||
@@ -161,7 +161,7 @@ public class EnumArrays {
|
||||
* @return arrayEnum
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ENUM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ENUM, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<ArrayEnumEnum> getArrayEnum() {
|
||||
@@ -169,7 +169,7 @@ public class EnumArrays {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ENUM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ENUM, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setArrayEnum(@javax.annotation.Nullable List<ArrayEnumEnum> arrayEnum) {
|
||||
this.arrayEnum = arrayEnum;
|
||||
|
||||
@@ -216,7 +216,7 @@ public class EnumTest {
|
||||
* @return enumString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public EnumStringEnum getEnumString() {
|
||||
@@ -224,7 +224,7 @@ public class EnumTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setEnumString(@javax.annotation.Nullable EnumStringEnum enumString) {
|
||||
this.enumString = enumString;
|
||||
@@ -241,7 +241,7 @@ public class EnumTest {
|
||||
* @return enumStringRequired
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_STRING_REQUIRED, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public EnumStringRequiredEnum getEnumStringRequired() {
|
||||
@@ -249,7 +249,7 @@ public class EnumTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_STRING_REQUIRED, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setEnumStringRequired(@javax.annotation.Nonnull EnumStringRequiredEnum enumStringRequired) {
|
||||
this.enumStringRequired = enumStringRequired;
|
||||
@@ -266,7 +266,7 @@ public class EnumTest {
|
||||
* @return enumInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public EnumIntegerEnum getEnumInteger() {
|
||||
@@ -274,7 +274,7 @@ public class EnumTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setEnumInteger(@javax.annotation.Nullable EnumIntegerEnum enumInteger) {
|
||||
this.enumInteger = enumInteger;
|
||||
@@ -291,7 +291,7 @@ public class EnumTest {
|
||||
* @return enumNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public EnumNumberEnum getEnumNumber() {
|
||||
@@ -299,7 +299,7 @@ public class EnumTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ENUM_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ENUM_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setEnumNumber(@javax.annotation.Nullable EnumNumberEnum enumNumber) {
|
||||
this.enumNumber = enumNumber;
|
||||
@@ -316,7 +316,7 @@ public class EnumTest {
|
||||
* @return outerEnum
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_OUTER_ENUM)
|
||||
@JsonProperty(value = JSON_PROPERTY_OUTER_ENUM, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public OuterEnum getOuterEnum() {
|
||||
@@ -324,7 +324,7 @@ public class EnumTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_OUTER_ENUM)
|
||||
@JsonProperty(value = JSON_PROPERTY_OUTER_ENUM, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setOuterEnum(@javax.annotation.Nullable OuterEnum outerEnum) {
|
||||
this.outerEnum = outerEnum;
|
||||
|
||||
@@ -59,7 +59,7 @@ public class FileSchemaTestClass {
|
||||
* @return _file
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_FILE)
|
||||
@JsonProperty(value = JSON_PROPERTY_FILE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public ModelFile getFile() {
|
||||
@@ -67,7 +67,7 @@ public class FileSchemaTestClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_FILE)
|
||||
@JsonProperty(value = JSON_PROPERTY_FILE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setFile(@javax.annotation.Nullable ModelFile _file) {
|
||||
this._file = _file;
|
||||
@@ -92,7 +92,7 @@ public class FileSchemaTestClass {
|
||||
* @return files
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_FILES)
|
||||
@JsonProperty(value = JSON_PROPERTY_FILES, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<ModelFile> getFiles() {
|
||||
@@ -100,7 +100,7 @@ public class FileSchemaTestClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_FILES)
|
||||
@JsonProperty(value = JSON_PROPERTY_FILES, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setFiles(@javax.annotation.Nullable List<ModelFile> files) {
|
||||
this.files = files;
|
||||
|
||||
@@ -123,7 +123,7 @@ public class FormatTest {
|
||||
* @return integer
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getInteger() {
|
||||
@@ -131,7 +131,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setInteger(@javax.annotation.Nullable Integer integer) {
|
||||
this.integer = integer;
|
||||
@@ -150,7 +150,7 @@ public class FormatTest {
|
||||
* @return int32
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_INT32)
|
||||
@JsonProperty(value = JSON_PROPERTY_INT32, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getInt32() {
|
||||
@@ -158,7 +158,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INT32)
|
||||
@JsonProperty(value = JSON_PROPERTY_INT32, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setInt32(@javax.annotation.Nullable Integer int32) {
|
||||
this.int32 = int32;
|
||||
@@ -175,7 +175,7 @@ public class FormatTest {
|
||||
* @return int64
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_INT64)
|
||||
@JsonProperty(value = JSON_PROPERTY_INT64, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getInt64() {
|
||||
@@ -183,7 +183,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INT64)
|
||||
@JsonProperty(value = JSON_PROPERTY_INT64, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setInt64(@javax.annotation.Nullable Long int64) {
|
||||
this.int64 = int64;
|
||||
@@ -202,7 +202,7 @@ public class FormatTest {
|
||||
* @return number
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public BigDecimal getNumber() {
|
||||
@@ -210,7 +210,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setNumber(@javax.annotation.Nonnull BigDecimal number) {
|
||||
this.number = number;
|
||||
@@ -229,7 +229,7 @@ public class FormatTest {
|
||||
* @return _float
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_FLOAT)
|
||||
@JsonProperty(value = JSON_PROPERTY_FLOAT, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Float getFloat() {
|
||||
@@ -237,7 +237,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_FLOAT)
|
||||
@JsonProperty(value = JSON_PROPERTY_FLOAT, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setFloat(@javax.annotation.Nullable Float _float) {
|
||||
this._float = _float;
|
||||
@@ -256,7 +256,7 @@ public class FormatTest {
|
||||
* @return _double
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_DOUBLE)
|
||||
@JsonProperty(value = JSON_PROPERTY_DOUBLE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Double getDouble() {
|
||||
@@ -264,7 +264,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DOUBLE)
|
||||
@JsonProperty(value = JSON_PROPERTY_DOUBLE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setDouble(@javax.annotation.Nullable Double _double) {
|
||||
this._double = _double;
|
||||
@@ -281,7 +281,7 @@ public class FormatTest {
|
||||
* @return string
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getString() {
|
||||
@@ -289,7 +289,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setString(@javax.annotation.Nullable String string) {
|
||||
this.string = string;
|
||||
@@ -306,7 +306,7 @@ public class FormatTest {
|
||||
* @return _byte
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_BYTE)
|
||||
@JsonProperty(value = JSON_PROPERTY_BYTE, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public byte[] getByte() {
|
||||
@@ -314,7 +314,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BYTE)
|
||||
@JsonProperty(value = JSON_PROPERTY_BYTE, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setByte(@javax.annotation.Nonnull byte[] _byte) {
|
||||
this._byte = _byte;
|
||||
@@ -331,7 +331,7 @@ public class FormatTest {
|
||||
* @return binary
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BINARY)
|
||||
@JsonProperty(value = JSON_PROPERTY_BINARY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public File getBinary() {
|
||||
@@ -339,7 +339,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BINARY)
|
||||
@JsonProperty(value = JSON_PROPERTY_BINARY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setBinary(@javax.annotation.Nullable File binary) {
|
||||
this.binary = binary;
|
||||
@@ -356,7 +356,7 @@ public class FormatTest {
|
||||
* @return date
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_DATE)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public LocalDate getDate() {
|
||||
@@ -364,7 +364,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DATE)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setDate(@javax.annotation.Nonnull LocalDate date) {
|
||||
this.date = date;
|
||||
@@ -381,7 +381,7 @@ public class FormatTest {
|
||||
* @return dateTime
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_DATE_TIME)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE_TIME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public OffsetDateTime getDateTime() {
|
||||
@@ -389,7 +389,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DATE_TIME)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE_TIME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setDateTime(@javax.annotation.Nullable OffsetDateTime dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
@@ -406,7 +406,7 @@ public class FormatTest {
|
||||
* @return uuid
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_UUID)
|
||||
@JsonProperty(value = JSON_PROPERTY_UUID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public UUID getUuid() {
|
||||
@@ -414,7 +414,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_UUID)
|
||||
@JsonProperty(value = JSON_PROPERTY_UUID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setUuid(@javax.annotation.Nullable UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
@@ -431,7 +431,7 @@ public class FormatTest {
|
||||
* @return password
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_PASSWORD)
|
||||
@JsonProperty(value = JSON_PROPERTY_PASSWORD, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getPassword() {
|
||||
@@ -439,7 +439,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PASSWORD)
|
||||
@JsonProperty(value = JSON_PROPERTY_PASSWORD, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setPassword(@javax.annotation.Nonnull String password) {
|
||||
this.password = password;
|
||||
@@ -456,7 +456,7 @@ public class FormatTest {
|
||||
* @return bigDecimal
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BIG_DECIMAL)
|
||||
@JsonProperty(value = JSON_PROPERTY_BIG_DECIMAL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getBigDecimal() {
|
||||
@@ -464,7 +464,7 @@ public class FormatTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BIG_DECIMAL)
|
||||
@JsonProperty(value = JSON_PROPERTY_BIG_DECIMAL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setBigDecimal(@javax.annotation.Nullable BigDecimal bigDecimal) {
|
||||
this.bigDecimal = bigDecimal;
|
||||
|
||||
@@ -49,8 +49,8 @@ public class HasOnlyReadOnly {
|
||||
*/
|
||||
@JsonCreator
|
||||
public HasOnlyReadOnly(
|
||||
@JsonProperty(JSON_PROPERTY_BAR) String bar,
|
||||
@JsonProperty(JSON_PROPERTY_FOO) String foo
|
||||
@JsonProperty(value = JSON_PROPERTY_BAR, required = false) String bar,
|
||||
@JsonProperty(value = JSON_PROPERTY_FOO, required = false) String foo
|
||||
) {
|
||||
this();
|
||||
this.bar = bar;
|
||||
@@ -62,7 +62,7 @@ public class HasOnlyReadOnly {
|
||||
* @return bar
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BAR)
|
||||
@JsonProperty(value = JSON_PROPERTY_BAR, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getBar() {
|
||||
@@ -76,7 +76,7 @@ public class HasOnlyReadOnly {
|
||||
* @return foo
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_FOO)
|
||||
@JsonProperty(value = JSON_PROPERTY_FOO, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getFoo() {
|
||||
|
||||
@@ -110,7 +110,7 @@ public class MapTest {
|
||||
* @return mapMapOfString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_OF_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Map<String, String>> getMapMapOfString() {
|
||||
@@ -118,7 +118,7 @@ public class MapTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_MAP_OF_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapMapOfString(@javax.annotation.Nullable Map<String, Map<String, String>> mapMapOfString) {
|
||||
this.mapMapOfString = mapMapOfString;
|
||||
@@ -143,7 +143,7 @@ public class MapTest {
|
||||
* @return mapOfEnumString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_OF_ENUM_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, InnerEnum> getMapOfEnumString() {
|
||||
@@ -151,7 +151,7 @@ public class MapTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP_OF_ENUM_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMapOfEnumString(@javax.annotation.Nullable Map<String, InnerEnum> mapOfEnumString) {
|
||||
this.mapOfEnumString = mapOfEnumString;
|
||||
@@ -176,7 +176,7 @@ public class MapTest {
|
||||
* @return directMap
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_DIRECT_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_DIRECT_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Boolean> getDirectMap() {
|
||||
@@ -184,7 +184,7 @@ public class MapTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DIRECT_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_DIRECT_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setDirectMap(@javax.annotation.Nullable Map<String, Boolean> directMap) {
|
||||
this.directMap = directMap;
|
||||
@@ -209,7 +209,7 @@ public class MapTest {
|
||||
* @return indirectMap
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_INDIRECT_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_INDIRECT_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Boolean> getIndirectMap() {
|
||||
@@ -217,7 +217,7 @@ public class MapTest {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INDIRECT_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_INDIRECT_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setIndirectMap(@javax.annotation.Nullable Map<String, Boolean> indirectMap) {
|
||||
this.indirectMap = indirectMap;
|
||||
|
||||
@@ -65,7 +65,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* @return uuid
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_UUID)
|
||||
@JsonProperty(value = JSON_PROPERTY_UUID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public UUID getUuid() {
|
||||
@@ -73,7 +73,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_UUID)
|
||||
@JsonProperty(value = JSON_PROPERTY_UUID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setUuid(@javax.annotation.Nullable UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
@@ -90,7 +90,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* @return dateTime
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_DATE_TIME)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE_TIME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public OffsetDateTime getDateTime() {
|
||||
@@ -98,7 +98,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_DATE_TIME)
|
||||
@JsonProperty(value = JSON_PROPERTY_DATE_TIME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setDateTime(@javax.annotation.Nullable OffsetDateTime dateTime) {
|
||||
this.dateTime = dateTime;
|
||||
@@ -123,7 +123,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* @return map
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Map<String, Animal> getMap() {
|
||||
@@ -131,7 +131,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MAP)
|
||||
@JsonProperty(value = JSON_PROPERTY_MAP, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMap(@javax.annotation.Nullable Map<String, Animal> map) {
|
||||
this.map = map;
|
||||
|
||||
@@ -56,7 +56,7 @@ public class Model200Response {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getName() {
|
||||
@@ -64,7 +64,7 @@ public class Model200Response {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable Integer name) {
|
||||
this.name = name;
|
||||
@@ -81,7 +81,7 @@ public class Model200Response {
|
||||
* @return propertyClass
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY_CLASS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY_CLASS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPropertyClass() {
|
||||
@@ -89,7 +89,7 @@ public class Model200Response {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY_CLASS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY_CLASS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPropertyClass(@javax.annotation.Nullable String propertyClass) {
|
||||
this.propertyClass = propertyClass;
|
||||
|
||||
@@ -61,7 +61,7 @@ public class ModelApiResponse {
|
||||
* @return code
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_CODE)
|
||||
@JsonProperty(value = JSON_PROPERTY_CODE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getCode() {
|
||||
@@ -69,7 +69,7 @@ public class ModelApiResponse {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CODE)
|
||||
@JsonProperty(value = JSON_PROPERTY_CODE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setCode(@javax.annotation.Nullable Integer code) {
|
||||
this.code = code;
|
||||
@@ -86,7 +86,7 @@ public class ModelApiResponse {
|
||||
* @return type
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_TYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_TYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getType() {
|
||||
@@ -94,7 +94,7 @@ public class ModelApiResponse {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_TYPE)
|
||||
@JsonProperty(value = JSON_PROPERTY_TYPE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setType(@javax.annotation.Nullable String type) {
|
||||
this.type = type;
|
||||
@@ -111,7 +111,7 @@ public class ModelApiResponse {
|
||||
* @return message
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MESSAGE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MESSAGE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getMessage() {
|
||||
@@ -119,7 +119,7 @@ public class ModelApiResponse {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MESSAGE)
|
||||
@JsonProperty(value = JSON_PROPERTY_MESSAGE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMessage(@javax.annotation.Nullable String message) {
|
||||
this.message = message;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class ModelFile {
|
||||
* @return sourceURI
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SOURCE_U_R_I)
|
||||
@JsonProperty(value = JSON_PROPERTY_SOURCE_U_R_I, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getSourceURI() {
|
||||
@@ -59,7 +59,7 @@ public class ModelFile {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_SOURCE_U_R_I)
|
||||
@JsonProperty(value = JSON_PROPERTY_SOURCE_U_R_I, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setSourceURI(@javax.annotation.Nullable String sourceURI) {
|
||||
this.sourceURI = sourceURI;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class ModelList {
|
||||
* @return _123list
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_123LIST)
|
||||
@JsonProperty(value = JSON_PROPERTY_123LIST, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String get123list() {
|
||||
@@ -59,7 +59,7 @@ public class ModelList {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_123LIST)
|
||||
@JsonProperty(value = JSON_PROPERTY_123LIST, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void set123list(@javax.annotation.Nullable String _123list) {
|
||||
this._123list = _123list;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class ModelReturn {
|
||||
* @return _return
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_RETURN)
|
||||
@JsonProperty(value = JSON_PROPERTY_RETURN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getReturn() {
|
||||
@@ -59,7 +59,7 @@ public class ModelReturn {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_RETURN)
|
||||
@JsonProperty(value = JSON_PROPERTY_RETURN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setReturn(@javax.annotation.Nullable Integer _return) {
|
||||
this._return = _return;
|
||||
|
||||
@@ -58,8 +58,8 @@ public class Name {
|
||||
*/
|
||||
@JsonCreator
|
||||
public Name(
|
||||
@JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase,
|
||||
@JsonProperty(JSON_PROPERTY_123NUMBER) Integer _123number
|
||||
@JsonProperty(value = JSON_PROPERTY_SNAKE_CASE, required = false) Integer snakeCase,
|
||||
@JsonProperty(value = JSON_PROPERTY_123NUMBER, required = false) Integer _123number
|
||||
) {
|
||||
this();
|
||||
this.snakeCase = snakeCase;
|
||||
@@ -77,7 +77,7 @@ public class Name {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Integer getName() {
|
||||
@@ -85,7 +85,7 @@ public class Name {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setName(@javax.annotation.Nonnull Integer name) {
|
||||
this.name = name;
|
||||
@@ -96,7 +96,7 @@ public class Name {
|
||||
* @return snakeCase
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SNAKE_CASE)
|
||||
@JsonProperty(value = JSON_PROPERTY_SNAKE_CASE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getSnakeCase() {
|
||||
@@ -116,7 +116,7 @@ public class Name {
|
||||
* @return property
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getProperty() {
|
||||
@@ -124,7 +124,7 @@ public class Name {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PROPERTY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PROPERTY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setProperty(@javax.annotation.Nullable String property) {
|
||||
this.property = property;
|
||||
@@ -135,7 +135,7 @@ public class Name {
|
||||
* @return _123number
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_123NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_123NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer get123number() {
|
||||
|
||||
@@ -51,7 +51,7 @@ public class NumberOnly {
|
||||
* @return justNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_JUST_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_JUST_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getJustNumber() {
|
||||
@@ -59,7 +59,7 @@ public class NumberOnly {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_JUST_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_JUST_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setJustNumber(@javax.annotation.Nullable BigDecimal justNumber) {
|
||||
this.justNumber = justNumber;
|
||||
|
||||
@@ -113,7 +113,7 @@ public class Order {
|
||||
* @return id
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getId() {
|
||||
@@ -121,7 +121,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setId(@javax.annotation.Nullable Long id) {
|
||||
this.id = id;
|
||||
@@ -138,7 +138,7 @@ public class Order {
|
||||
* @return petId
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PET_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_PET_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getPetId() {
|
||||
@@ -146,7 +146,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PET_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_PET_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPetId(@javax.annotation.Nullable Long petId) {
|
||||
this.petId = petId;
|
||||
@@ -163,7 +163,7 @@ public class Order {
|
||||
* @return quantity
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_QUANTITY)
|
||||
@JsonProperty(value = JSON_PROPERTY_QUANTITY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getQuantity() {
|
||||
@@ -171,7 +171,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_QUANTITY)
|
||||
@JsonProperty(value = JSON_PROPERTY_QUANTITY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setQuantity(@javax.annotation.Nullable Integer quantity) {
|
||||
this.quantity = quantity;
|
||||
@@ -188,7 +188,7 @@ public class Order {
|
||||
* @return shipDate
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_SHIP_DATE)
|
||||
@JsonProperty(value = JSON_PROPERTY_SHIP_DATE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public OffsetDateTime getShipDate() {
|
||||
@@ -196,7 +196,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_SHIP_DATE)
|
||||
@JsonProperty(value = JSON_PROPERTY_SHIP_DATE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setShipDate(@javax.annotation.Nullable OffsetDateTime shipDate) {
|
||||
this.shipDate = shipDate;
|
||||
@@ -213,7 +213,7 @@ public class Order {
|
||||
* @return status
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public StatusEnum getStatus() {
|
||||
@@ -221,7 +221,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setStatus(@javax.annotation.Nullable StatusEnum status) {
|
||||
this.status = status;
|
||||
@@ -238,7 +238,7 @@ public class Order {
|
||||
* @return complete
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_COMPLETE)
|
||||
@JsonProperty(value = JSON_PROPERTY_COMPLETE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getComplete() {
|
||||
@@ -246,7 +246,7 @@ public class Order {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_COMPLETE)
|
||||
@JsonProperty(value = JSON_PROPERTY_COMPLETE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setComplete(@javax.annotation.Nullable Boolean complete) {
|
||||
this.complete = complete;
|
||||
|
||||
@@ -61,7 +61,7 @@ public class OuterComposite {
|
||||
* @return myNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getMyNumber() {
|
||||
@@ -69,7 +69,7 @@ public class OuterComposite {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MY_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMyNumber(@javax.annotation.Nullable BigDecimal myNumber) {
|
||||
this.myNumber = myNumber;
|
||||
@@ -86,7 +86,7 @@ public class OuterComposite {
|
||||
* @return myString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MY_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getMyString() {
|
||||
@@ -94,7 +94,7 @@ public class OuterComposite {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MY_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMyString(@javax.annotation.Nullable String myString) {
|
||||
this.myString = myString;
|
||||
@@ -111,7 +111,7 @@ public class OuterComposite {
|
||||
* @return myBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_MY_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getMyBoolean() {
|
||||
@@ -119,7 +119,7 @@ public class OuterComposite {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_MY_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_MY_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setMyBoolean(@javax.annotation.Nullable Boolean myBoolean) {
|
||||
this.myBoolean = myBoolean;
|
||||
|
||||
@@ -120,7 +120,7 @@ public class Pet {
|
||||
* @return id
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getId() {
|
||||
@@ -128,7 +128,7 @@ public class Pet {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setId(@javax.annotation.Nullable Long id) {
|
||||
this.id = id;
|
||||
@@ -145,7 +145,7 @@ public class Pet {
|
||||
* @return category
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_CATEGORY)
|
||||
@JsonProperty(value = JSON_PROPERTY_CATEGORY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Category getCategory() {
|
||||
@@ -153,7 +153,7 @@ public class Pet {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_CATEGORY)
|
||||
@JsonProperty(value = JSON_PROPERTY_CATEGORY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setCategory(@javax.annotation.Nullable Category category) {
|
||||
this.category = category;
|
||||
@@ -170,7 +170,7 @@ public class Pet {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getName() {
|
||||
@@ -178,7 +178,7 @@ public class Pet {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setName(@javax.annotation.Nonnull String name) {
|
||||
this.name = name;
|
||||
@@ -203,7 +203,7 @@ public class Pet {
|
||||
* @return photoUrls
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_PHOTO_URLS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PHOTO_URLS, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Set<String> getPhotoUrls() {
|
||||
@@ -212,7 +212,7 @@ public class Pet {
|
||||
|
||||
|
||||
@JsonDeserialize(as = LinkedHashSet.class)
|
||||
@JsonProperty(JSON_PROPERTY_PHOTO_URLS)
|
||||
@JsonProperty(value = JSON_PROPERTY_PHOTO_URLS, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setPhotoUrls(@javax.annotation.Nonnull Set<String> photoUrls) {
|
||||
this.photoUrls = photoUrls;
|
||||
@@ -237,7 +237,7 @@ public class Pet {
|
||||
* @return tags
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_TAGS)
|
||||
@JsonProperty(value = JSON_PROPERTY_TAGS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Tag> getTags() {
|
||||
@@ -245,7 +245,7 @@ public class Pet {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_TAGS)
|
||||
@JsonProperty(value = JSON_PROPERTY_TAGS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setTags(@javax.annotation.Nullable List<Tag> tags) {
|
||||
this.tags = tags;
|
||||
@@ -262,7 +262,7 @@ public class Pet {
|
||||
* @return status
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public StatusEnum getStatus() {
|
||||
@@ -270,7 +270,7 @@ public class Pet {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setStatus(@javax.annotation.Nullable StatusEnum status) {
|
||||
this.status = status;
|
||||
|
||||
@@ -48,7 +48,7 @@ public class ReadOnlyFirst {
|
||||
*/
|
||||
@JsonCreator
|
||||
public ReadOnlyFirst(
|
||||
@JsonProperty(JSON_PROPERTY_BAR) String bar
|
||||
@JsonProperty(value = JSON_PROPERTY_BAR, required = false) String bar
|
||||
) {
|
||||
this();
|
||||
this.bar = bar;
|
||||
@@ -59,7 +59,7 @@ public class ReadOnlyFirst {
|
||||
* @return bar
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BAR)
|
||||
@JsonProperty(value = JSON_PROPERTY_BAR, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getBar() {
|
||||
@@ -79,7 +79,7 @@ public class ReadOnlyFirst {
|
||||
* @return baz
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_BAZ)
|
||||
@JsonProperty(value = JSON_PROPERTY_BAZ, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getBaz() {
|
||||
@@ -87,7 +87,7 @@ public class ReadOnlyFirst {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BAZ)
|
||||
@JsonProperty(value = JSON_PROPERTY_BAZ, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setBaz(@javax.annotation.Nullable String baz) {
|
||||
this.baz = baz;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class SpecialModelName {
|
||||
* @return $specialPropertyName
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long get$SpecialPropertyName() {
|
||||
@@ -59,7 +59,7 @@ public class SpecialModelName {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void set$SpecialPropertyName(@javax.annotation.Nullable Long $specialPropertyName) {
|
||||
this.$specialPropertyName = $specialPropertyName;
|
||||
|
||||
@@ -55,7 +55,7 @@ public class Tag {
|
||||
* @return id
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getId() {
|
||||
@@ -63,7 +63,7 @@ public class Tag {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setId(@javax.annotation.Nullable Long id) {
|
||||
this.id = id;
|
||||
@@ -80,7 +80,7 @@ public class Tag {
|
||||
* @return name
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getName() {
|
||||
@@ -88,7 +88,7 @@ public class Tag {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setName(@javax.annotation.Nullable String name) {
|
||||
this.name = name;
|
||||
|
||||
@@ -74,7 +74,7 @@ public class TypeHolderDefault {
|
||||
* @return stringItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_STRING_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getStringItem() {
|
||||
@@ -82,7 +82,7 @@ public class TypeHolderDefault {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_STRING_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setStringItem(@javax.annotation.Nonnull String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
@@ -99,7 +99,7 @@ public class TypeHolderDefault {
|
||||
* @return numberItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public BigDecimal getNumberItem() {
|
||||
@@ -107,7 +107,7 @@ public class TypeHolderDefault {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setNumberItem(@javax.annotation.Nonnull BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
@@ -124,7 +124,7 @@ public class TypeHolderDefault {
|
||||
* @return integerItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Integer getIntegerItem() {
|
||||
@@ -132,7 +132,7 @@ public class TypeHolderDefault {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setIntegerItem(@javax.annotation.Nonnull Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
@@ -149,7 +149,7 @@ public class TypeHolderDefault {
|
||||
* @return boolItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_BOOL_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_BOOL_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Boolean getBoolItem() {
|
||||
@@ -157,7 +157,7 @@ public class TypeHolderDefault {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BOOL_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_BOOL_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setBoolItem(@javax.annotation.Nonnull Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
@@ -182,7 +182,7 @@ public class TypeHolderDefault {
|
||||
* @return arrayItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public List<Integer> getArrayItem() {
|
||||
@@ -190,7 +190,7 @@ public class TypeHolderDefault {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setArrayItem(@javax.annotation.Nonnull List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
|
||||
@@ -79,7 +79,7 @@ public class TypeHolderExample {
|
||||
* @return stringItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_STRING_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public String getStringItem() {
|
||||
@@ -87,7 +87,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_STRING_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_STRING_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setStringItem(@javax.annotation.Nonnull String stringItem) {
|
||||
this.stringItem = stringItem;
|
||||
@@ -104,7 +104,7 @@ public class TypeHolderExample {
|
||||
* @return numberItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public BigDecimal getNumberItem() {
|
||||
@@ -112,7 +112,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NUMBER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_NUMBER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setNumberItem(@javax.annotation.Nonnull BigDecimal numberItem) {
|
||||
this.numberItem = numberItem;
|
||||
@@ -129,7 +129,7 @@ public class TypeHolderExample {
|
||||
* @return floatItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_FLOAT_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_FLOAT_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Float getFloatItem() {
|
||||
@@ -137,7 +137,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_FLOAT_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_FLOAT_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setFloatItem(@javax.annotation.Nonnull Float floatItem) {
|
||||
this.floatItem = floatItem;
|
||||
@@ -154,7 +154,7 @@ public class TypeHolderExample {
|
||||
* @return integerItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Integer getIntegerItem() {
|
||||
@@ -162,7 +162,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_INTEGER_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_INTEGER_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setIntegerItem(@javax.annotation.Nonnull Integer integerItem) {
|
||||
this.integerItem = integerItem;
|
||||
@@ -179,7 +179,7 @@ public class TypeHolderExample {
|
||||
* @return boolItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_BOOL_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_BOOL_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public Boolean getBoolItem() {
|
||||
@@ -187,7 +187,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_BOOL_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_BOOL_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setBoolItem(@javax.annotation.Nonnull Boolean boolItem) {
|
||||
this.boolItem = boolItem;
|
||||
@@ -212,7 +212,7 @@ public class TypeHolderExample {
|
||||
* @return arrayItem
|
||||
*/
|
||||
@javax.annotation.Nonnull
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
|
||||
public List<Integer> getArrayItem() {
|
||||
@@ -220,7 +220,7 @@ public class TypeHolderExample {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ARRAY_ITEM)
|
||||
@JsonProperty(value = JSON_PROPERTY_ARRAY_ITEM, required = true)
|
||||
@JsonInclude(value = JsonInclude.Include.ALWAYS)
|
||||
public void setArrayItem(@javax.annotation.Nonnull List<Integer> arrayItem) {
|
||||
this.arrayItem = arrayItem;
|
||||
|
||||
@@ -85,7 +85,7 @@ public class User {
|
||||
* @return id
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Long getId() {
|
||||
@@ -93,7 +93,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ID)
|
||||
@JsonProperty(value = JSON_PROPERTY_ID, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setId(@javax.annotation.Nullable Long id) {
|
||||
this.id = id;
|
||||
@@ -110,7 +110,7 @@ public class User {
|
||||
* @return username
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_USERNAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_USERNAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getUsername() {
|
||||
@@ -118,7 +118,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_USERNAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_USERNAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setUsername(@javax.annotation.Nullable String username) {
|
||||
this.username = username;
|
||||
@@ -135,7 +135,7 @@ public class User {
|
||||
* @return firstName
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_FIRST_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_FIRST_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getFirstName() {
|
||||
@@ -143,7 +143,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_FIRST_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_FIRST_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setFirstName(@javax.annotation.Nullable String firstName) {
|
||||
this.firstName = firstName;
|
||||
@@ -160,7 +160,7 @@ public class User {
|
||||
* @return lastName
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_LAST_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_LAST_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getLastName() {
|
||||
@@ -168,7 +168,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_LAST_NAME)
|
||||
@JsonProperty(value = JSON_PROPERTY_LAST_NAME, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setLastName(@javax.annotation.Nullable String lastName) {
|
||||
this.lastName = lastName;
|
||||
@@ -185,7 +185,7 @@ public class User {
|
||||
* @return email
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_EMAIL)
|
||||
@JsonProperty(value = JSON_PROPERTY_EMAIL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getEmail() {
|
||||
@@ -193,7 +193,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_EMAIL)
|
||||
@JsonProperty(value = JSON_PROPERTY_EMAIL, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setEmail(@javax.annotation.Nullable String email) {
|
||||
this.email = email;
|
||||
@@ -210,7 +210,7 @@ public class User {
|
||||
* @return password
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PASSWORD)
|
||||
@JsonProperty(value = JSON_PROPERTY_PASSWORD, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPassword() {
|
||||
@@ -218,7 +218,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PASSWORD)
|
||||
@JsonProperty(value = JSON_PROPERTY_PASSWORD, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPassword(@javax.annotation.Nullable String password) {
|
||||
this.password = password;
|
||||
@@ -235,7 +235,7 @@ public class User {
|
||||
* @return phone
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PHONE)
|
||||
@JsonProperty(value = JSON_PROPERTY_PHONE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPhone() {
|
||||
@@ -243,7 +243,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PHONE)
|
||||
@JsonProperty(value = JSON_PROPERTY_PHONE, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPhone(@javax.annotation.Nullable String phone) {
|
||||
this.phone = phone;
|
||||
@@ -260,7 +260,7 @@ public class User {
|
||||
* @return userStatus
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_USER_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_USER_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getUserStatus() {
|
||||
@@ -268,7 +268,7 @@ public class User {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_USER_STATUS)
|
||||
@JsonProperty(value = JSON_PROPERTY_USER_STATUS, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setUserStatus(@javax.annotation.Nullable Integer userStatus) {
|
||||
this.userStatus = userStatus;
|
||||
|
||||
@@ -194,7 +194,7 @@ public class XmlItem {
|
||||
* @return attributeString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getAttributeString() {
|
||||
@@ -202,7 +202,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAttributeString(@javax.annotation.Nullable String attributeString) {
|
||||
this.attributeString = attributeString;
|
||||
@@ -219,7 +219,7 @@ public class XmlItem {
|
||||
* @return attributeNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getAttributeNumber() {
|
||||
@@ -227,7 +227,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAttributeNumber(@javax.annotation.Nullable BigDecimal attributeNumber) {
|
||||
this.attributeNumber = attributeNumber;
|
||||
@@ -244,7 +244,7 @@ public class XmlItem {
|
||||
* @return attributeInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getAttributeInteger() {
|
||||
@@ -252,7 +252,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAttributeInteger(@javax.annotation.Nullable Integer attributeInteger) {
|
||||
this.attributeInteger = attributeInteger;
|
||||
@@ -269,7 +269,7 @@ public class XmlItem {
|
||||
* @return attributeBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getAttributeBoolean() {
|
||||
@@ -277,7 +277,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_ATTRIBUTE_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setAttributeBoolean(@javax.annotation.Nullable Boolean attributeBoolean) {
|
||||
this.attributeBoolean = attributeBoolean;
|
||||
@@ -302,7 +302,7 @@ public class XmlItem {
|
||||
* @return wrappedArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getWrappedArray() {
|
||||
@@ -310,7 +310,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setWrappedArray(@javax.annotation.Nullable List<Integer> wrappedArray) {
|
||||
this.wrappedArray = wrappedArray;
|
||||
@@ -327,7 +327,7 @@ public class XmlItem {
|
||||
* @return nameString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getNameString() {
|
||||
@@ -335,7 +335,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameString(@javax.annotation.Nullable String nameString) {
|
||||
this.nameString = nameString;
|
||||
@@ -352,7 +352,7 @@ public class XmlItem {
|
||||
* @return nameNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getNameNumber() {
|
||||
@@ -360,7 +360,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameNumber(@javax.annotation.Nullable BigDecimal nameNumber) {
|
||||
this.nameNumber = nameNumber;
|
||||
@@ -377,7 +377,7 @@ public class XmlItem {
|
||||
* @return nameInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getNameInteger() {
|
||||
@@ -385,7 +385,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameInteger(@javax.annotation.Nullable Integer nameInteger) {
|
||||
this.nameInteger = nameInteger;
|
||||
@@ -402,7 +402,7 @@ public class XmlItem {
|
||||
* @return nameBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getNameBoolean() {
|
||||
@@ -410,7 +410,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameBoolean(@javax.annotation.Nullable Boolean nameBoolean) {
|
||||
this.nameBoolean = nameBoolean;
|
||||
@@ -435,7 +435,7 @@ public class XmlItem {
|
||||
* @return nameArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getNameArray() {
|
||||
@@ -443,7 +443,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameArray(@javax.annotation.Nullable List<Integer> nameArray) {
|
||||
this.nameArray = nameArray;
|
||||
@@ -468,7 +468,7 @@ public class XmlItem {
|
||||
* @return nameWrappedArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getNameWrappedArray() {
|
||||
@@ -476,7 +476,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAME_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNameWrappedArray(@javax.annotation.Nullable List<Integer> nameWrappedArray) {
|
||||
this.nameWrappedArray = nameWrappedArray;
|
||||
@@ -493,7 +493,7 @@ public class XmlItem {
|
||||
* @return prefixString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPrefixString() {
|
||||
@@ -501,7 +501,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixString(@javax.annotation.Nullable String prefixString) {
|
||||
this.prefixString = prefixString;
|
||||
@@ -518,7 +518,7 @@ public class XmlItem {
|
||||
* @return prefixNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getPrefixNumber() {
|
||||
@@ -526,7 +526,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNumber(@javax.annotation.Nullable BigDecimal prefixNumber) {
|
||||
this.prefixNumber = prefixNumber;
|
||||
@@ -543,7 +543,7 @@ public class XmlItem {
|
||||
* @return prefixInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getPrefixInteger() {
|
||||
@@ -551,7 +551,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixInteger(@javax.annotation.Nullable Integer prefixInteger) {
|
||||
this.prefixInteger = prefixInteger;
|
||||
@@ -568,7 +568,7 @@ public class XmlItem {
|
||||
* @return prefixBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getPrefixBoolean() {
|
||||
@@ -576,7 +576,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixBoolean(@javax.annotation.Nullable Boolean prefixBoolean) {
|
||||
this.prefixBoolean = prefixBoolean;
|
||||
@@ -601,7 +601,7 @@ public class XmlItem {
|
||||
* @return prefixArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getPrefixArray() {
|
||||
@@ -609,7 +609,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixArray(@javax.annotation.Nullable List<Integer> prefixArray) {
|
||||
this.prefixArray = prefixArray;
|
||||
@@ -634,7 +634,7 @@ public class XmlItem {
|
||||
* @return prefixWrappedArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getPrefixWrappedArray() {
|
||||
@@ -642,7 +642,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixWrappedArray(@javax.annotation.Nullable List<Integer> prefixWrappedArray) {
|
||||
this.prefixWrappedArray = prefixWrappedArray;
|
||||
@@ -659,7 +659,7 @@ public class XmlItem {
|
||||
* @return namespaceString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getNamespaceString() {
|
||||
@@ -667,7 +667,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceString(@javax.annotation.Nullable String namespaceString) {
|
||||
this.namespaceString = namespaceString;
|
||||
@@ -684,7 +684,7 @@ public class XmlItem {
|
||||
* @return namespaceNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getNamespaceNumber() {
|
||||
@@ -692,7 +692,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceNumber(@javax.annotation.Nullable BigDecimal namespaceNumber) {
|
||||
this.namespaceNumber = namespaceNumber;
|
||||
@@ -709,7 +709,7 @@ public class XmlItem {
|
||||
* @return namespaceInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getNamespaceInteger() {
|
||||
@@ -717,7 +717,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceInteger(@javax.annotation.Nullable Integer namespaceInteger) {
|
||||
this.namespaceInteger = namespaceInteger;
|
||||
@@ -734,7 +734,7 @@ public class XmlItem {
|
||||
* @return namespaceBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getNamespaceBoolean() {
|
||||
@@ -742,7 +742,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceBoolean(@javax.annotation.Nullable Boolean namespaceBoolean) {
|
||||
this.namespaceBoolean = namespaceBoolean;
|
||||
@@ -767,7 +767,7 @@ public class XmlItem {
|
||||
* @return namespaceArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getNamespaceArray() {
|
||||
@@ -775,7 +775,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceArray(@javax.annotation.Nullable List<Integer> namespaceArray) {
|
||||
this.namespaceArray = namespaceArray;
|
||||
@@ -800,7 +800,7 @@ public class XmlItem {
|
||||
* @return namespaceWrappedArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getNamespaceWrappedArray() {
|
||||
@@ -808,7 +808,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setNamespaceWrappedArray(@javax.annotation.Nullable List<Integer> namespaceWrappedArray) {
|
||||
this.namespaceWrappedArray = namespaceWrappedArray;
|
||||
@@ -825,7 +825,7 @@ public class XmlItem {
|
||||
* @return prefixNsString
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public String getPrefixNsString() {
|
||||
@@ -833,7 +833,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_STRING, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsString(@javax.annotation.Nullable String prefixNsString) {
|
||||
this.prefixNsString = prefixNsString;
|
||||
@@ -850,7 +850,7 @@ public class XmlItem {
|
||||
* @return prefixNsNumber
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public BigDecimal getPrefixNsNumber() {
|
||||
@@ -858,7 +858,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_NUMBER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsNumber(@javax.annotation.Nullable BigDecimal prefixNsNumber) {
|
||||
this.prefixNsNumber = prefixNsNumber;
|
||||
@@ -875,7 +875,7 @@ public class XmlItem {
|
||||
* @return prefixNsInteger
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Integer getPrefixNsInteger() {
|
||||
@@ -883,7 +883,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_INTEGER, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsInteger(@javax.annotation.Nullable Integer prefixNsInteger) {
|
||||
this.prefixNsInteger = prefixNsInteger;
|
||||
@@ -900,7 +900,7 @@ public class XmlItem {
|
||||
* @return prefixNsBoolean
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public Boolean getPrefixNsBoolean() {
|
||||
@@ -908,7 +908,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_BOOLEAN, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsBoolean(@javax.annotation.Nullable Boolean prefixNsBoolean) {
|
||||
this.prefixNsBoolean = prefixNsBoolean;
|
||||
@@ -933,7 +933,7 @@ public class XmlItem {
|
||||
* @return prefixNsArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getPrefixNsArray() {
|
||||
@@ -941,7 +941,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsArray(@javax.annotation.Nullable List<Integer> prefixNsArray) {
|
||||
this.prefixNsArray = prefixNsArray;
|
||||
@@ -966,7 +966,7 @@ public class XmlItem {
|
||||
* @return prefixNsWrappedArray
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
|
||||
public List<Integer> getPrefixNsWrappedArray() {
|
||||
@@ -974,7 +974,7 @@ public class XmlItem {
|
||||
}
|
||||
|
||||
|
||||
@JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY)
|
||||
@JsonProperty(value = JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY, required = false)
|
||||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
|
||||
public void setPrefixNsWrappedArray(@javax.annotation.Nullable List<Integer> prefixNsWrappedArray) {
|
||||
this.prefixNsWrappedArray = prefixNsWrappedArray;
|
||||
|
||||
Reference in New Issue
Block a user