[JAVA] Okhttp-gson: blank line between annotations and method signature (#15430)

* Remove extra blank line

* Regenerate samples
This commit is contained in:
Beppe Catanese
2023-05-08 08:39:46 +02:00
committed by GitHub
parent b4eb7071e4
commit 3d2ec72461
187 changed files with 1 additions and 612 deletions

View File

@@ -249,8 +249,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}} {{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}}
@JsonIgnore @JsonIgnore
{{/vendorExtensions.x-is-jackson-optional-nullable}} {{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.x-is-jackson-optional-nullable}} {{^vendorExtensions.x-is-jackson-optional-nullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.x-is-jackson-optional-nullable}} public {{{datatypeWithEnum}}} {{getter}}() {
public {{{datatypeWithEnum}}} {{getter}}() {
{{#vendorExtensions.x-is-jackson-optional-nullable}} {{#vendorExtensions.x-is-jackson-optional-nullable}}
{{#isReadOnly}}{{! A readonly attribute doesn't have setter => jackson will set null directly if explicitly returned by API, so make sure we have an empty JsonNullable}} {{#isReadOnly}}{{! A readonly attribute doesn't have setter => jackson will set null directly if explicitly returned by API, so make sure we have an empty JsonNullable}}
if ({{name}} == null) { if ({{name}} == null) {

View File

@@ -74,7 +74,6 @@ public class Bird {
* @return size * @return size
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
} }
@@ -96,7 +95,6 @@ public class Bird {
* @return color * @return color
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Category {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -82,7 +82,6 @@ public class DataQuery extends Query {
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSuffix() { public String getSuffix() {
return suffix; return suffix;
} }
@@ -104,7 +103,6 @@ public class DataQuery extends Query {
* @return text * @return text
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getText() { public String getText() {
return text; return text;
} }
@@ -126,7 +124,6 @@ public class DataQuery extends Query {
* @return date * @return date
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDate() { public OffsetDateTime getDate() {
return date; return date;
} }

View File

@@ -79,7 +79,6 @@ public class DataQueryAllOf {
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSuffix() { public String getSuffix() {
return suffix; return suffix;
} }
@@ -101,7 +100,6 @@ public class DataQueryAllOf {
* @return text * @return text
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getText() { public String getText() {
return text; return text;
} }
@@ -123,7 +121,6 @@ public class DataQueryAllOf {
* @return date * @return date
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDate() { public OffsetDateTime getDate() {
return date; return date;
} }

View File

@@ -159,7 +159,6 @@ public class DefaultValue {
* @return arrayStringEnumRefDefault * @return arrayStringEnumRefDefault
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<StringEnumRef> getArrayStringEnumRefDefault() { public List<StringEnumRef> getArrayStringEnumRefDefault() {
return arrayStringEnumRefDefault; return arrayStringEnumRefDefault;
} }
@@ -189,7 +188,6 @@ public class DefaultValue {
* @return arrayStringEnumDefault * @return arrayStringEnumDefault
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() { public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() {
return arrayStringEnumDefault; return arrayStringEnumDefault;
} }
@@ -219,7 +217,6 @@ public class DefaultValue {
* @return arrayStringDefault * @return arrayStringDefault
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayStringDefault() { public List<String> getArrayStringDefault() {
return arrayStringDefault; return arrayStringDefault;
} }
@@ -249,7 +246,6 @@ public class DefaultValue {
* @return arrayIntegerDefault * @return arrayIntegerDefault
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getArrayIntegerDefault() { public List<Integer> getArrayIntegerDefault() {
return arrayIntegerDefault; return arrayIntegerDefault;
} }
@@ -279,7 +275,6 @@ public class DefaultValue {
* @return arrayString * @return arrayString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayString() { public List<String> getArrayString() {
return arrayString; return arrayString;
} }
@@ -309,7 +304,6 @@ public class DefaultValue {
* @return arrayStringNullable * @return arrayStringNullable
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayStringNullable() { public List<String> getArrayStringNullable() {
return arrayStringNullable; return arrayStringNullable;
} }
@@ -339,7 +333,6 @@ public class DefaultValue {
* @return arrayStringExtensionNullable * @return arrayStringExtensionNullable
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayStringExtensionNullable() { public List<String> getArrayStringExtensionNullable() {
return arrayStringExtensionNullable; return arrayStringExtensionNullable;
} }
@@ -361,7 +354,6 @@ public class DefaultValue {
* @return stringNullable * @return stringNullable
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getStringNullable() { public String getStringNullable() {
return stringNullable; return stringNullable;
} }

View File

@@ -79,7 +79,6 @@ public class NumberPropertiesOnly {
* @return number * @return number
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getNumber() { public BigDecimal getNumber() {
return number; return number;
} }
@@ -101,7 +100,6 @@ public class NumberPropertiesOnly {
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Float getFloat() { public Float getFloat() {
return _float; return _float;
} }
@@ -125,7 +123,6 @@ public class NumberPropertiesOnly {
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Double getDouble() { public Double getDouble() {
return _double; return _double;
} }

View File

@@ -143,7 +143,6 @@ public class Pet {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -165,7 +164,6 @@ public class Pet {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }
@@ -187,7 +185,6 @@ public class Pet {
* @return category * @return category
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
} }
@@ -217,7 +214,6 @@ public class Pet {
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public List<String> getPhotoUrls() { public List<String> getPhotoUrls() {
return photoUrls; return photoUrls;
} }
@@ -247,7 +243,6 @@ public class Pet {
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
} }
@@ -269,7 +264,6 @@ public class Pet {
* @return status * @return status
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }

View File

@@ -125,7 +125,6 @@ public class Query {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -155,7 +154,6 @@ public class Query {
* @return outcomes * @return outcomes
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<OutcomesEnum> getOutcomes() { public List<OutcomesEnum> getOutcomes() {
return outcomes; return outcomes;
} }

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Tag {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -82,7 +82,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return size * @return size
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
} }
@@ -104,7 +103,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return color * @return color
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }
@@ -126,7 +124,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -148,7 +145,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -80,7 +80,6 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* @return values * @return values
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getValues() { public List<String> getValues() {
return values; return values;
} }

View File

@@ -131,7 +131,6 @@ public class SomeObj {
* @return $type * @return $type
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public TypeEnum get$Type() { public TypeEnum get$Type() {
return $type; return $type;
} }
@@ -153,7 +152,6 @@ public class SomeObj {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -175,7 +173,6 @@ public class SomeObj {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }
@@ -197,7 +194,6 @@ public class SomeObj {
* @return active * @return active
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getActive() { public Boolean getActive() {
return active; return active;
} }
@@ -219,7 +215,6 @@ public class SomeObj {
* @return type * @return type
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getType() { public String getType() {
return type; return type;
} }

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Category {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code * @return code
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getCode() { public Integer getCode() {
return code; return code;
} }
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type * @return type
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getType() { public String getType() {
return type; return type;
} }
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message * @return message
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getMessage() { public String getMessage() {
return message; return message;
} }

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -162,7 +161,6 @@ public class Order {
* @return petId * @return petId
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getPetId() { public Long getPetId() {
return petId; return petId;
} }
@@ -184,7 +182,6 @@ public class Order {
* @return quantity * @return quantity
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getQuantity() { public Integer getQuantity() {
return quantity; return quantity;
} }
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate * @return shipDate
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getShipDate() { public OffsetDateTime getShipDate() {
return shipDate; return shipDate;
} }
@@ -228,7 +224,6 @@ public class Order {
* @return status * @return status
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }
@@ -250,7 +245,6 @@ public class Order {
* @return complete * @return complete
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getComplete() { public Boolean getComplete() {
return complete; return complete;
} }

View File

@@ -144,7 +144,6 @@ public class Pet {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -166,7 +165,6 @@ public class Pet {
* @return category * @return category
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
} }
@@ -188,7 +186,6 @@ public class Pet {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }
@@ -218,7 +215,6 @@ public class Pet {
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public List<String> getPhotoUrls() { public List<String> getPhotoUrls() {
return photoUrls; return photoUrls;
} }
@@ -248,7 +244,6 @@ public class Pet {
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
} }
@@ -273,7 +268,6 @@ public class Pet {
**/ **/
@Deprecated @Deprecated
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Tag {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -98,7 +98,6 @@ public class User {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -120,7 +119,6 @@ public class User {
* @return username * @return username
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getUsername() { public String getUsername() {
return username; return username;
} }
@@ -142,7 +140,6 @@ public class User {
* @return firstName * @return firstName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getFirstName() { public String getFirstName() {
return firstName; return firstName;
} }
@@ -164,7 +161,6 @@ public class User {
* @return lastName * @return lastName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getLastName() { public String getLastName() {
return lastName; return lastName;
} }
@@ -186,7 +182,6 @@ public class User {
* @return email * @return email
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getEmail() { public String getEmail() {
return email; return email;
} }
@@ -208,7 +203,6 @@ public class User {
* @return password * @return password
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPassword() { public String getPassword() {
return password; return password;
} }
@@ -230,7 +224,6 @@ public class User {
* @return phone * @return phone
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPhone() { public String getPhone() {
return phone; return phone;
} }
@@ -252,7 +245,6 @@ public class User {
* @return userStatus * @return userStatus
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getUserStatus() { public Integer getUserStatus() {
return userStatus; return userStatus;
} }

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesAnyType {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesArray {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesBoolean {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -122,7 +122,6 @@ public class AdditionalPropertiesClass {
* @return mapString * @return mapString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, String> getMapString() { public Map<String, String> getMapString() {
return mapString; return mapString;
} }
@@ -152,7 +151,6 @@ public class AdditionalPropertiesClass {
* @return mapNumber * @return mapNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, BigDecimal> getMapNumber() { public Map<String, BigDecimal> getMapNumber() {
return mapNumber; return mapNumber;
} }
@@ -182,7 +180,6 @@ public class AdditionalPropertiesClass {
* @return mapInteger * @return mapInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Integer> getMapInteger() { public Map<String, Integer> getMapInteger() {
return mapInteger; return mapInteger;
} }
@@ -212,7 +209,6 @@ public class AdditionalPropertiesClass {
* @return mapBoolean * @return mapBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getMapBoolean() { public Map<String, Boolean> getMapBoolean() {
return mapBoolean; return mapBoolean;
} }
@@ -242,7 +238,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayInteger * @return mapArrayInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, List<Integer>> getMapArrayInteger() { public Map<String, List<Integer>> getMapArrayInteger() {
return mapArrayInteger; return mapArrayInteger;
} }
@@ -272,7 +267,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayAnytype * @return mapArrayAnytype
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, List<Object>> getMapArrayAnytype() { public Map<String, List<Object>> getMapArrayAnytype() {
return mapArrayAnytype; return mapArrayAnytype;
} }
@@ -302,7 +296,6 @@ public class AdditionalPropertiesClass {
* @return mapMapString * @return mapMapString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapString() { public Map<String, Map<String, String>> getMapMapString() {
return mapMapString; return mapMapString;
} }
@@ -332,7 +325,6 @@ public class AdditionalPropertiesClass {
* @return mapMapAnytype * @return mapMapAnytype
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, Object>> getMapMapAnytype() { public Map<String, Map<String, Object>> getMapMapAnytype() {
return mapMapAnytype; return mapMapAnytype;
} }
@@ -354,7 +346,6 @@ public class AdditionalPropertiesClass {
* @return anytype1 * @return anytype1
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype1() { public Object getAnytype1() {
return anytype1; return anytype1;
} }
@@ -376,7 +367,6 @@ public class AdditionalPropertiesClass {
* @return anytype2 * @return anytype2
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype2() { public Object getAnytype2() {
return anytype2; return anytype2;
} }
@@ -398,7 +388,6 @@ public class AdditionalPropertiesClass {
* @return anytype3 * @return anytype3
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype3() { public Object getAnytype3() {
return anytype3; return anytype3;
} }

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesInteger {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesNumber {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesObject {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesString {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -75,7 +75,6 @@ public class Animal {
* @return className * @return className
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getClassName() { public String getClassName() {
return className; return className;
} }
@@ -97,7 +96,6 @@ public class Animal {
* @return color * @return color
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }

View File

@@ -81,7 +81,6 @@ public class ArrayOfArrayOfNumberOnly {
* @return arrayArrayNumber * @return arrayArrayNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<BigDecimal>> getArrayArrayNumber() { public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber; return arrayArrayNumber;
} }

View File

@@ -81,7 +81,6 @@ public class ArrayOfNumberOnly {
* @return arrayNumber * @return arrayNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<BigDecimal> getArrayNumber() { public List<BigDecimal> getArrayNumber() {
return arrayNumber; return arrayNumber;
} }

View File

@@ -89,7 +89,6 @@ public class ArrayTest {
* @return arrayOfString * @return arrayOfString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayOfString() { public List<String> getArrayOfString() {
return arrayOfString; return arrayOfString;
} }
@@ -119,7 +118,6 @@ public class ArrayTest {
* @return arrayArrayOfInteger * @return arrayArrayOfInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<Long>> getArrayArrayOfInteger() { public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger; return arrayArrayOfInteger;
} }
@@ -149,7 +147,6 @@ public class ArrayTest {
* @return arrayArrayOfModel * @return arrayArrayOfModel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() { public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel; return arrayArrayOfModel;
} }

View File

@@ -123,7 +123,6 @@ public class BigCat extends Cat {
* @return kind * @return kind
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public KindEnum getKind() { public KindEnum getKind() {
return kind; return kind;
} }

View File

@@ -121,7 +121,6 @@ public class BigCatAllOf {
* @return kind * @return kind
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public KindEnum getKind() { public KindEnum getKind() {
return kind; return kind;
} }

View File

@@ -90,7 +90,6 @@ public class Capitalization {
* @return smallCamel * @return smallCamel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSmallCamel() { public String getSmallCamel() {
return smallCamel; return smallCamel;
} }
@@ -112,7 +111,6 @@ public class Capitalization {
* @return capitalCamel * @return capitalCamel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getCapitalCamel() { public String getCapitalCamel() {
return capitalCamel; return capitalCamel;
} }
@@ -134,7 +132,6 @@ public class Capitalization {
* @return smallSnake * @return smallSnake
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSmallSnake() { public String getSmallSnake() {
return smallSnake; return smallSnake;
} }
@@ -156,7 +153,6 @@ public class Capitalization {
* @return capitalSnake * @return capitalSnake
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getCapitalSnake() { public String getCapitalSnake() {
return capitalSnake; return capitalSnake;
} }
@@ -178,7 +174,6 @@ public class Capitalization {
* @return scAETHFlowPoints * @return scAETHFlowPoints
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getScAETHFlowPoints() { public String getScAETHFlowPoints() {
return scAETHFlowPoints; return scAETHFlowPoints;
} }
@@ -200,7 +195,6 @@ public class Capitalization {
* @return ATT_NAME * @return ATT_NAME
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getATTNAME() { public String getATTNAME() {
return ATT_NAME; return ATT_NAME;
} }

View File

@@ -72,7 +72,6 @@ public class Cat extends Animal {
* @return declawed * @return declawed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getDeclawed() { public Boolean getDeclawed() {
return declawed; return declawed;
} }

View File

@@ -70,7 +70,6 @@ public class CatAllOf {
* @return declawed * @return declawed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getDeclawed() { public Boolean getDeclawed() {
return declawed; return declawed;
} }

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Category {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -70,7 +70,6 @@ public class ClassModel {
* @return propertyClass * @return propertyClass
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPropertyClass() { public String getPropertyClass() {
return propertyClass; return propertyClass;
} }

View File

@@ -70,7 +70,6 @@ public class Client {
* @return client * @return client
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getClient() { public String getClient() {
return client; return client;
} }

View File

@@ -72,7 +72,6 @@ public class Dog extends Animal {
* @return breed * @return breed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBreed() { public String getBreed() {
return breed; return breed;
} }

View File

@@ -70,7 +70,6 @@ public class DogAllOf {
* @return breed * @return breed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBreed() { public String getBreed() {
return breed; return breed;
} }

View File

@@ -170,7 +170,6 @@ public class EnumArrays {
* @return justSymbol * @return justSymbol
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public JustSymbolEnum getJustSymbol() { public JustSymbolEnum getJustSymbol() {
return justSymbol; return justSymbol;
} }
@@ -200,7 +199,6 @@ public class EnumArrays {
* @return arrayEnum * @return arrayEnum
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<ArrayEnumEnum> getArrayEnum() { public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum; return arrayEnum;
} }

View File

@@ -279,7 +279,6 @@ public class EnumTest {
* @return enumString * @return enumString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumStringEnum getEnumString() { public EnumStringEnum getEnumString() {
return enumString; return enumString;
} }
@@ -301,7 +300,6 @@ public class EnumTest {
* @return enumStringRequired * @return enumStringRequired
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public EnumStringRequiredEnum getEnumStringRequired() { public EnumStringRequiredEnum getEnumStringRequired() {
return enumStringRequired; return enumStringRequired;
} }
@@ -323,7 +321,6 @@ public class EnumTest {
* @return enumInteger * @return enumInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumIntegerEnum getEnumInteger() { public EnumIntegerEnum getEnumInteger() {
return enumInteger; return enumInteger;
} }
@@ -345,7 +342,6 @@ public class EnumTest {
* @return enumNumber * @return enumNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumNumberEnum getEnumNumber() { public EnumNumberEnum getEnumNumber() {
return enumNumber; return enumNumber;
} }
@@ -367,7 +363,6 @@ public class EnumTest {
* @return outerEnum * @return outerEnum
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OuterEnum getOuterEnum() { public OuterEnum getOuterEnum() {
return outerEnum; return outerEnum;
} }

View File

@@ -77,7 +77,6 @@ public class FileSchemaTestClass {
* @return _file * @return _file
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public ModelFile getFile() { public ModelFile getFile() {
return _file; return _file;
} }
@@ -107,7 +106,6 @@ public class FileSchemaTestClass {
* @return files * @return files
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<ModelFile> getFiles() { public List<ModelFile> getFiles() {
return files; return files;
} }

View File

@@ -129,7 +129,6 @@ public class FormatTest {
* @return integer * @return integer
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getInteger() { public Integer getInteger() {
return integer; return integer;
} }
@@ -153,7 +152,6 @@ public class FormatTest {
* @return int32 * @return int32
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getInt32() { public Integer getInt32() {
return int32; return int32;
} }
@@ -175,7 +173,6 @@ public class FormatTest {
* @return int64 * @return int64
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getInt64() { public Long getInt64() {
return int64; return int64;
} }
@@ -199,7 +196,6 @@ public class FormatTest {
* @return number * @return number
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public BigDecimal getNumber() { public BigDecimal getNumber() {
return number; return number;
} }
@@ -223,7 +219,6 @@ public class FormatTest {
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Float getFloat() { public Float getFloat() {
return _float; return _float;
} }
@@ -247,7 +242,6 @@ public class FormatTest {
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Double getDouble() { public Double getDouble() {
return _double; return _double;
} }
@@ -269,7 +263,6 @@ public class FormatTest {
* @return string * @return string
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getString() { public String getString() {
return string; return string;
} }
@@ -291,7 +284,6 @@ public class FormatTest {
* @return _byte * @return _byte
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public byte[] getByte() { public byte[] getByte() {
return _byte; return _byte;
} }
@@ -313,7 +305,6 @@ public class FormatTest {
* @return binary * @return binary
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public File getBinary() { public File getBinary() {
return binary; return binary;
} }
@@ -335,7 +326,6 @@ public class FormatTest {
* @return date * @return date
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public LocalDate getDate() { public LocalDate getDate() {
return date; return date;
} }
@@ -357,7 +347,6 @@ public class FormatTest {
* @return dateTime * @return dateTime
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDateTime() { public OffsetDateTime getDateTime() {
return dateTime; return dateTime;
} }
@@ -379,7 +368,6 @@ public class FormatTest {
* @return uuid * @return uuid
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public UUID getUuid() { public UUID getUuid() {
return uuid; return uuid;
} }
@@ -401,7 +389,6 @@ public class FormatTest {
* @return password * @return password
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getPassword() { public String getPassword() {
return password; return password;
} }
@@ -423,7 +410,6 @@ public class FormatTest {
* @return bigDecimal * @return bigDecimal
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getBigDecimal() { public BigDecimal getBigDecimal() {
return bigDecimal; return bigDecimal;
} }

View File

@@ -78,7 +78,6 @@ public class HasOnlyReadOnly {
* @return bar * @return bar
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBar() { public String getBar() {
return bar; return bar;
} }
@@ -91,7 +90,6 @@ public class HasOnlyReadOnly {
* @return foo * @return foo
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getFoo() { public String getFoo() {
return foo; return foo;
} }

View File

@@ -139,7 +139,6 @@ public class MapTest {
* @return mapMapOfString * @return mapMapOfString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapOfString() { public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString; return mapMapOfString;
} }
@@ -169,7 +168,6 @@ public class MapTest {
* @return mapOfEnumString * @return mapOfEnumString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, InnerEnum> getMapOfEnumString() { public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString; return mapOfEnumString;
} }
@@ -199,7 +197,6 @@ public class MapTest {
* @return directMap * @return directMap
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getDirectMap() { public Map<String, Boolean> getDirectMap() {
return directMap; return directMap;
} }
@@ -229,7 +226,6 @@ public class MapTest {
* @return indirectMap * @return indirectMap
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getIndirectMap() { public Map<String, Boolean> getIndirectMap() {
return indirectMap; return indirectMap;
} }

View File

@@ -83,7 +83,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return uuid * @return uuid
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public UUID getUuid() { public UUID getUuid() {
return uuid; return uuid;
} }
@@ -105,7 +104,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return dateTime * @return dateTime
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDateTime() { public OffsetDateTime getDateTime() {
return dateTime; return dateTime;
} }
@@ -135,7 +133,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return map * @return map
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Animal> getMap() { public Map<String, Animal> getMap() {
return map; return map;
} }

View File

@@ -74,7 +74,6 @@ public class Model200Response {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getName() { public Integer getName() {
return name; return name;
} }
@@ -96,7 +95,6 @@ public class Model200Response {
* @return propertyClass * @return propertyClass
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPropertyClass() { public String getPropertyClass() {
return propertyClass; return propertyClass;
} }

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code * @return code
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getCode() { public Integer getCode() {
return code; return code;
} }
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type * @return type
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getType() { public String getType() {
return type; return type;
} }
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message * @return message
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getMessage() { public String getMessage() {
return message; return message;
} }

View File

@@ -70,7 +70,6 @@ public class ModelFile {
* @return sourceURI * @return sourceURI
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSourceURI() { public String getSourceURI() {
return sourceURI; return sourceURI;
} }

View File

@@ -70,7 +70,6 @@ public class ModelList {
* @return _123list * @return _123list
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String get123list() { public String get123list() {
return _123list; return _123list;
} }

View File

@@ -70,7 +70,6 @@ public class ModelReturn {
* @return _return * @return _return
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getReturn() { public Integer getReturn() {
return _return; return _return;
} }

View File

@@ -92,7 +92,6 @@ public class Name {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Integer getName() { public Integer getName() {
return name; return name;
} }
@@ -108,7 +107,6 @@ public class Name {
* @return snakeCase * @return snakeCase
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getSnakeCase() { public Integer getSnakeCase() {
return snakeCase; return snakeCase;
} }
@@ -127,7 +125,6 @@ public class Name {
* @return property * @return property
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getProperty() { public String getProperty() {
return property; return property;
} }
@@ -143,7 +140,6 @@ public class Name {
* @return _123number * @return _123number
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer get123number() { public Integer get123number() {
return _123number; return _123number;
} }

View File

@@ -71,7 +71,6 @@ public class NumberOnly {
* @return justNumber * @return justNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getJustNumber() { public BigDecimal getJustNumber() {
return justNumber; return justNumber;
} }

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -162,7 +161,6 @@ public class Order {
* @return petId * @return petId
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getPetId() { public Long getPetId() {
return petId; return petId;
} }
@@ -184,7 +182,6 @@ public class Order {
* @return quantity * @return quantity
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getQuantity() { public Integer getQuantity() {
return quantity; return quantity;
} }
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate * @return shipDate
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getShipDate() { public OffsetDateTime getShipDate() {
return shipDate; return shipDate;
} }
@@ -228,7 +224,6 @@ public class Order {
* @return status * @return status
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }
@@ -250,7 +245,6 @@ public class Order {
* @return complete * @return complete
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getComplete() { public Boolean getComplete() {
return complete; return complete;
} }

View File

@@ -79,7 +79,6 @@ public class OuterComposite {
* @return myNumber * @return myNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getMyNumber() { public BigDecimal getMyNumber() {
return myNumber; return myNumber;
} }
@@ -101,7 +100,6 @@ public class OuterComposite {
* @return myString * @return myString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getMyString() { public String getMyString() {
return myString; return myString;
} }
@@ -123,7 +121,6 @@ public class OuterComposite {
* @return myBoolean * @return myBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getMyBoolean() { public Boolean getMyBoolean() {
return myBoolean; return myBoolean;
} }

View File

@@ -145,7 +145,6 @@ public class Pet {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -167,7 +166,6 @@ public class Pet {
* @return category * @return category
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
} }
@@ -189,7 +187,6 @@ public class Pet {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }
@@ -219,7 +216,6 @@ public class Pet {
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Set<String> getPhotoUrls() { public Set<String> getPhotoUrls() {
return photoUrls; return photoUrls;
} }
@@ -249,7 +245,6 @@ public class Pet {
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
} }
@@ -271,7 +266,6 @@ public class Pet {
* @return status * @return status
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }

View File

@@ -76,7 +76,6 @@ public class ReadOnlyFirst {
* @return bar * @return bar
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBar() { public String getBar() {
return bar; return bar;
} }
@@ -95,7 +94,6 @@ public class ReadOnlyFirst {
* @return baz * @return baz
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBaz() { public String getBaz() {
return baz; return baz;
} }

View File

@@ -70,7 +70,6 @@ public class SpecialModelName {
* @return $specialPropertyName * @return $specialPropertyName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long get$SpecialPropertyName() { public Long get$SpecialPropertyName() {
return $specialPropertyName; return $specialPropertyName;
} }

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Tag {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -89,7 +89,6 @@ public class TypeHolderDefault {
* @return stringItem * @return stringItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getStringItem() { public String getStringItem() {
return stringItem; return stringItem;
} }
@@ -111,7 +110,6 @@ public class TypeHolderDefault {
* @return numberItem * @return numberItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public BigDecimal getNumberItem() { public BigDecimal getNumberItem() {
return numberItem; return numberItem;
} }
@@ -133,7 +131,6 @@ public class TypeHolderDefault {
* @return integerItem * @return integerItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Integer getIntegerItem() { public Integer getIntegerItem() {
return integerItem; return integerItem;
} }
@@ -155,7 +152,6 @@ public class TypeHolderDefault {
* @return boolItem * @return boolItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Boolean getBoolItem() { public Boolean getBoolItem() {
return boolItem; return boolItem;
} }
@@ -185,7 +181,6 @@ public class TypeHolderDefault {
* @return arrayItem * @return arrayItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public List<Integer> getArrayItem() { public List<Integer> getArrayItem() {
return arrayItem; return arrayItem;
} }

View File

@@ -93,7 +93,6 @@ public class TypeHolderExample {
* @return stringItem * @return stringItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getStringItem() { public String getStringItem() {
return stringItem; return stringItem;
} }
@@ -115,7 +114,6 @@ public class TypeHolderExample {
* @return numberItem * @return numberItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public BigDecimal getNumberItem() { public BigDecimal getNumberItem() {
return numberItem; return numberItem;
} }
@@ -137,7 +135,6 @@ public class TypeHolderExample {
* @return floatItem * @return floatItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Float getFloatItem() { public Float getFloatItem() {
return floatItem; return floatItem;
} }
@@ -159,7 +156,6 @@ public class TypeHolderExample {
* @return integerItem * @return integerItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Integer getIntegerItem() { public Integer getIntegerItem() {
return integerItem; return integerItem;
} }
@@ -181,7 +177,6 @@ public class TypeHolderExample {
* @return boolItem * @return boolItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public Boolean getBoolItem() { public Boolean getBoolItem() {
return boolItem; return boolItem;
} }
@@ -211,7 +206,6 @@ public class TypeHolderExample {
* @return arrayItem * @return arrayItem
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public List<Integer> getArrayItem() { public List<Integer> getArrayItem() {
return arrayItem; return arrayItem;
} }

View File

@@ -98,7 +98,6 @@ public class User {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -120,7 +119,6 @@ public class User {
* @return username * @return username
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getUsername() { public String getUsername() {
return username; return username;
} }
@@ -142,7 +140,6 @@ public class User {
* @return firstName * @return firstName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getFirstName() { public String getFirstName() {
return firstName; return firstName;
} }
@@ -164,7 +161,6 @@ public class User {
* @return lastName * @return lastName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getLastName() { public String getLastName() {
return lastName; return lastName;
} }
@@ -186,7 +182,6 @@ public class User {
* @return email * @return email
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getEmail() { public String getEmail() {
return email; return email;
} }
@@ -208,7 +203,6 @@ public class User {
* @return password * @return password
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPassword() { public String getPassword() {
return password; return password;
} }
@@ -230,7 +224,6 @@ public class User {
* @return phone * @return phone
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPhone() { public String getPhone() {
return phone; return phone;
} }
@@ -252,7 +245,6 @@ public class User {
* @return userStatus * @return userStatus
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getUserStatus() { public Integer getUserStatus() {
return userStatus; return userStatus;
} }

View File

@@ -185,7 +185,6 @@ public class XmlItem {
* @return attributeString * @return attributeString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getAttributeString() { public String getAttributeString() {
return attributeString; return attributeString;
} }
@@ -207,7 +206,6 @@ public class XmlItem {
* @return attributeNumber * @return attributeNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getAttributeNumber() { public BigDecimal getAttributeNumber() {
return attributeNumber; return attributeNumber;
} }
@@ -229,7 +227,6 @@ public class XmlItem {
* @return attributeInteger * @return attributeInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getAttributeInteger() { public Integer getAttributeInteger() {
return attributeInteger; return attributeInteger;
} }
@@ -251,7 +248,6 @@ public class XmlItem {
* @return attributeBoolean * @return attributeBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getAttributeBoolean() { public Boolean getAttributeBoolean() {
return attributeBoolean; return attributeBoolean;
} }
@@ -281,7 +277,6 @@ public class XmlItem {
* @return wrappedArray * @return wrappedArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getWrappedArray() { public List<Integer> getWrappedArray() {
return wrappedArray; return wrappedArray;
} }
@@ -303,7 +298,6 @@ public class XmlItem {
* @return nameString * @return nameString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getNameString() { public String getNameString() {
return nameString; return nameString;
} }
@@ -325,7 +319,6 @@ public class XmlItem {
* @return nameNumber * @return nameNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getNameNumber() { public BigDecimal getNameNumber() {
return nameNumber; return nameNumber;
} }
@@ -347,7 +340,6 @@ public class XmlItem {
* @return nameInteger * @return nameInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getNameInteger() { public Integer getNameInteger() {
return nameInteger; return nameInteger;
} }
@@ -369,7 +361,6 @@ public class XmlItem {
* @return nameBoolean * @return nameBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getNameBoolean() { public Boolean getNameBoolean() {
return nameBoolean; return nameBoolean;
} }
@@ -399,7 +390,6 @@ public class XmlItem {
* @return nameArray * @return nameArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getNameArray() { public List<Integer> getNameArray() {
return nameArray; return nameArray;
} }
@@ -429,7 +419,6 @@ public class XmlItem {
* @return nameWrappedArray * @return nameWrappedArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getNameWrappedArray() { public List<Integer> getNameWrappedArray() {
return nameWrappedArray; return nameWrappedArray;
} }
@@ -451,7 +440,6 @@ public class XmlItem {
* @return prefixString * @return prefixString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPrefixString() { public String getPrefixString() {
return prefixString; return prefixString;
} }
@@ -473,7 +461,6 @@ public class XmlItem {
* @return prefixNumber * @return prefixNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getPrefixNumber() { public BigDecimal getPrefixNumber() {
return prefixNumber; return prefixNumber;
} }
@@ -495,7 +482,6 @@ public class XmlItem {
* @return prefixInteger * @return prefixInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getPrefixInteger() { public Integer getPrefixInteger() {
return prefixInteger; return prefixInteger;
} }
@@ -517,7 +503,6 @@ public class XmlItem {
* @return prefixBoolean * @return prefixBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getPrefixBoolean() { public Boolean getPrefixBoolean() {
return prefixBoolean; return prefixBoolean;
} }
@@ -547,7 +532,6 @@ public class XmlItem {
* @return prefixArray * @return prefixArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getPrefixArray() { public List<Integer> getPrefixArray() {
return prefixArray; return prefixArray;
} }
@@ -577,7 +561,6 @@ public class XmlItem {
* @return prefixWrappedArray * @return prefixWrappedArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getPrefixWrappedArray() { public List<Integer> getPrefixWrappedArray() {
return prefixWrappedArray; return prefixWrappedArray;
} }
@@ -599,7 +582,6 @@ public class XmlItem {
* @return namespaceString * @return namespaceString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getNamespaceString() { public String getNamespaceString() {
return namespaceString; return namespaceString;
} }
@@ -621,7 +603,6 @@ public class XmlItem {
* @return namespaceNumber * @return namespaceNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getNamespaceNumber() { public BigDecimal getNamespaceNumber() {
return namespaceNumber; return namespaceNumber;
} }
@@ -643,7 +624,6 @@ public class XmlItem {
* @return namespaceInteger * @return namespaceInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getNamespaceInteger() { public Integer getNamespaceInteger() {
return namespaceInteger; return namespaceInteger;
} }
@@ -665,7 +645,6 @@ public class XmlItem {
* @return namespaceBoolean * @return namespaceBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getNamespaceBoolean() { public Boolean getNamespaceBoolean() {
return namespaceBoolean; return namespaceBoolean;
} }
@@ -695,7 +674,6 @@ public class XmlItem {
* @return namespaceArray * @return namespaceArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getNamespaceArray() { public List<Integer> getNamespaceArray() {
return namespaceArray; return namespaceArray;
} }
@@ -725,7 +703,6 @@ public class XmlItem {
* @return namespaceWrappedArray * @return namespaceWrappedArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getNamespaceWrappedArray() { public List<Integer> getNamespaceWrappedArray() {
return namespaceWrappedArray; return namespaceWrappedArray;
} }
@@ -747,7 +724,6 @@ public class XmlItem {
* @return prefixNsString * @return prefixNsString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPrefixNsString() { public String getPrefixNsString() {
return prefixNsString; return prefixNsString;
} }
@@ -769,7 +745,6 @@ public class XmlItem {
* @return prefixNsNumber * @return prefixNsNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getPrefixNsNumber() { public BigDecimal getPrefixNsNumber() {
return prefixNsNumber; return prefixNsNumber;
} }
@@ -791,7 +766,6 @@ public class XmlItem {
* @return prefixNsInteger * @return prefixNsInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getPrefixNsInteger() { public Integer getPrefixNsInteger() {
return prefixNsInteger; return prefixNsInteger;
} }
@@ -813,7 +787,6 @@ public class XmlItem {
* @return prefixNsBoolean * @return prefixNsBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getPrefixNsBoolean() { public Boolean getPrefixNsBoolean() {
return prefixNsBoolean; return prefixNsBoolean;
} }
@@ -843,7 +816,6 @@ public class XmlItem {
* @return prefixNsArray * @return prefixNsArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getPrefixNsArray() { public List<Integer> getPrefixNsArray() {
return prefixNsArray; return prefixNsArray;
} }
@@ -873,7 +845,6 @@ public class XmlItem {
* @return prefixNsWrappedArray * @return prefixNsWrappedArray
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Integer> getPrefixNsWrappedArray() { public List<Integer> getPrefixNsWrappedArray() {
return prefixNsWrappedArray; return prefixNsWrappedArray;
} }

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Category {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code * @return code
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getCode() { public Integer getCode() {
return code; return code;
} }
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type * @return type
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getType() { public String getType() {
return type; return type;
} }
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message * @return message
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getMessage() { public String getMessage() {
return message; return message;
} }

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -162,7 +161,6 @@ public class Order {
* @return petId * @return petId
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getPetId() { public Long getPetId() {
return petId; return petId;
} }
@@ -184,7 +182,6 @@ public class Order {
* @return quantity * @return quantity
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getQuantity() { public Integer getQuantity() {
return quantity; return quantity;
} }
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate * @return shipDate
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getShipDate() { public OffsetDateTime getShipDate() {
return shipDate; return shipDate;
} }
@@ -228,7 +224,6 @@ public class Order {
* @return status * @return status
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }
@@ -250,7 +245,6 @@ public class Order {
* @return complete * @return complete
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getComplete() { public Boolean getComplete() {
return complete; return complete;
} }

View File

@@ -144,7 +144,6 @@ public class Pet {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -166,7 +165,6 @@ public class Pet {
* @return category * @return category
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
} }
@@ -188,7 +186,6 @@ public class Pet {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }
@@ -218,7 +215,6 @@ public class Pet {
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public List<String> getPhotoUrls() { public List<String> getPhotoUrls() {
return photoUrls; return photoUrls;
} }
@@ -248,7 +244,6 @@ public class Pet {
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
} }
@@ -273,7 +268,6 @@ public class Pet {
**/ **/
@Deprecated @Deprecated
@javax.annotation.Nullable @javax.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -96,7 +95,6 @@ public class Tag {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -98,7 +98,6 @@ public class User {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -120,7 +119,6 @@ public class User {
* @return username * @return username
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getUsername() { public String getUsername() {
return username; return username;
} }
@@ -142,7 +140,6 @@ public class User {
* @return firstName * @return firstName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getFirstName() { public String getFirstName() {
return firstName; return firstName;
} }
@@ -164,7 +161,6 @@ public class User {
* @return lastName * @return lastName
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getLastName() { public String getLastName() {
return lastName; return lastName;
} }
@@ -186,7 +182,6 @@ public class User {
* @return email * @return email
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getEmail() { public String getEmail() {
return email; return email;
} }
@@ -208,7 +203,6 @@ public class User {
* @return password * @return password
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPassword() { public String getPassword() {
return password; return password;
} }
@@ -230,7 +224,6 @@ public class User {
* @return phone * @return phone
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPhone() { public String getPhone() {
return phone; return phone;
} }
@@ -252,7 +245,6 @@ public class User {
* @return userStatus * @return userStatus
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getUserStatus() { public Integer getUserStatus() {
return userStatus; return userStatus;
} }

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesAnyType implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesArray implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesBoolean implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -124,7 +124,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapString * @return mapString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, String> getMapString() { public Map<String, String> getMapString() {
return mapString; return mapString;
} }
@@ -154,7 +153,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapNumber * @return mapNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, BigDecimal> getMapNumber() { public Map<String, BigDecimal> getMapNumber() {
return mapNumber; return mapNumber;
} }
@@ -184,7 +182,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapInteger * @return mapInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Integer> getMapInteger() { public Map<String, Integer> getMapInteger() {
return mapInteger; return mapInteger;
} }
@@ -214,7 +211,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapBoolean * @return mapBoolean
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getMapBoolean() { public Map<String, Boolean> getMapBoolean() {
return mapBoolean; return mapBoolean;
} }
@@ -244,7 +240,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapArrayInteger * @return mapArrayInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, List<Integer>> getMapArrayInteger() { public Map<String, List<Integer>> getMapArrayInteger() {
return mapArrayInteger; return mapArrayInteger;
} }
@@ -274,7 +269,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapArrayAnytype * @return mapArrayAnytype
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, List<Object>> getMapArrayAnytype() { public Map<String, List<Object>> getMapArrayAnytype() {
return mapArrayAnytype; return mapArrayAnytype;
} }
@@ -304,7 +298,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapMapString * @return mapMapString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapString() { public Map<String, Map<String, String>> getMapMapString() {
return mapMapString; return mapMapString;
} }
@@ -334,7 +327,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapMapAnytype * @return mapMapAnytype
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, Object>> getMapMapAnytype() { public Map<String, Map<String, Object>> getMapMapAnytype() {
return mapMapAnytype; return mapMapAnytype;
} }
@@ -356,7 +348,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype1 * @return anytype1
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype1() { public Object getAnytype1() {
return anytype1; return anytype1;
} }
@@ -378,7 +369,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype2 * @return anytype2
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype2() { public Object getAnytype2() {
return anytype2; return anytype2;
} }
@@ -400,7 +390,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype3 * @return anytype3
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Object getAnytype3() { public Object getAnytype3() {
return anytype3; return anytype3;
} }

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesInteger implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesNumber implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesObject implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesString implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -77,7 +77,6 @@ public class Animal implements Parcelable {
* @return className * @return className
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getClassName() { public String getClassName() {
return className; return className;
} }
@@ -99,7 +98,6 @@ public class Animal implements Parcelable {
* @return color * @return color
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }

View File

@@ -83,7 +83,6 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable {
* @return arrayArrayNumber * @return arrayArrayNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<BigDecimal>> getArrayArrayNumber() { public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber; return arrayArrayNumber;
} }

View File

@@ -83,7 +83,6 @@ public class ArrayOfNumberOnly implements Parcelable {
* @return arrayNumber * @return arrayNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<BigDecimal> getArrayNumber() { public List<BigDecimal> getArrayNumber() {
return arrayNumber; return arrayNumber;
} }

View File

@@ -91,7 +91,6 @@ public class ArrayTest implements Parcelable {
* @return arrayOfString * @return arrayOfString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<String> getArrayOfString() { public List<String> getArrayOfString() {
return arrayOfString; return arrayOfString;
} }
@@ -121,7 +120,6 @@ public class ArrayTest implements Parcelable {
* @return arrayArrayOfInteger * @return arrayArrayOfInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<Long>> getArrayArrayOfInteger() { public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger; return arrayArrayOfInteger;
} }
@@ -151,7 +149,6 @@ public class ArrayTest implements Parcelable {
* @return arrayArrayOfModel * @return arrayArrayOfModel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() { public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel; return arrayArrayOfModel;
} }

View File

@@ -126,7 +126,6 @@ public class BigCat extends Cat implements Parcelable {
* @return kind * @return kind
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public KindEnum getKind() { public KindEnum getKind() {
return kind; return kind;
} }

View File

@@ -123,7 +123,6 @@ public class BigCatAllOf implements Parcelable {
* @return kind * @return kind
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public KindEnum getKind() { public KindEnum getKind() {
return kind; return kind;
} }

View File

@@ -92,7 +92,6 @@ public class Capitalization implements Parcelable {
* @return smallCamel * @return smallCamel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSmallCamel() { public String getSmallCamel() {
return smallCamel; return smallCamel;
} }
@@ -114,7 +113,6 @@ public class Capitalization implements Parcelable {
* @return capitalCamel * @return capitalCamel
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getCapitalCamel() { public String getCapitalCamel() {
return capitalCamel; return capitalCamel;
} }
@@ -136,7 +134,6 @@ public class Capitalization implements Parcelable {
* @return smallSnake * @return smallSnake
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getSmallSnake() { public String getSmallSnake() {
return smallSnake; return smallSnake;
} }
@@ -158,7 +155,6 @@ public class Capitalization implements Parcelable {
* @return capitalSnake * @return capitalSnake
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getCapitalSnake() { public String getCapitalSnake() {
return capitalSnake; return capitalSnake;
} }
@@ -180,7 +176,6 @@ public class Capitalization implements Parcelable {
* @return scAETHFlowPoints * @return scAETHFlowPoints
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getScAETHFlowPoints() { public String getScAETHFlowPoints() {
return scAETHFlowPoints; return scAETHFlowPoints;
} }
@@ -202,7 +197,6 @@ public class Capitalization implements Parcelable {
* @return ATT_NAME * @return ATT_NAME
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getATTNAME() { public String getATTNAME() {
return ATT_NAME; return ATT_NAME;
} }

View File

@@ -75,7 +75,6 @@ public class Cat extends Animal implements Parcelable {
* @return declawed * @return declawed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getDeclawed() { public Boolean getDeclawed() {
return declawed; return declawed;
} }

View File

@@ -72,7 +72,6 @@ public class CatAllOf implements Parcelable {
* @return declawed * @return declawed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Boolean getDeclawed() { public Boolean getDeclawed() {
return declawed; return declawed;
} }

View File

@@ -76,7 +76,6 @@ public class Category implements Parcelable {
* @return id * @return id
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@@ -98,7 +97,6 @@ public class Category implements Parcelable {
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }

View File

@@ -72,7 +72,6 @@ public class ClassModel implements Parcelable {
* @return propertyClass * @return propertyClass
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getPropertyClass() { public String getPropertyClass() {
return propertyClass; return propertyClass;
} }

View File

@@ -72,7 +72,6 @@ public class Client implements Parcelable {
* @return client * @return client
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getClient() { public String getClient() {
return client; return client;
} }

View File

@@ -75,7 +75,6 @@ public class Dog extends Animal implements Parcelable {
* @return breed * @return breed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBreed() { public String getBreed() {
return breed; return breed;
} }

View File

@@ -72,7 +72,6 @@ public class DogAllOf implements Parcelable {
* @return breed * @return breed
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBreed() { public String getBreed() {
return breed; return breed;
} }

View File

@@ -172,7 +172,6 @@ public class EnumArrays implements Parcelable {
* @return justSymbol * @return justSymbol
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public JustSymbolEnum getJustSymbol() { public JustSymbolEnum getJustSymbol() {
return justSymbol; return justSymbol;
} }
@@ -202,7 +201,6 @@ public class EnumArrays implements Parcelable {
* @return arrayEnum * @return arrayEnum
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<ArrayEnumEnum> getArrayEnum() { public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum; return arrayEnum;
} }

View File

@@ -281,7 +281,6 @@ public class EnumTest implements Parcelable {
* @return enumString * @return enumString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumStringEnum getEnumString() { public EnumStringEnum getEnumString() {
return enumString; return enumString;
} }
@@ -303,7 +302,6 @@ public class EnumTest implements Parcelable {
* @return enumStringRequired * @return enumStringRequired
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public EnumStringRequiredEnum getEnumStringRequired() { public EnumStringRequiredEnum getEnumStringRequired() {
return enumStringRequired; return enumStringRequired;
} }
@@ -325,7 +323,6 @@ public class EnumTest implements Parcelable {
* @return enumInteger * @return enumInteger
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumIntegerEnum getEnumInteger() { public EnumIntegerEnum getEnumInteger() {
return enumInteger; return enumInteger;
} }
@@ -347,7 +344,6 @@ public class EnumTest implements Parcelable {
* @return enumNumber * @return enumNumber
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public EnumNumberEnum getEnumNumber() { public EnumNumberEnum getEnumNumber() {
return enumNumber; return enumNumber;
} }
@@ -369,7 +365,6 @@ public class EnumTest implements Parcelable {
* @return outerEnum * @return outerEnum
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OuterEnum getOuterEnum() { public OuterEnum getOuterEnum() {
return outerEnum; return outerEnum;
} }

View File

@@ -79,7 +79,6 @@ public class FileSchemaTestClass implements Parcelable {
* @return _file * @return _file
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public ModelFile getFile() { public ModelFile getFile() {
return _file; return _file;
} }
@@ -109,7 +108,6 @@ public class FileSchemaTestClass implements Parcelable {
* @return files * @return files
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public List<ModelFile> getFiles() { public List<ModelFile> getFiles() {
return files; return files;
} }

View File

@@ -131,7 +131,6 @@ public class FormatTest implements Parcelable {
* @return integer * @return integer
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getInteger() { public Integer getInteger() {
return integer; return integer;
} }
@@ -155,7 +154,6 @@ public class FormatTest implements Parcelable {
* @return int32 * @return int32
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Integer getInt32() { public Integer getInt32() {
return int32; return int32;
} }
@@ -177,7 +175,6 @@ public class FormatTest implements Parcelable {
* @return int64 * @return int64
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Long getInt64() { public Long getInt64() {
return int64; return int64;
} }
@@ -201,7 +198,6 @@ public class FormatTest implements Parcelable {
* @return number * @return number
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public BigDecimal getNumber() { public BigDecimal getNumber() {
return number; return number;
} }
@@ -225,7 +221,6 @@ public class FormatTest implements Parcelable {
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Float getFloat() { public Float getFloat() {
return _float; return _float;
} }
@@ -249,7 +244,6 @@ public class FormatTest implements Parcelable {
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Double getDouble() { public Double getDouble() {
return _double; return _double;
} }
@@ -271,7 +265,6 @@ public class FormatTest implements Parcelable {
* @return string * @return string
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getString() { public String getString() {
return string; return string;
} }
@@ -293,7 +286,6 @@ public class FormatTest implements Parcelable {
* @return _byte * @return _byte
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public byte[] getByte() { public byte[] getByte() {
return _byte; return _byte;
} }
@@ -315,7 +307,6 @@ public class FormatTest implements Parcelable {
* @return binary * @return binary
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public File getBinary() { public File getBinary() {
return binary; return binary;
} }
@@ -337,7 +328,6 @@ public class FormatTest implements Parcelable {
* @return date * @return date
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public LocalDate getDate() { public LocalDate getDate() {
return date; return date;
} }
@@ -359,7 +349,6 @@ public class FormatTest implements Parcelable {
* @return dateTime * @return dateTime
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDateTime() { public OffsetDateTime getDateTime() {
return dateTime; return dateTime;
} }
@@ -381,7 +370,6 @@ public class FormatTest implements Parcelable {
* @return uuid * @return uuid
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public UUID getUuid() { public UUID getUuid() {
return uuid; return uuid;
} }
@@ -403,7 +391,6 @@ public class FormatTest implements Parcelable {
* @return password * @return password
**/ **/
@javax.annotation.Nonnull @javax.annotation.Nonnull
public String getPassword() { public String getPassword() {
return password; return password;
} }
@@ -425,7 +412,6 @@ public class FormatTest implements Parcelable {
* @return bigDecimal * @return bigDecimal
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public BigDecimal getBigDecimal() { public BigDecimal getBigDecimal() {
return bigDecimal; return bigDecimal;
} }

View File

@@ -80,7 +80,6 @@ public class HasOnlyReadOnly implements Parcelable {
* @return bar * @return bar
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getBar() { public String getBar() {
return bar; return bar;
} }
@@ -93,7 +92,6 @@ public class HasOnlyReadOnly implements Parcelable {
* @return foo * @return foo
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public String getFoo() { public String getFoo() {
return foo; return foo;
} }

View File

@@ -141,7 +141,6 @@ public class MapTest implements Parcelable {
* @return mapMapOfString * @return mapMapOfString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapOfString() { public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString; return mapMapOfString;
} }
@@ -171,7 +170,6 @@ public class MapTest implements Parcelable {
* @return mapOfEnumString * @return mapOfEnumString
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, InnerEnum> getMapOfEnumString() { public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString; return mapOfEnumString;
} }
@@ -201,7 +199,6 @@ public class MapTest implements Parcelable {
* @return directMap * @return directMap
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getDirectMap() { public Map<String, Boolean> getDirectMap() {
return directMap; return directMap;
} }
@@ -231,7 +228,6 @@ public class MapTest implements Parcelable {
* @return indirectMap * @return indirectMap
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Boolean> getIndirectMap() { public Map<String, Boolean> getIndirectMap() {
return indirectMap; return indirectMap;
} }

View File

@@ -85,7 +85,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return uuid * @return uuid
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public UUID getUuid() { public UUID getUuid() {
return uuid; return uuid;
} }
@@ -107,7 +106,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return dateTime * @return dateTime
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public OffsetDateTime getDateTime() { public OffsetDateTime getDateTime() {
return dateTime; return dateTime;
} }
@@ -137,7 +135,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return map * @return map
**/ **/
@javax.annotation.Nullable @javax.annotation.Nullable
public Map<String, Animal> getMap() { public Map<String, Animal> getMap() {
return map; return map;
} }

Some files were not shown because too many files have changed in this diff Show More