mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-10 22:22:52 +00:00
[Java] add nullable support to the clients (#3453)
* add nullable support, update samples * update samples
This commit is contained in:
@@ -39,7 +39,7 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -40,7 +40,7 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -79,7 +79,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapString
|
||||
* @return mapString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, String> getMapString() {
|
||||
return mapString;
|
||||
@@ -106,7 +106,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapNumber
|
||||
* @return mapNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, BigDecimal> getMapNumber() {
|
||||
return mapNumber;
|
||||
@@ -133,7 +133,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapInteger
|
||||
* @return mapInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Integer> getMapInteger() {
|
||||
return mapInteger;
|
||||
@@ -160,7 +160,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapBoolean
|
||||
* @return mapBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Boolean> getMapBoolean() {
|
||||
return mapBoolean;
|
||||
@@ -187,7 +187,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapArrayInteger
|
||||
* @return mapArrayInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, List<Integer>> getMapArrayInteger() {
|
||||
return mapArrayInteger;
|
||||
@@ -214,7 +214,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapArrayAnytype
|
||||
* @return mapArrayAnytype
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, List<Object>> getMapArrayAnytype() {
|
||||
return mapArrayAnytype;
|
||||
@@ -241,7 +241,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapMapString
|
||||
* @return mapMapString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Map<String, String>> getMapMapString() {
|
||||
return mapMapString;
|
||||
@@ -268,7 +268,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get mapMapAnytype
|
||||
* @return mapMapAnytype
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Map<String, Object>> getMapMapAnytype() {
|
||||
return mapMapAnytype;
|
||||
@@ -287,7 +287,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get anytype1
|
||||
* @return anytype1
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Object getAnytype1() {
|
||||
return anytype1;
|
||||
@@ -306,7 +306,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get anytype2
|
||||
* @return anytype2
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Object getAnytype2() {
|
||||
return anytype2;
|
||||
@@ -325,7 +325,7 @@ public class AdditionalPropertiesClass {
|
||||
* Get anytype3
|
||||
* @return anytype3
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Object getAnytype3() {
|
||||
return anytype3;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -40,7 +40,7 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -48,7 +48,6 @@ public class Animal {
|
||||
* Get className
|
||||
* @return className
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public String getClassName() {
|
||||
return className;
|
||||
@@ -67,7 +66,7 @@ public class Animal {
|
||||
* Get color
|
||||
* @return color
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getColor() {
|
||||
return color;
|
||||
|
||||
@@ -48,7 +48,7 @@ public class ArrayOfArrayOfNumberOnly {
|
||||
* Get arrayArrayNumber
|
||||
* @return arrayArrayNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<List<BigDecimal>> getArrayArrayNumber() {
|
||||
return arrayArrayNumber;
|
||||
|
||||
@@ -48,7 +48,7 @@ public class ArrayOfNumberOnly {
|
||||
* Get arrayNumber
|
||||
* @return arrayNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<BigDecimal> getArrayNumber() {
|
||||
return arrayNumber;
|
||||
|
||||
@@ -54,7 +54,7 @@ public class ArrayTest {
|
||||
* Get arrayOfString
|
||||
* @return arrayOfString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<String> getArrayOfString() {
|
||||
return arrayOfString;
|
||||
@@ -81,7 +81,7 @@ public class ArrayTest {
|
||||
* Get arrayArrayOfInteger
|
||||
* @return arrayArrayOfInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<List<Long>> getArrayArrayOfInteger() {
|
||||
return arrayArrayOfInteger;
|
||||
@@ -108,7 +108,7 @@ public class ArrayTest {
|
||||
* Get arrayArrayOfModel
|
||||
* @return arrayArrayOfModel
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
|
||||
return arrayArrayOfModel;
|
||||
|
||||
@@ -52,7 +52,7 @@ public class Capitalization {
|
||||
* Get smallCamel
|
||||
* @return smallCamel
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getSmallCamel() {
|
||||
return smallCamel;
|
||||
@@ -71,7 +71,7 @@ public class Capitalization {
|
||||
* Get capitalCamel
|
||||
* @return capitalCamel
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getCapitalCamel() {
|
||||
return capitalCamel;
|
||||
@@ -90,7 +90,7 @@ public class Capitalization {
|
||||
* Get smallSnake
|
||||
* @return smallSnake
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getSmallSnake() {
|
||||
return smallSnake;
|
||||
@@ -109,7 +109,7 @@ public class Capitalization {
|
||||
* Get capitalSnake
|
||||
* @return capitalSnake
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getCapitalSnake() {
|
||||
return capitalSnake;
|
||||
@@ -128,7 +128,7 @@ public class Capitalization {
|
||||
* Get scAETHFlowPoints
|
||||
* @return scAETHFlowPoints
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getScAETHFlowPoints() {
|
||||
return scAETHFlowPoints;
|
||||
@@ -147,7 +147,7 @@ public class Capitalization {
|
||||
* Name of the pet
|
||||
* @return ATT_NAME
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "Name of the pet ")
|
||||
public String getATTNAME() {
|
||||
return ATT_NAME;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class Cat extends Animal {
|
||||
* Get declawed
|
||||
* @return declawed
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Boolean isDeclawed() {
|
||||
return declawed;
|
||||
|
||||
@@ -37,7 +37,7 @@ public class CatAllOf {
|
||||
* Get declawed
|
||||
* @return declawed
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Boolean isDeclawed() {
|
||||
return declawed;
|
||||
|
||||
@@ -40,7 +40,7 @@ public class Category {
|
||||
* Get id
|
||||
* @return id
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -59,7 +59,6 @@ public class Category {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -38,7 +38,7 @@ public class ClassModel {
|
||||
* Get propertyClass
|
||||
* @return propertyClass
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getPropertyClass() {
|
||||
return propertyClass;
|
||||
|
||||
@@ -37,7 +37,7 @@ public class Client {
|
||||
* Get client
|
||||
* @return client
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getClient() {
|
||||
return client;
|
||||
|
||||
@@ -39,7 +39,7 @@ public class Dog extends Animal {
|
||||
* Get breed
|
||||
* @return breed
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getBreed() {
|
||||
return breed;
|
||||
|
||||
@@ -37,7 +37,7 @@ public class DogAllOf {
|
||||
* Get breed
|
||||
* @return breed
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getBreed() {
|
||||
return breed;
|
||||
|
||||
@@ -112,7 +112,7 @@ public class EnumArrays {
|
||||
* Get justSymbol
|
||||
* @return justSymbol
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public JustSymbolEnum getJustSymbol() {
|
||||
return justSymbol;
|
||||
@@ -139,7 +139,7 @@ public class EnumArrays {
|
||||
* Get arrayEnum
|
||||
* @return arrayEnum
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<ArrayEnumEnum> getArrayEnum() {
|
||||
return arrayEnum;
|
||||
|
||||
@@ -194,7 +194,7 @@ public class EnumTest {
|
||||
* Get enumString
|
||||
* @return enumString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public EnumStringEnum getEnumString() {
|
||||
return enumString;
|
||||
@@ -213,7 +213,6 @@ public class EnumTest {
|
||||
* Get enumStringRequired
|
||||
* @return enumStringRequired
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public EnumStringRequiredEnum getEnumStringRequired() {
|
||||
return enumStringRequired;
|
||||
@@ -232,7 +231,7 @@ public class EnumTest {
|
||||
* Get enumInteger
|
||||
* @return enumInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public EnumIntegerEnum getEnumInteger() {
|
||||
return enumInteger;
|
||||
@@ -251,7 +250,7 @@ public class EnumTest {
|
||||
* Get enumNumber
|
||||
* @return enumNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public EnumNumberEnum getEnumNumber() {
|
||||
return enumNumber;
|
||||
@@ -270,7 +269,7 @@ public class EnumTest {
|
||||
* Get outerEnum
|
||||
* @return outerEnum
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public OuterEnum getOuterEnum() {
|
||||
return outerEnum;
|
||||
|
||||
@@ -42,7 +42,7 @@ public class FileSchemaTestClass {
|
||||
* Get file
|
||||
* @return file
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public java.io.File getFile() {
|
||||
return file;
|
||||
@@ -69,7 +69,7 @@ public class FileSchemaTestClass {
|
||||
* Get files
|
||||
* @return files
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<java.io.File> getFiles() {
|
||||
return files;
|
||||
|
||||
@@ -80,7 +80,7 @@ public class FormatTest {
|
||||
* maximum: 100
|
||||
* @return integer
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getInteger() {
|
||||
return integer;
|
||||
@@ -101,7 +101,7 @@ public class FormatTest {
|
||||
* maximum: 200
|
||||
* @return int32
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getInt32() {
|
||||
return int32;
|
||||
@@ -120,7 +120,7 @@ public class FormatTest {
|
||||
* Get int64
|
||||
* @return int64
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getInt64() {
|
||||
return int64;
|
||||
@@ -141,7 +141,6 @@ public class FormatTest {
|
||||
* maximum: 543.2
|
||||
* @return number
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public BigDecimal getNumber() {
|
||||
return number;
|
||||
@@ -162,7 +161,7 @@ public class FormatTest {
|
||||
* maximum: 987.6
|
||||
* @return _float
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Float getFloat() {
|
||||
return _float;
|
||||
@@ -183,7 +182,7 @@ public class FormatTest {
|
||||
* maximum: 123.4
|
||||
* @return _double
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Double getDouble() {
|
||||
return _double;
|
||||
@@ -202,7 +201,7 @@ public class FormatTest {
|
||||
* Get string
|
||||
* @return string
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getString() {
|
||||
return string;
|
||||
@@ -221,7 +220,6 @@ public class FormatTest {
|
||||
* Get _byte
|
||||
* @return _byte
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public byte[] getByte() {
|
||||
return _byte;
|
||||
@@ -240,7 +238,7 @@ public class FormatTest {
|
||||
* Get binary
|
||||
* @return binary
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public File getBinary() {
|
||||
return binary;
|
||||
@@ -259,7 +257,6 @@ public class FormatTest {
|
||||
* Get date
|
||||
* @return date
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public LocalDate getDate() {
|
||||
return date;
|
||||
@@ -278,7 +275,7 @@ public class FormatTest {
|
||||
* Get dateTime
|
||||
* @return dateTime
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public OffsetDateTime getDateTime() {
|
||||
return dateTime;
|
||||
@@ -297,7 +294,7 @@ public class FormatTest {
|
||||
* Get uuid
|
||||
* @return uuid
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
|
||||
public UUID getUuid() {
|
||||
return uuid;
|
||||
@@ -316,7 +313,6 @@ public class FormatTest {
|
||||
* Get password
|
||||
* @return password
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public String getPassword() {
|
||||
return password;
|
||||
|
||||
@@ -35,7 +35,7 @@ public class HasOnlyReadOnly {
|
||||
* Get bar
|
||||
* @return bar
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getBar() {
|
||||
return bar;
|
||||
@@ -45,7 +45,7 @@ public class HasOnlyReadOnly {
|
||||
* Get foo
|
||||
* @return foo
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getFoo() {
|
||||
return foo;
|
||||
|
||||
@@ -92,7 +92,7 @@ public class MapTest {
|
||||
* Get mapMapOfString
|
||||
* @return mapMapOfString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Map<String, String>> getMapMapOfString() {
|
||||
return mapMapOfString;
|
||||
@@ -119,7 +119,7 @@ public class MapTest {
|
||||
* Get mapOfEnumString
|
||||
* @return mapOfEnumString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, InnerEnum> getMapOfEnumString() {
|
||||
return mapOfEnumString;
|
||||
@@ -146,7 +146,7 @@ public class MapTest {
|
||||
* Get directMap
|
||||
* @return directMap
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Boolean> getDirectMap() {
|
||||
return directMap;
|
||||
@@ -173,7 +173,7 @@ public class MapTest {
|
||||
* Get indirectMap
|
||||
* @return indirectMap
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Boolean> getIndirectMap() {
|
||||
return indirectMap;
|
||||
|
||||
@@ -49,7 +49,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* Get uuid
|
||||
* @return uuid
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public UUID getUuid() {
|
||||
return uuid;
|
||||
@@ -68,7 +68,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* Get dateTime
|
||||
* @return dateTime
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public OffsetDateTime getDateTime() {
|
||||
return dateTime;
|
||||
@@ -95,7 +95,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||
* Get map
|
||||
* @return map
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Map<String, Animal> getMap() {
|
||||
return map;
|
||||
|
||||
@@ -41,7 +41,7 @@ public class Model200Response {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getName() {
|
||||
return name;
|
||||
@@ -60,7 +60,7 @@ public class Model200Response {
|
||||
* Get propertyClass
|
||||
* @return propertyClass
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getPropertyClass() {
|
||||
return propertyClass;
|
||||
|
||||
@@ -43,7 +43,7 @@ public class ModelApiResponse {
|
||||
* Get code
|
||||
* @return code
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getCode() {
|
||||
return code;
|
||||
@@ -62,7 +62,7 @@ public class ModelApiResponse {
|
||||
* Get type
|
||||
* @return type
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getType() {
|
||||
return type;
|
||||
@@ -81,7 +81,7 @@ public class ModelApiResponse {
|
||||
* Get message
|
||||
* @return message
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
|
||||
@@ -38,7 +38,7 @@ public class ModelReturn {
|
||||
* Get _return
|
||||
* @return _return
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getReturn() {
|
||||
return _return;
|
||||
|
||||
@@ -47,7 +47,6 @@ public class Name {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public Integer getName() {
|
||||
return name;
|
||||
@@ -61,7 +60,7 @@ public class Name {
|
||||
* Get snakeCase
|
||||
* @return snakeCase
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getSnakeCase() {
|
||||
return snakeCase;
|
||||
@@ -76,7 +75,7 @@ public class Name {
|
||||
* Get property
|
||||
* @return property
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getProperty() {
|
||||
return property;
|
||||
@@ -90,7 +89,7 @@ public class Name {
|
||||
* Get _123number
|
||||
* @return _123number
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer get123number() {
|
||||
return _123number;
|
||||
|
||||
@@ -38,7 +38,7 @@ public class NumberOnly {
|
||||
* Get justNumber
|
||||
* @return justNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public BigDecimal getJustNumber() {
|
||||
return justNumber;
|
||||
|
||||
@@ -90,7 +90,7 @@ public class Order {
|
||||
* Get id
|
||||
* @return id
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -109,7 +109,7 @@ public class Order {
|
||||
* Get petId
|
||||
* @return petId
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getPetId() {
|
||||
return petId;
|
||||
@@ -128,7 +128,7 @@ public class Order {
|
||||
* Get quantity
|
||||
* @return quantity
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Integer getQuantity() {
|
||||
return quantity;
|
||||
@@ -147,7 +147,7 @@ public class Order {
|
||||
* Get shipDate
|
||||
* @return shipDate
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public OffsetDateTime getShipDate() {
|
||||
return shipDate;
|
||||
@@ -166,7 +166,7 @@ public class Order {
|
||||
* Order Status
|
||||
* @return status
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "Order Status")
|
||||
public StatusEnum getStatus() {
|
||||
return status;
|
||||
@@ -185,7 +185,7 @@ public class Order {
|
||||
* Get complete
|
||||
* @return complete
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Boolean isComplete() {
|
||||
return complete;
|
||||
|
||||
@@ -44,7 +44,7 @@ public class OuterComposite {
|
||||
* Get myNumber
|
||||
* @return myNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public BigDecimal getMyNumber() {
|
||||
return myNumber;
|
||||
@@ -63,7 +63,7 @@ public class OuterComposite {
|
||||
* Get myString
|
||||
* @return myString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getMyString() {
|
||||
return myString;
|
||||
@@ -82,7 +82,7 @@ public class OuterComposite {
|
||||
* Get myBoolean
|
||||
* @return myBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Boolean isMyBoolean() {
|
||||
return myBoolean;
|
||||
|
||||
@@ -93,7 +93,7 @@ public class Pet {
|
||||
* Get id
|
||||
* @return id
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -112,7 +112,7 @@ public class Pet {
|
||||
* Get category
|
||||
* @return category
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Category getCategory() {
|
||||
return category;
|
||||
@@ -131,7 +131,6 @@ public class Pet {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "doggie", required = true, value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
@@ -155,7 +154,6 @@ public class Pet {
|
||||
* Get photoUrls
|
||||
* @return photoUrls
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public List<String> getPhotoUrls() {
|
||||
return photoUrls;
|
||||
@@ -182,7 +180,7 @@ public class Pet {
|
||||
* Get tags
|
||||
* @return tags
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Tag> getTags() {
|
||||
return tags;
|
||||
@@ -201,7 +199,7 @@ public class Pet {
|
||||
* pet status in the store
|
||||
* @return status
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "pet status in the store")
|
||||
public StatusEnum getStatus() {
|
||||
return status;
|
||||
|
||||
@@ -35,7 +35,7 @@ public class ReadOnlyFirst {
|
||||
* Get bar
|
||||
* @return bar
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getBar() {
|
||||
return bar;
|
||||
@@ -50,7 +50,7 @@ public class ReadOnlyFirst {
|
||||
* Get baz
|
||||
* @return baz
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getBaz() {
|
||||
return baz;
|
||||
|
||||
@@ -37,7 +37,7 @@ public class SpecialModelName {
|
||||
* Get $specialPropertyName
|
||||
* @return $specialPropertyName
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long get$SpecialPropertyName() {
|
||||
return $specialPropertyName;
|
||||
|
||||
@@ -40,7 +40,7 @@ public class Tag {
|
||||
* Get id
|
||||
* @return id
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -59,7 +59,7 @@ public class Tag {
|
||||
* Get name
|
||||
* @return name
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getName() {
|
||||
return name;
|
||||
|
||||
@@ -52,7 +52,6 @@ public class TypeHolderDefault {
|
||||
* Get stringItem
|
||||
* @return stringItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public String getStringItem() {
|
||||
return stringItem;
|
||||
@@ -71,7 +70,6 @@ public class TypeHolderDefault {
|
||||
* Get numberItem
|
||||
* @return numberItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public BigDecimal getNumberItem() {
|
||||
return numberItem;
|
||||
@@ -90,7 +88,6 @@ public class TypeHolderDefault {
|
||||
* Get integerItem
|
||||
* @return integerItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public Integer getIntegerItem() {
|
||||
return integerItem;
|
||||
@@ -109,7 +106,6 @@ public class TypeHolderDefault {
|
||||
* Get boolItem
|
||||
* @return boolItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public Boolean isBoolItem() {
|
||||
return boolItem;
|
||||
@@ -133,7 +129,6 @@ public class TypeHolderDefault {
|
||||
* Get arrayItem
|
||||
* @return arrayItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(required = true, value = "")
|
||||
public List<Integer> getArrayItem() {
|
||||
return arrayItem;
|
||||
|
||||
@@ -52,7 +52,6 @@ public class TypeHolderExample {
|
||||
* Get stringItem
|
||||
* @return stringItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "what", required = true, value = "")
|
||||
public String getStringItem() {
|
||||
return stringItem;
|
||||
@@ -71,7 +70,6 @@ public class TypeHolderExample {
|
||||
* Get numberItem
|
||||
* @return numberItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "1.234", required = true, value = "")
|
||||
public BigDecimal getNumberItem() {
|
||||
return numberItem;
|
||||
@@ -90,7 +88,6 @@ public class TypeHolderExample {
|
||||
* Get integerItem
|
||||
* @return integerItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "-2", required = true, value = "")
|
||||
public Integer getIntegerItem() {
|
||||
return integerItem;
|
||||
@@ -109,7 +106,6 @@ public class TypeHolderExample {
|
||||
* Get boolItem
|
||||
* @return boolItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "true", required = true, value = "")
|
||||
public Boolean isBoolItem() {
|
||||
return boolItem;
|
||||
@@ -133,7 +129,6 @@ public class TypeHolderExample {
|
||||
* Get arrayItem
|
||||
* @return arrayItem
|
||||
**/
|
||||
|
||||
@ApiModelProperty(example = "[0, 1, 2, 3]", required = true, value = "")
|
||||
public List<Integer> getArrayItem() {
|
||||
return arrayItem;
|
||||
|
||||
@@ -58,7 +58,7 @@ public class User {
|
||||
* Get id
|
||||
* @return id
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -77,7 +77,7 @@ public class User {
|
||||
* Get username
|
||||
* @return username
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getUsername() {
|
||||
return username;
|
||||
@@ -96,7 +96,7 @@ public class User {
|
||||
* Get firstName
|
||||
* @return firstName
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getFirstName() {
|
||||
return firstName;
|
||||
@@ -115,7 +115,7 @@ public class User {
|
||||
* Get lastName
|
||||
* @return lastName
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getLastName() {
|
||||
return lastName;
|
||||
@@ -134,7 +134,7 @@ public class User {
|
||||
* Get email
|
||||
* @return email
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getEmail() {
|
||||
return email;
|
||||
@@ -153,7 +153,7 @@ public class User {
|
||||
* Get password
|
||||
* @return password
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getPassword() {
|
||||
return password;
|
||||
@@ -172,7 +172,7 @@ public class User {
|
||||
* Get phone
|
||||
* @return phone
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
@@ -191,7 +191,7 @@ public class User {
|
||||
* User Status
|
||||
* @return userStatus
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "User Status")
|
||||
public Integer getUserStatus() {
|
||||
return userStatus;
|
||||
|
||||
@@ -124,7 +124,7 @@ public class XmlItem {
|
||||
* Get attributeString
|
||||
* @return attributeString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "string", value = "")
|
||||
public String getAttributeString() {
|
||||
return attributeString;
|
||||
@@ -143,7 +143,7 @@ public class XmlItem {
|
||||
* Get attributeNumber
|
||||
* @return attributeNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "1.234", value = "")
|
||||
public BigDecimal getAttributeNumber() {
|
||||
return attributeNumber;
|
||||
@@ -162,7 +162,7 @@ public class XmlItem {
|
||||
* Get attributeInteger
|
||||
* @return attributeInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "-2", value = "")
|
||||
public Integer getAttributeInteger() {
|
||||
return attributeInteger;
|
||||
@@ -181,7 +181,7 @@ public class XmlItem {
|
||||
* Get attributeBoolean
|
||||
* @return attributeBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "true", value = "")
|
||||
public Boolean isAttributeBoolean() {
|
||||
return attributeBoolean;
|
||||
@@ -208,7 +208,7 @@ public class XmlItem {
|
||||
* Get wrappedArray
|
||||
* @return wrappedArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getWrappedArray() {
|
||||
return wrappedArray;
|
||||
@@ -227,7 +227,7 @@ public class XmlItem {
|
||||
* Get nameString
|
||||
* @return nameString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "string", value = "")
|
||||
public String getNameString() {
|
||||
return nameString;
|
||||
@@ -246,7 +246,7 @@ public class XmlItem {
|
||||
* Get nameNumber
|
||||
* @return nameNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "1.234", value = "")
|
||||
public BigDecimal getNameNumber() {
|
||||
return nameNumber;
|
||||
@@ -265,7 +265,7 @@ public class XmlItem {
|
||||
* Get nameInteger
|
||||
* @return nameInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "-2", value = "")
|
||||
public Integer getNameInteger() {
|
||||
return nameInteger;
|
||||
@@ -284,7 +284,7 @@ public class XmlItem {
|
||||
* Get nameBoolean
|
||||
* @return nameBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "true", value = "")
|
||||
public Boolean isNameBoolean() {
|
||||
return nameBoolean;
|
||||
@@ -311,7 +311,7 @@ public class XmlItem {
|
||||
* Get nameArray
|
||||
* @return nameArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getNameArray() {
|
||||
return nameArray;
|
||||
@@ -338,7 +338,7 @@ public class XmlItem {
|
||||
* Get nameWrappedArray
|
||||
* @return nameWrappedArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getNameWrappedArray() {
|
||||
return nameWrappedArray;
|
||||
@@ -357,7 +357,7 @@ public class XmlItem {
|
||||
* Get prefixString
|
||||
* @return prefixString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "string", value = "")
|
||||
public String getPrefixString() {
|
||||
return prefixString;
|
||||
@@ -376,7 +376,7 @@ public class XmlItem {
|
||||
* Get prefixNumber
|
||||
* @return prefixNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "1.234", value = "")
|
||||
public BigDecimal getPrefixNumber() {
|
||||
return prefixNumber;
|
||||
@@ -395,7 +395,7 @@ public class XmlItem {
|
||||
* Get prefixInteger
|
||||
* @return prefixInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "-2", value = "")
|
||||
public Integer getPrefixInteger() {
|
||||
return prefixInteger;
|
||||
@@ -414,7 +414,7 @@ public class XmlItem {
|
||||
* Get prefixBoolean
|
||||
* @return prefixBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "true", value = "")
|
||||
public Boolean isPrefixBoolean() {
|
||||
return prefixBoolean;
|
||||
@@ -441,7 +441,7 @@ public class XmlItem {
|
||||
* Get prefixArray
|
||||
* @return prefixArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getPrefixArray() {
|
||||
return prefixArray;
|
||||
@@ -468,7 +468,7 @@ public class XmlItem {
|
||||
* Get prefixWrappedArray
|
||||
* @return prefixWrappedArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getPrefixWrappedArray() {
|
||||
return prefixWrappedArray;
|
||||
@@ -487,7 +487,7 @@ public class XmlItem {
|
||||
* Get namespaceString
|
||||
* @return namespaceString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "string", value = "")
|
||||
public String getNamespaceString() {
|
||||
return namespaceString;
|
||||
@@ -506,7 +506,7 @@ public class XmlItem {
|
||||
* Get namespaceNumber
|
||||
* @return namespaceNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "1.234", value = "")
|
||||
public BigDecimal getNamespaceNumber() {
|
||||
return namespaceNumber;
|
||||
@@ -525,7 +525,7 @@ public class XmlItem {
|
||||
* Get namespaceInteger
|
||||
* @return namespaceInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "-2", value = "")
|
||||
public Integer getNamespaceInteger() {
|
||||
return namespaceInteger;
|
||||
@@ -544,7 +544,7 @@ public class XmlItem {
|
||||
* Get namespaceBoolean
|
||||
* @return namespaceBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "true", value = "")
|
||||
public Boolean isNamespaceBoolean() {
|
||||
return namespaceBoolean;
|
||||
@@ -571,7 +571,7 @@ public class XmlItem {
|
||||
* Get namespaceArray
|
||||
* @return namespaceArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getNamespaceArray() {
|
||||
return namespaceArray;
|
||||
@@ -598,7 +598,7 @@ public class XmlItem {
|
||||
* Get namespaceWrappedArray
|
||||
* @return namespaceWrappedArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getNamespaceWrappedArray() {
|
||||
return namespaceWrappedArray;
|
||||
@@ -617,7 +617,7 @@ public class XmlItem {
|
||||
* Get prefixNsString
|
||||
* @return prefixNsString
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "string", value = "")
|
||||
public String getPrefixNsString() {
|
||||
return prefixNsString;
|
||||
@@ -636,7 +636,7 @@ public class XmlItem {
|
||||
* Get prefixNsNumber
|
||||
* @return prefixNsNumber
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "1.234", value = "")
|
||||
public BigDecimal getPrefixNsNumber() {
|
||||
return prefixNsNumber;
|
||||
@@ -655,7 +655,7 @@ public class XmlItem {
|
||||
* Get prefixNsInteger
|
||||
* @return prefixNsInteger
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "-2", value = "")
|
||||
public Integer getPrefixNsInteger() {
|
||||
return prefixNsInteger;
|
||||
@@ -674,7 +674,7 @@ public class XmlItem {
|
||||
* Get prefixNsBoolean
|
||||
* @return prefixNsBoolean
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(example = "true", value = "")
|
||||
public Boolean isPrefixNsBoolean() {
|
||||
return prefixNsBoolean;
|
||||
@@ -701,7 +701,7 @@ public class XmlItem {
|
||||
* Get prefixNsArray
|
||||
* @return prefixNsArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getPrefixNsArray() {
|
||||
return prefixNsArray;
|
||||
@@ -728,7 +728,7 @@ public class XmlItem {
|
||||
* Get prefixNsWrappedArray
|
||||
* @return prefixNsWrappedArray
|
||||
**/
|
||||
@javax.annotation.Nullable
|
||||
@javax.annotation.Nullable
|
||||
@ApiModelProperty(value = "")
|
||||
public List<Integer> getPrefixNsWrappedArray() {
|
||||
return prefixNsWrappedArray;
|
||||
|
||||
Reference in New Issue
Block a user