[java][client] Don't include nullable attributes twice in serialized JSON (#3923)

* [java][client] Don't include nullable attributes twice in serialized JSON

* Get rid of the extra added whitespace

* Regenerate samples
This commit is contained in:
Slavek Kabrda 2019-10-22 10:17:27 +02:00 committed by William Cheng
parent 00c6e0a64b
commit cf58a427b6
945 changed files with 19 additions and 3349 deletions

View File

@ -676,15 +676,17 @@ public class JavaClientCodegen extends AbstractJavaCodegen
var.getVendorExtensions().put("isJacksonOptionalNullable", isOptionalNullable); var.getVendorExtensions().put("isJacksonOptionalNullable", isOptionalNullable);
} }
if (addImports) { if (addImports) {
cm.imports.add("JsonNullable"); Map<String, String> imports2Classnames = new HashMap<String, String>() {{
Map<String, String> itemJsonNullable = new HashMap<String, String>(); put("JsonNullable", "org.openapitools.jackson.nullable.JsonNullable");
itemJsonNullable.put("import", "org.openapitools.jackson.nullable.JsonNullable"); put("NoSuchElementException", "java.util.NoSuchElementException");
imports.add(itemJsonNullable); put("JsonIgnore", "com.fasterxml.jackson.annotation.JsonIgnore");
}};
cm.imports.add("NoSuchElementException"); for (Map.Entry<String, String> entry : imports2Classnames.entrySet()) {
Map<String, String> itemExc = new HashMap<String, String>(); cm.imports.add(entry.getKey());
itemExc.put("import", "java.util.NoSuchElementException"); Map<String, String> importsItem = new HashMap<String, String>();
imports.add(itemExc); importsItem.put("import", entry.getValue());
imports.add(importsItem);
}
} }
} }
} }

View File

@ -182,6 +182,10 @@ public class {{classname}} {{#parent}}extends {{{parent}}} {{/parent}}{{#parcela
{{#vendorExtensions.extraAnnotation}} {{#vendorExtensions.extraAnnotation}}
{{{vendorExtensions.extraAnnotation}}} {{{vendorExtensions.extraAnnotation}}}
{{/vendorExtensions.extraAnnotation}} {{/vendorExtensions.extraAnnotation}}
{{#vendorExtensions.isJacksonOptionalNullable}}
{{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}}
@JsonIgnore
{{/vendorExtensions.isJacksonOptionalNullable}}
{{^vendorExtensions.isJacksonOptionalNullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.isJacksonOptionalNullable}} {{^vendorExtensions.isJacksonOptionalNullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.isJacksonOptionalNullable}}
public {{{datatypeWithEnum}}} {{getter}}() { public {{{datatypeWithEnum}}} {{getter}}() {
{{#vendorExtensions.isJacksonOptionalNullable}} {{#vendorExtensions.isJacksonOptionalNullable}}
@ -202,16 +206,15 @@ public class {{classname}} {{#parent}}extends {{{parent}}} {{/parent}}{{#parcela
public JsonNullable<{{{datatypeWithEnum}}}> {{getter}}_JsonNullable() { public JsonNullable<{{{datatypeWithEnum}}}> {{getter}}_JsonNullable() {
return {{name}}; return {{name}};
} }
{{/vendorExtensions.isJacksonOptionalNullable}} {{/vendorExtensions.isJacksonOptionalNullable}}{{#vendorExtensions.isJacksonOptionalNullable}}
{{^isReadOnly}}
{{#vendorExtensions.isJacksonOptionalNullable}}
@JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}) @JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}})
public void {{setter}}_JsonNullable(JsonNullable<{{{datatypeWithEnum}}}> {{name}}) { {{#isReadOnly}}private{{/isReadOnly}}{{^isReadOnly}}public{{/isReadOnly}} void {{setter}}_JsonNullable(JsonNullable<{{{datatypeWithEnum}}}> {{name}}) {
{{! For getters/setters that have name differing from attribute name, we must include setter (albeit private) for jackson to be able to set the attribute}}
this.{{name}} = {{name}}; this.{{name}} = {{name}};
} }
{{/vendorExtensions.isJacksonOptionalNullable}} {{/vendorExtensions.isJacksonOptionalNullable}}
{{^isReadOnly}}
public void {{setter}}({{{datatypeWithEnum}}} {{name}}) { public void {{setter}}({{{datatypeWithEnum}}} {{name}}) {
{{#vendorExtensions.isJacksonOptionalNullable}} {{#vendorExtensions.isJacksonOptionalNullable}}
this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{name}}); this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{name}});

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -107,7 +107,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapString(Map<String, String> mapString) { public void setMapString(Map<String, String> mapString) {
this.mapString = mapString; this.mapString = mapString;
} }
@ -141,7 +140,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapNumber(Map<String, BigDecimal> mapNumber) { public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber; this.mapNumber = mapNumber;
} }
@ -175,7 +173,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapInteger(Map<String, Integer> mapInteger) { public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger; this.mapInteger = mapInteger;
} }
@ -209,7 +206,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapBoolean(Map<String, Boolean> mapBoolean) { public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean; this.mapBoolean = mapBoolean;
} }
@ -243,7 +239,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) { public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger; this.mapArrayInteger = mapArrayInteger;
} }
@ -277,7 +272,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) { public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype; this.mapArrayAnytype = mapArrayAnytype;
} }
@ -311,7 +305,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapString(Map<String, Map<String, String>> mapMapString) { public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString; this.mapMapString = mapMapString;
} }
@ -345,7 +338,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) { public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype; this.mapMapAnytype = mapMapAnytype;
} }
@ -371,7 +363,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype1(Object anytype1) { public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1; this.anytype1 = anytype1;
} }
@ -397,7 +388,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype2(Object anytype2) { public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2; this.anytype2 = anytype2;
} }
@ -423,7 +413,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype3(Object anytype3) { public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3; this.anytype3 = anytype3;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -66,7 +66,6 @@ public class Animal {
} }
public void setClassName(String className) { public void setClassName(String className) {
this.className = className; this.className = className;
} }
@ -92,7 +91,6 @@ public class Animal {
} }
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfArrayOfNumberOnly {
} }
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) { public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
this.arrayArrayNumber = arrayArrayNumber; this.arrayArrayNumber = arrayArrayNumber;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfNumberOnly {
} }
public void setArrayNumber(List<BigDecimal> arrayNumber) { public void setArrayNumber(List<BigDecimal> arrayNumber) {
this.arrayNumber = arrayNumber; this.arrayNumber = arrayNumber;
} }

View File

@ -74,7 +74,6 @@ public class ArrayTest {
} }
public void setArrayOfString(List<String> arrayOfString) { public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString; this.arrayOfString = arrayOfString;
} }
@ -108,7 +107,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) { public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger; this.arrayArrayOfInteger = arrayArrayOfInteger;
} }
@ -142,7 +140,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) { public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel; this.arrayArrayOfModel = arrayArrayOfModel;
} }

View File

@ -75,7 +75,6 @@ public class Capitalization {
} }
public void setSmallCamel(String smallCamel) { public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;
} }
@ -101,7 +100,6 @@ public class Capitalization {
} }
public void setCapitalCamel(String capitalCamel) { public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel; this.capitalCamel = capitalCamel;
} }
@ -127,7 +125,6 @@ public class Capitalization {
} }
public void setSmallSnake(String smallSnake) { public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake; this.smallSnake = smallSnake;
} }
@ -153,7 +150,6 @@ public class Capitalization {
} }
public void setCapitalSnake(String capitalSnake) { public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake; this.capitalSnake = capitalSnake;
} }
@ -179,7 +175,6 @@ public class Capitalization {
} }
public void setScAETHFlowPoints(String scAETHFlowPoints) { public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints; this.scAETHFlowPoints = scAETHFlowPoints;
} }
@ -205,7 +200,6 @@ public class Capitalization {
} }
public void setATTNAME(String ATT_NAME) { public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME; this.ATT_NAME = ATT_NAME;
} }

View File

@ -57,7 +57,6 @@ public class Cat extends Animal {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -55,7 +55,6 @@ public class CatAllOf {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -59,7 +59,6 @@ public class Category {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -84,7 +83,6 @@ public class Category {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -56,7 +56,6 @@ public class ClassModel {
} }
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -55,7 +55,6 @@ public class Client {
} }
public void setClient(String client) { public void setClient(String client) {
this.client = client; this.client = client;
} }

View File

@ -57,7 +57,6 @@ public class Dog extends Animal {
} }
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -55,7 +55,6 @@ public class DogAllOf {
} }
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -131,7 +131,6 @@ public class EnumArrays {
} }
public void setJustSymbol(JustSymbolEnum justSymbol) { public void setJustSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol; this.justSymbol = justSymbol;
} }
@ -165,7 +164,6 @@ public class EnumArrays {
} }
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) { public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum; this.arrayEnum = arrayEnum;
} }

View File

@ -216,7 +216,6 @@ public class EnumTest {
} }
public void setEnumString(EnumStringEnum enumString) { public void setEnumString(EnumStringEnum enumString) {
this.enumString = enumString; this.enumString = enumString;
} }
@ -241,7 +240,6 @@ public class EnumTest {
} }
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) { public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired; this.enumStringRequired = enumStringRequired;
} }
@ -267,7 +265,6 @@ public class EnumTest {
} }
public void setEnumInteger(EnumIntegerEnum enumInteger) { public void setEnumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger; this.enumInteger = enumInteger;
} }
@ -293,7 +290,6 @@ public class EnumTest {
} }
public void setEnumNumber(EnumNumberEnum enumNumber) { public void setEnumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber; this.enumNumber = enumNumber;
} }
@ -319,7 +315,6 @@ public class EnumTest {
} }
public void setOuterEnum(OuterEnum outerEnum) { public void setOuterEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum; this.outerEnum = outerEnum;
} }

View File

@ -61,7 +61,6 @@ public class FileSchemaTestClass {
} }
public void setFile(java.io.File file) { public void setFile(java.io.File file) {
this.file = file; this.file = file;
} }
@ -95,7 +94,6 @@ public class FileSchemaTestClass {
} }
public void setFiles(List<java.io.File> files) { public void setFiles(List<java.io.File> files) {
this.files = files; this.files = files;
} }

View File

@ -114,7 +114,6 @@ public class FormatTest {
} }
public void setInteger(Integer integer) { public void setInteger(Integer integer) {
this.integer = integer; this.integer = integer;
} }
@ -142,7 +141,6 @@ public class FormatTest {
} }
public void setInt32(Integer int32) { public void setInt32(Integer int32) {
this.int32 = int32; this.int32 = int32;
} }
@ -168,7 +166,6 @@ public class FormatTest {
} }
public void setInt64(Long int64) { public void setInt64(Long int64) {
this.int64 = int64; this.int64 = int64;
} }
@ -195,7 +192,6 @@ public class FormatTest {
} }
public void setNumber(BigDecimal number) { public void setNumber(BigDecimal number) {
this.number = number; this.number = number;
} }
@ -223,7 +219,6 @@ public class FormatTest {
} }
public void setFloat(Float _float) { public void setFloat(Float _float) {
this._float = _float; this._float = _float;
} }
@ -251,7 +246,6 @@ public class FormatTest {
} }
public void setDouble(Double _double) { public void setDouble(Double _double) {
this._double = _double; this._double = _double;
} }
@ -277,7 +271,6 @@ public class FormatTest {
} }
public void setString(String string) { public void setString(String string) {
this.string = string; this.string = string;
} }
@ -302,7 +295,6 @@ public class FormatTest {
} }
public void setByte(byte[] _byte) { public void setByte(byte[] _byte) {
this._byte = _byte; this._byte = _byte;
} }
@ -328,7 +320,6 @@ public class FormatTest {
} }
public void setBinary(File binary) { public void setBinary(File binary) {
this.binary = binary; this.binary = binary;
} }
@ -353,7 +344,6 @@ public class FormatTest {
} }
public void setDate(LocalDate date) { public void setDate(LocalDate date) {
this.date = date; this.date = date;
} }
@ -379,7 +369,6 @@ public class FormatTest {
} }
public void setDateTime(OffsetDateTime dateTime) { public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -405,7 +394,6 @@ public class FormatTest {
} }
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -430,7 +418,6 @@ public class FormatTest {
} }
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -456,7 +443,6 @@ public class FormatTest {
} }
public void setBigDecimal(BigDecimal bigDecimal) { public void setBigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal; this.bigDecimal = bigDecimal;
} }

View File

@ -113,7 +113,6 @@ public class MapTest {
} }
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) { public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString; this.mapMapOfString = mapMapOfString;
} }
@ -147,7 +146,6 @@ public class MapTest {
} }
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) { public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString; this.mapOfEnumString = mapOfEnumString;
} }
@ -181,7 +179,6 @@ public class MapTest {
} }
public void setDirectMap(Map<String, Boolean> directMap) { public void setDirectMap(Map<String, Boolean> directMap) {
this.directMap = directMap; this.directMap = directMap;
} }
@ -215,7 +212,6 @@ public class MapTest {
} }
public void setIndirectMap(Map<String, Boolean> indirectMap) { public void setIndirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap; this.indirectMap = indirectMap;
} }

View File

@ -69,7 +69,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -95,7 +94,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setDateTime(OffsetDateTime dateTime) { public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -129,7 +127,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setMap(Map<String, Animal> map) { public void setMap(Map<String, Animal> map) {
this.map = map; this.map = map;
} }

View File

@ -60,7 +60,6 @@ public class Model200Response {
} }
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -86,7 +85,6 @@ public class Model200Response {
} }
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -63,7 +63,6 @@ public class ModelApiResponse {
} }
public void setCode(Integer code) { public void setCode(Integer code) {
this.code = code; this.code = code;
} }
@ -89,7 +88,6 @@ public class ModelApiResponse {
} }
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
@ -115,7 +113,6 @@ public class ModelApiResponse {
} }
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }

View File

@ -56,7 +56,6 @@ public class ModelReturn {
} }
public void setReturn(Integer _return) { public void setReturn(Integer _return) {
this._return = _return; this._return = _return;
} }

View File

@ -67,7 +67,6 @@ public class Name {
} }
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -109,7 +108,6 @@ public class Name {
} }
public void setProperty(String property) { public void setProperty(String property) {
this.property = property; this.property = property;
} }

View File

@ -56,7 +56,6 @@ public class NumberOnly {
} }
public void setJustNumber(BigDecimal justNumber) { public void setJustNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;
} }

View File

@ -113,7 +113,6 @@ public class Order {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -139,7 +138,6 @@ public class Order {
} }
public void setPetId(Long petId) { public void setPetId(Long petId) {
this.petId = petId; this.petId = petId;
} }
@ -165,7 +163,6 @@ public class Order {
} }
public void setQuantity(Integer quantity) { public void setQuantity(Integer quantity) {
this.quantity = quantity; this.quantity = quantity;
} }
@ -191,7 +188,6 @@ public class Order {
} }
public void setShipDate(OffsetDateTime shipDate) { public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate; this.shipDate = shipDate;
} }
@ -217,7 +213,6 @@ public class Order {
} }
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }
@ -243,7 +238,6 @@ public class Order {
} }
public void setComplete(Boolean complete) { public void setComplete(Boolean complete) {
this.complete = complete; this.complete = complete;
} }

View File

@ -64,7 +64,6 @@ public class OuterComposite {
} }
public void setMyNumber(BigDecimal myNumber) { public void setMyNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;
} }
@ -90,7 +89,6 @@ public class OuterComposite {
} }
public void setMyString(String myString) { public void setMyString(String myString) {
this.myString = myString; this.myString = myString;
} }
@ -116,7 +114,6 @@ public class OuterComposite {
} }
public void setMyBoolean(Boolean myBoolean) { public void setMyBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean; this.myBoolean = myBoolean;
} }

View File

@ -116,7 +116,6 @@ public class Pet {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -142,7 +141,6 @@ public class Pet {
} }
public void setCategory(Category category) { public void setCategory(Category category) {
this.category = category; this.category = category;
} }
@ -167,7 +165,6 @@ public class Pet {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
@ -197,7 +194,6 @@ public class Pet {
} }
public void setPhotoUrls(List<String> photoUrls) { public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls; this.photoUrls = photoUrls;
} }
@ -231,7 +227,6 @@ public class Pet {
} }
public void setTags(List<Tag> tags) { public void setTags(List<Tag> tags) {
this.tags = tags; this.tags = tags;
} }
@ -257,7 +252,6 @@ public class Pet {
} }
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }

View File

@ -75,7 +75,6 @@ public class ReadOnlyFirst {
} }
public void setBaz(String baz) { public void setBaz(String baz) {
this.baz = baz; this.baz = baz;
} }

View File

@ -55,7 +55,6 @@ public class SpecialModelName {
} }
public void set$SpecialPropertyName(Long $specialPropertyName) { public void set$SpecialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;
} }

View File

@ -59,7 +59,6 @@ public class Tag {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -85,7 +84,6 @@ public class Tag {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -73,7 +73,6 @@ public class TypeHolderDefault {
} }
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -98,7 +97,6 @@ public class TypeHolderDefault {
} }
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -123,7 +121,6 @@ public class TypeHolderDefault {
} }
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -148,7 +145,6 @@ public class TypeHolderDefault {
} }
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -178,7 +174,6 @@ public class TypeHolderDefault {
} }
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -77,7 +77,6 @@ public class TypeHolderExample {
} }
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -102,7 +101,6 @@ public class TypeHolderExample {
} }
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -127,7 +125,6 @@ public class TypeHolderExample {
} }
public void setFloatItem(Float floatItem) { public void setFloatItem(Float floatItem) {
this.floatItem = floatItem; this.floatItem = floatItem;
} }
@ -152,7 +149,6 @@ public class TypeHolderExample {
} }
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -177,7 +173,6 @@ public class TypeHolderExample {
} }
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -207,7 +202,6 @@ public class TypeHolderExample {
} }
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -83,7 +83,6 @@ public class User {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -109,7 +108,6 @@ public class User {
} }
public void setUsername(String username) { public void setUsername(String username) {
this.username = username; this.username = username;
} }
@ -135,7 +133,6 @@ public class User {
} }
public void setFirstName(String firstName) { public void setFirstName(String firstName) {
this.firstName = firstName; this.firstName = firstName;
} }
@ -161,7 +158,6 @@ public class User {
} }
public void setLastName(String lastName) { public void setLastName(String lastName) {
this.lastName = lastName; this.lastName = lastName;
} }
@ -187,7 +183,6 @@ public class User {
} }
public void setEmail(String email) { public void setEmail(String email) {
this.email = email; this.email = email;
} }
@ -213,7 +208,6 @@ public class User {
} }
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -239,7 +233,6 @@ public class User {
} }
public void setPhone(String phone) { public void setPhone(String phone) {
this.phone = phone; this.phone = phone;
} }
@ -265,7 +258,6 @@ public class User {
} }
public void setUserStatus(Integer userStatus) { public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus; this.userStatus = userStatus;
} }

View File

@ -170,7 +170,6 @@ public class XmlItem {
} }
public void setAttributeString(String attributeString) { public void setAttributeString(String attributeString) {
this.attributeString = attributeString; this.attributeString = attributeString;
} }
@ -196,7 +195,6 @@ public class XmlItem {
} }
public void setAttributeNumber(BigDecimal attributeNumber) { public void setAttributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber; this.attributeNumber = attributeNumber;
} }
@ -222,7 +220,6 @@ public class XmlItem {
} }
public void setAttributeInteger(Integer attributeInteger) { public void setAttributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger; this.attributeInteger = attributeInteger;
} }
@ -248,7 +245,6 @@ public class XmlItem {
} }
public void setAttributeBoolean(Boolean attributeBoolean) { public void setAttributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean; this.attributeBoolean = attributeBoolean;
} }
@ -282,7 +278,6 @@ public class XmlItem {
} }
public void setWrappedArray(List<Integer> wrappedArray) { public void setWrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray; this.wrappedArray = wrappedArray;
} }
@ -308,7 +303,6 @@ public class XmlItem {
} }
public void setNameString(String nameString) { public void setNameString(String nameString) {
this.nameString = nameString; this.nameString = nameString;
} }
@ -334,7 +328,6 @@ public class XmlItem {
} }
public void setNameNumber(BigDecimal nameNumber) { public void setNameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber; this.nameNumber = nameNumber;
} }
@ -360,7 +353,6 @@ public class XmlItem {
} }
public void setNameInteger(Integer nameInteger) { public void setNameInteger(Integer nameInteger) {
this.nameInteger = nameInteger; this.nameInteger = nameInteger;
} }
@ -386,7 +378,6 @@ public class XmlItem {
} }
public void setNameBoolean(Boolean nameBoolean) { public void setNameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean; this.nameBoolean = nameBoolean;
} }
@ -420,7 +411,6 @@ public class XmlItem {
} }
public void setNameArray(List<Integer> nameArray) { public void setNameArray(List<Integer> nameArray) {
this.nameArray = nameArray; this.nameArray = nameArray;
} }
@ -454,7 +444,6 @@ public class XmlItem {
} }
public void setNameWrappedArray(List<Integer> nameWrappedArray) { public void setNameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray; this.nameWrappedArray = nameWrappedArray;
} }
@ -480,7 +469,6 @@ public class XmlItem {
} }
public void setPrefixString(String prefixString) { public void setPrefixString(String prefixString) {
this.prefixString = prefixString; this.prefixString = prefixString;
} }
@ -506,7 +494,6 @@ public class XmlItem {
} }
public void setPrefixNumber(BigDecimal prefixNumber) { public void setPrefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber; this.prefixNumber = prefixNumber;
} }
@ -532,7 +519,6 @@ public class XmlItem {
} }
public void setPrefixInteger(Integer prefixInteger) { public void setPrefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger; this.prefixInteger = prefixInteger;
} }
@ -558,7 +544,6 @@ public class XmlItem {
} }
public void setPrefixBoolean(Boolean prefixBoolean) { public void setPrefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean; this.prefixBoolean = prefixBoolean;
} }
@ -592,7 +577,6 @@ public class XmlItem {
} }
public void setPrefixArray(List<Integer> prefixArray) { public void setPrefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray; this.prefixArray = prefixArray;
} }
@ -626,7 +610,6 @@ public class XmlItem {
} }
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) { public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray; this.prefixWrappedArray = prefixWrappedArray;
} }
@ -652,7 +635,6 @@ public class XmlItem {
} }
public void setNamespaceString(String namespaceString) { public void setNamespaceString(String namespaceString) {
this.namespaceString = namespaceString; this.namespaceString = namespaceString;
} }
@ -678,7 +660,6 @@ public class XmlItem {
} }
public void setNamespaceNumber(BigDecimal namespaceNumber) { public void setNamespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber; this.namespaceNumber = namespaceNumber;
} }
@ -704,7 +685,6 @@ public class XmlItem {
} }
public void setNamespaceInteger(Integer namespaceInteger) { public void setNamespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger; this.namespaceInteger = namespaceInteger;
} }
@ -730,7 +710,6 @@ public class XmlItem {
} }
public void setNamespaceBoolean(Boolean namespaceBoolean) { public void setNamespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean; this.namespaceBoolean = namespaceBoolean;
} }
@ -764,7 +743,6 @@ public class XmlItem {
} }
public void setNamespaceArray(List<Integer> namespaceArray) { public void setNamespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray; this.namespaceArray = namespaceArray;
} }
@ -798,7 +776,6 @@ public class XmlItem {
} }
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) { public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray; this.namespaceWrappedArray = namespaceWrappedArray;
} }
@ -824,7 +801,6 @@ public class XmlItem {
} }
public void setPrefixNsString(String prefixNsString) { public void setPrefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString; this.prefixNsString = prefixNsString;
} }
@ -850,7 +826,6 @@ public class XmlItem {
} }
public void setPrefixNsNumber(BigDecimal prefixNsNumber) { public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber; this.prefixNsNumber = prefixNsNumber;
} }
@ -876,7 +851,6 @@ public class XmlItem {
} }
public void setPrefixNsInteger(Integer prefixNsInteger) { public void setPrefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger; this.prefixNsInteger = prefixNsInteger;
} }
@ -902,7 +876,6 @@ public class XmlItem {
} }
public void setPrefixNsBoolean(Boolean prefixNsBoolean) { public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean; this.prefixNsBoolean = prefixNsBoolean;
} }
@ -936,7 +909,6 @@ public class XmlItem {
} }
public void setPrefixNsArray(List<Integer> prefixNsArray) { public void setPrefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray; this.prefixNsArray = prefixNsArray;
} }
@ -970,7 +942,6 @@ public class XmlItem {
} }
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) { public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray; this.prefixNsWrappedArray = prefixNsWrappedArray;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -107,7 +107,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapString(Map<String, String> mapString) { public void setMapString(Map<String, String> mapString) {
this.mapString = mapString; this.mapString = mapString;
} }
@ -141,7 +140,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapNumber(Map<String, BigDecimal> mapNumber) { public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber; this.mapNumber = mapNumber;
} }
@ -175,7 +173,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapInteger(Map<String, Integer> mapInteger) { public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger; this.mapInteger = mapInteger;
} }
@ -209,7 +206,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapBoolean(Map<String, Boolean> mapBoolean) { public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean; this.mapBoolean = mapBoolean;
} }
@ -243,7 +239,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) { public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger; this.mapArrayInteger = mapArrayInteger;
} }
@ -277,7 +272,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) { public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype; this.mapArrayAnytype = mapArrayAnytype;
} }
@ -311,7 +305,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapString(Map<String, Map<String, String>> mapMapString) { public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString; this.mapMapString = mapMapString;
} }
@ -345,7 +338,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) { public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype; this.mapMapAnytype = mapMapAnytype;
} }
@ -371,7 +363,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype1(Object anytype1) { public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1; this.anytype1 = anytype1;
} }
@ -397,7 +388,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype2(Object anytype2) { public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2; this.anytype2 = anytype2;
} }
@ -423,7 +413,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype3(Object anytype3) { public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3; this.anytype3 = anytype3;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -66,7 +66,6 @@ public class Animal {
} }
public void setClassName(String className) { public void setClassName(String className) {
this.className = className; this.className = className;
} }
@ -92,7 +91,6 @@ public class Animal {
} }
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfArrayOfNumberOnly {
} }
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) { public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
this.arrayArrayNumber = arrayArrayNumber; this.arrayArrayNumber = arrayArrayNumber;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfNumberOnly {
} }
public void setArrayNumber(List<BigDecimal> arrayNumber) { public void setArrayNumber(List<BigDecimal> arrayNumber) {
this.arrayNumber = arrayNumber; this.arrayNumber = arrayNumber;
} }

View File

@ -74,7 +74,6 @@ public class ArrayTest {
} }
public void setArrayOfString(List<String> arrayOfString) { public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString; this.arrayOfString = arrayOfString;
} }
@ -108,7 +107,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) { public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger; this.arrayArrayOfInteger = arrayArrayOfInteger;
} }
@ -142,7 +140,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) { public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel; this.arrayArrayOfModel = arrayArrayOfModel;
} }

View File

@ -75,7 +75,6 @@ public class Capitalization {
} }
public void setSmallCamel(String smallCamel) { public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;
} }
@ -101,7 +100,6 @@ public class Capitalization {
} }
public void setCapitalCamel(String capitalCamel) { public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel; this.capitalCamel = capitalCamel;
} }
@ -127,7 +125,6 @@ public class Capitalization {
} }
public void setSmallSnake(String smallSnake) { public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake; this.smallSnake = smallSnake;
} }
@ -153,7 +150,6 @@ public class Capitalization {
} }
public void setCapitalSnake(String capitalSnake) { public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake; this.capitalSnake = capitalSnake;
} }
@ -179,7 +175,6 @@ public class Capitalization {
} }
public void setScAETHFlowPoints(String scAETHFlowPoints) { public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints; this.scAETHFlowPoints = scAETHFlowPoints;
} }
@ -205,7 +200,6 @@ public class Capitalization {
} }
public void setATTNAME(String ATT_NAME) { public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME; this.ATT_NAME = ATT_NAME;
} }

View File

@ -57,7 +57,6 @@ public class Cat extends Animal {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -55,7 +55,6 @@ public class CatAllOf {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -59,7 +59,6 @@ public class Category {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -84,7 +83,6 @@ public class Category {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -56,7 +56,6 @@ public class ClassModel {
} }
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -55,7 +55,6 @@ public class Client {
} }
public void setClient(String client) { public void setClient(String client) {
this.client = client; this.client = client;
} }

View File

@ -57,7 +57,6 @@ public class Dog extends Animal {
} }
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -55,7 +55,6 @@ public class DogAllOf {
} }
public void setBreed(String breed) { public void setBreed(String breed) {
this.breed = breed; this.breed = breed;
} }

View File

@ -131,7 +131,6 @@ public class EnumArrays {
} }
public void setJustSymbol(JustSymbolEnum justSymbol) { public void setJustSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol; this.justSymbol = justSymbol;
} }
@ -165,7 +164,6 @@ public class EnumArrays {
} }
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) { public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum; this.arrayEnum = arrayEnum;
} }

View File

@ -216,7 +216,6 @@ public class EnumTest {
} }
public void setEnumString(EnumStringEnum enumString) { public void setEnumString(EnumStringEnum enumString) {
this.enumString = enumString; this.enumString = enumString;
} }
@ -241,7 +240,6 @@ public class EnumTest {
} }
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) { public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired; this.enumStringRequired = enumStringRequired;
} }
@ -267,7 +265,6 @@ public class EnumTest {
} }
public void setEnumInteger(EnumIntegerEnum enumInteger) { public void setEnumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger; this.enumInteger = enumInteger;
} }
@ -293,7 +290,6 @@ public class EnumTest {
} }
public void setEnumNumber(EnumNumberEnum enumNumber) { public void setEnumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber; this.enumNumber = enumNumber;
} }
@ -319,7 +315,6 @@ public class EnumTest {
} }
public void setOuterEnum(OuterEnum outerEnum) { public void setOuterEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum; this.outerEnum = outerEnum;
} }

View File

@ -61,7 +61,6 @@ public class FileSchemaTestClass {
} }
public void setFile(java.io.File file) { public void setFile(java.io.File file) {
this.file = file; this.file = file;
} }
@ -95,7 +94,6 @@ public class FileSchemaTestClass {
} }
public void setFiles(List<java.io.File> files) { public void setFiles(List<java.io.File> files) {
this.files = files; this.files = files;
} }

View File

@ -114,7 +114,6 @@ public class FormatTest {
} }
public void setInteger(Integer integer) { public void setInteger(Integer integer) {
this.integer = integer; this.integer = integer;
} }
@ -142,7 +141,6 @@ public class FormatTest {
} }
public void setInt32(Integer int32) { public void setInt32(Integer int32) {
this.int32 = int32; this.int32 = int32;
} }
@ -168,7 +166,6 @@ public class FormatTest {
} }
public void setInt64(Long int64) { public void setInt64(Long int64) {
this.int64 = int64; this.int64 = int64;
} }
@ -195,7 +192,6 @@ public class FormatTest {
} }
public void setNumber(BigDecimal number) { public void setNumber(BigDecimal number) {
this.number = number; this.number = number;
} }
@ -223,7 +219,6 @@ public class FormatTest {
} }
public void setFloat(Float _float) { public void setFloat(Float _float) {
this._float = _float; this._float = _float;
} }
@ -251,7 +246,6 @@ public class FormatTest {
} }
public void setDouble(Double _double) { public void setDouble(Double _double) {
this._double = _double; this._double = _double;
} }
@ -277,7 +271,6 @@ public class FormatTest {
} }
public void setString(String string) { public void setString(String string) {
this.string = string; this.string = string;
} }
@ -302,7 +295,6 @@ public class FormatTest {
} }
public void setByte(byte[] _byte) { public void setByte(byte[] _byte) {
this._byte = _byte; this._byte = _byte;
} }
@ -328,7 +320,6 @@ public class FormatTest {
} }
public void setBinary(File binary) { public void setBinary(File binary) {
this.binary = binary; this.binary = binary;
} }
@ -353,7 +344,6 @@ public class FormatTest {
} }
public void setDate(LocalDate date) { public void setDate(LocalDate date) {
this.date = date; this.date = date;
} }
@ -379,7 +369,6 @@ public class FormatTest {
} }
public void setDateTime(OffsetDateTime dateTime) { public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -405,7 +394,6 @@ public class FormatTest {
} }
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -430,7 +418,6 @@ public class FormatTest {
} }
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -456,7 +443,6 @@ public class FormatTest {
} }
public void setBigDecimal(BigDecimal bigDecimal) { public void setBigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal; this.bigDecimal = bigDecimal;
} }

View File

@ -113,7 +113,6 @@ public class MapTest {
} }
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) { public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString; this.mapMapOfString = mapMapOfString;
} }
@ -147,7 +146,6 @@ public class MapTest {
} }
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) { public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString; this.mapOfEnumString = mapOfEnumString;
} }
@ -181,7 +179,6 @@ public class MapTest {
} }
public void setDirectMap(Map<String, Boolean> directMap) { public void setDirectMap(Map<String, Boolean> directMap) {
this.directMap = directMap; this.directMap = directMap;
} }
@ -215,7 +212,6 @@ public class MapTest {
} }
public void setIndirectMap(Map<String, Boolean> indirectMap) { public void setIndirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap; this.indirectMap = indirectMap;
} }

View File

@ -69,7 +69,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setUuid(UUID uuid) { public void setUuid(UUID uuid) {
this.uuid = uuid; this.uuid = uuid;
} }
@ -95,7 +94,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setDateTime(OffsetDateTime dateTime) { public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime; this.dateTime = dateTime;
} }
@ -129,7 +127,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
} }
public void setMap(Map<String, Animal> map) { public void setMap(Map<String, Animal> map) {
this.map = map; this.map = map;
} }

View File

@ -60,7 +60,6 @@ public class Model200Response {
} }
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -86,7 +85,6 @@ public class Model200Response {
} }
public void setPropertyClass(String propertyClass) { public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;
} }

View File

@ -63,7 +63,6 @@ public class ModelApiResponse {
} }
public void setCode(Integer code) { public void setCode(Integer code) {
this.code = code; this.code = code;
} }
@ -89,7 +88,6 @@ public class ModelApiResponse {
} }
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
@ -115,7 +113,6 @@ public class ModelApiResponse {
} }
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }

View File

@ -56,7 +56,6 @@ public class ModelReturn {
} }
public void setReturn(Integer _return) { public void setReturn(Integer _return) {
this._return = _return; this._return = _return;
} }

View File

@ -67,7 +67,6 @@ public class Name {
} }
public void setName(Integer name) { public void setName(Integer name) {
this.name = name; this.name = name;
} }
@ -109,7 +108,6 @@ public class Name {
} }
public void setProperty(String property) { public void setProperty(String property) {
this.property = property; this.property = property;
} }

View File

@ -56,7 +56,6 @@ public class NumberOnly {
} }
public void setJustNumber(BigDecimal justNumber) { public void setJustNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;
} }

View File

@ -113,7 +113,6 @@ public class Order {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -139,7 +138,6 @@ public class Order {
} }
public void setPetId(Long petId) { public void setPetId(Long petId) {
this.petId = petId; this.petId = petId;
} }
@ -165,7 +163,6 @@ public class Order {
} }
public void setQuantity(Integer quantity) { public void setQuantity(Integer quantity) {
this.quantity = quantity; this.quantity = quantity;
} }
@ -191,7 +188,6 @@ public class Order {
} }
public void setShipDate(OffsetDateTime shipDate) { public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate; this.shipDate = shipDate;
} }
@ -217,7 +213,6 @@ public class Order {
} }
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }
@ -243,7 +238,6 @@ public class Order {
} }
public void setComplete(Boolean complete) { public void setComplete(Boolean complete) {
this.complete = complete; this.complete = complete;
} }

View File

@ -64,7 +64,6 @@ public class OuterComposite {
} }
public void setMyNumber(BigDecimal myNumber) { public void setMyNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;
} }
@ -90,7 +89,6 @@ public class OuterComposite {
} }
public void setMyString(String myString) { public void setMyString(String myString) {
this.myString = myString; this.myString = myString;
} }
@ -116,7 +114,6 @@ public class OuterComposite {
} }
public void setMyBoolean(Boolean myBoolean) { public void setMyBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean; this.myBoolean = myBoolean;
} }

View File

@ -116,7 +116,6 @@ public class Pet {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -142,7 +141,6 @@ public class Pet {
} }
public void setCategory(Category category) { public void setCategory(Category category) {
this.category = category; this.category = category;
} }
@ -167,7 +165,6 @@ public class Pet {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
@ -197,7 +194,6 @@ public class Pet {
} }
public void setPhotoUrls(List<String> photoUrls) { public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls; this.photoUrls = photoUrls;
} }
@ -231,7 +227,6 @@ public class Pet {
} }
public void setTags(List<Tag> tags) { public void setTags(List<Tag> tags) {
this.tags = tags; this.tags = tags;
} }
@ -257,7 +252,6 @@ public class Pet {
} }
public void setStatus(StatusEnum status) { public void setStatus(StatusEnum status) {
this.status = status; this.status = status;
} }

View File

@ -75,7 +75,6 @@ public class ReadOnlyFirst {
} }
public void setBaz(String baz) { public void setBaz(String baz) {
this.baz = baz; this.baz = baz;
} }

View File

@ -55,7 +55,6 @@ public class SpecialModelName {
} }
public void set$SpecialPropertyName(Long $specialPropertyName) { public void set$SpecialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;
} }

View File

@ -59,7 +59,6 @@ public class Tag {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -85,7 +84,6 @@ public class Tag {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -73,7 +73,6 @@ public class TypeHolderDefault {
} }
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -98,7 +97,6 @@ public class TypeHolderDefault {
} }
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -123,7 +121,6 @@ public class TypeHolderDefault {
} }
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -148,7 +145,6 @@ public class TypeHolderDefault {
} }
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -178,7 +174,6 @@ public class TypeHolderDefault {
} }
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -77,7 +77,6 @@ public class TypeHolderExample {
} }
public void setStringItem(String stringItem) { public void setStringItem(String stringItem) {
this.stringItem = stringItem; this.stringItem = stringItem;
} }
@ -102,7 +101,6 @@ public class TypeHolderExample {
} }
public void setNumberItem(BigDecimal numberItem) { public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem; this.numberItem = numberItem;
} }
@ -127,7 +125,6 @@ public class TypeHolderExample {
} }
public void setFloatItem(Float floatItem) { public void setFloatItem(Float floatItem) {
this.floatItem = floatItem; this.floatItem = floatItem;
} }
@ -152,7 +149,6 @@ public class TypeHolderExample {
} }
public void setIntegerItem(Integer integerItem) { public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem; this.integerItem = integerItem;
} }
@ -177,7 +173,6 @@ public class TypeHolderExample {
} }
public void setBoolItem(Boolean boolItem) { public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem; this.boolItem = boolItem;
} }
@ -207,7 +202,6 @@ public class TypeHolderExample {
} }
public void setArrayItem(List<Integer> arrayItem) { public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem; this.arrayItem = arrayItem;
} }

View File

@ -83,7 +83,6 @@ public class User {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -109,7 +108,6 @@ public class User {
} }
public void setUsername(String username) { public void setUsername(String username) {
this.username = username; this.username = username;
} }
@ -135,7 +133,6 @@ public class User {
} }
public void setFirstName(String firstName) { public void setFirstName(String firstName) {
this.firstName = firstName; this.firstName = firstName;
} }
@ -161,7 +158,6 @@ public class User {
} }
public void setLastName(String lastName) { public void setLastName(String lastName) {
this.lastName = lastName; this.lastName = lastName;
} }
@ -187,7 +183,6 @@ public class User {
} }
public void setEmail(String email) { public void setEmail(String email) {
this.email = email; this.email = email;
} }
@ -213,7 +208,6 @@ public class User {
} }
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
@ -239,7 +233,6 @@ public class User {
} }
public void setPhone(String phone) { public void setPhone(String phone) {
this.phone = phone; this.phone = phone;
} }
@ -265,7 +258,6 @@ public class User {
} }
public void setUserStatus(Integer userStatus) { public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus; this.userStatus = userStatus;
} }

View File

@ -170,7 +170,6 @@ public class XmlItem {
} }
public void setAttributeString(String attributeString) { public void setAttributeString(String attributeString) {
this.attributeString = attributeString; this.attributeString = attributeString;
} }
@ -196,7 +195,6 @@ public class XmlItem {
} }
public void setAttributeNumber(BigDecimal attributeNumber) { public void setAttributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber; this.attributeNumber = attributeNumber;
} }
@ -222,7 +220,6 @@ public class XmlItem {
} }
public void setAttributeInteger(Integer attributeInteger) { public void setAttributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger; this.attributeInteger = attributeInteger;
} }
@ -248,7 +245,6 @@ public class XmlItem {
} }
public void setAttributeBoolean(Boolean attributeBoolean) { public void setAttributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean; this.attributeBoolean = attributeBoolean;
} }
@ -282,7 +278,6 @@ public class XmlItem {
} }
public void setWrappedArray(List<Integer> wrappedArray) { public void setWrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray; this.wrappedArray = wrappedArray;
} }
@ -308,7 +303,6 @@ public class XmlItem {
} }
public void setNameString(String nameString) { public void setNameString(String nameString) {
this.nameString = nameString; this.nameString = nameString;
} }
@ -334,7 +328,6 @@ public class XmlItem {
} }
public void setNameNumber(BigDecimal nameNumber) { public void setNameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber; this.nameNumber = nameNumber;
} }
@ -360,7 +353,6 @@ public class XmlItem {
} }
public void setNameInteger(Integer nameInteger) { public void setNameInteger(Integer nameInteger) {
this.nameInteger = nameInteger; this.nameInteger = nameInteger;
} }
@ -386,7 +378,6 @@ public class XmlItem {
} }
public void setNameBoolean(Boolean nameBoolean) { public void setNameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean; this.nameBoolean = nameBoolean;
} }
@ -420,7 +411,6 @@ public class XmlItem {
} }
public void setNameArray(List<Integer> nameArray) { public void setNameArray(List<Integer> nameArray) {
this.nameArray = nameArray; this.nameArray = nameArray;
} }
@ -454,7 +444,6 @@ public class XmlItem {
} }
public void setNameWrappedArray(List<Integer> nameWrappedArray) { public void setNameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray; this.nameWrappedArray = nameWrappedArray;
} }
@ -480,7 +469,6 @@ public class XmlItem {
} }
public void setPrefixString(String prefixString) { public void setPrefixString(String prefixString) {
this.prefixString = prefixString; this.prefixString = prefixString;
} }
@ -506,7 +494,6 @@ public class XmlItem {
} }
public void setPrefixNumber(BigDecimal prefixNumber) { public void setPrefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber; this.prefixNumber = prefixNumber;
} }
@ -532,7 +519,6 @@ public class XmlItem {
} }
public void setPrefixInteger(Integer prefixInteger) { public void setPrefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger; this.prefixInteger = prefixInteger;
} }
@ -558,7 +544,6 @@ public class XmlItem {
} }
public void setPrefixBoolean(Boolean prefixBoolean) { public void setPrefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean; this.prefixBoolean = prefixBoolean;
} }
@ -592,7 +577,6 @@ public class XmlItem {
} }
public void setPrefixArray(List<Integer> prefixArray) { public void setPrefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray; this.prefixArray = prefixArray;
} }
@ -626,7 +610,6 @@ public class XmlItem {
} }
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) { public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray; this.prefixWrappedArray = prefixWrappedArray;
} }
@ -652,7 +635,6 @@ public class XmlItem {
} }
public void setNamespaceString(String namespaceString) { public void setNamespaceString(String namespaceString) {
this.namespaceString = namespaceString; this.namespaceString = namespaceString;
} }
@ -678,7 +660,6 @@ public class XmlItem {
} }
public void setNamespaceNumber(BigDecimal namespaceNumber) { public void setNamespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber; this.namespaceNumber = namespaceNumber;
} }
@ -704,7 +685,6 @@ public class XmlItem {
} }
public void setNamespaceInteger(Integer namespaceInteger) { public void setNamespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger; this.namespaceInteger = namespaceInteger;
} }
@ -730,7 +710,6 @@ public class XmlItem {
} }
public void setNamespaceBoolean(Boolean namespaceBoolean) { public void setNamespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean; this.namespaceBoolean = namespaceBoolean;
} }
@ -764,7 +743,6 @@ public class XmlItem {
} }
public void setNamespaceArray(List<Integer> namespaceArray) { public void setNamespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray; this.namespaceArray = namespaceArray;
} }
@ -798,7 +776,6 @@ public class XmlItem {
} }
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) { public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray; this.namespaceWrappedArray = namespaceWrappedArray;
} }
@ -824,7 +801,6 @@ public class XmlItem {
} }
public void setPrefixNsString(String prefixNsString) { public void setPrefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString; this.prefixNsString = prefixNsString;
} }
@ -850,7 +826,6 @@ public class XmlItem {
} }
public void setPrefixNsNumber(BigDecimal prefixNsNumber) { public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber; this.prefixNsNumber = prefixNsNumber;
} }
@ -876,7 +851,6 @@ public class XmlItem {
} }
public void setPrefixNsInteger(Integer prefixNsInteger) { public void setPrefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger; this.prefixNsInteger = prefixNsInteger;
} }
@ -902,7 +876,6 @@ public class XmlItem {
} }
public void setPrefixNsBoolean(Boolean prefixNsBoolean) { public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean; this.prefixNsBoolean = prefixNsBoolean;
} }
@ -936,7 +909,6 @@ public class XmlItem {
} }
public void setPrefixNsArray(List<Integer> prefixNsArray) { public void setPrefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray; this.prefixNsArray = prefixNsArray;
} }
@ -970,7 +942,6 @@ public class XmlItem {
} }
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) { public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray; this.prefixNsWrappedArray = prefixNsWrappedArray;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -107,7 +107,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapString(Map<String, String> mapString) { public void setMapString(Map<String, String> mapString) {
this.mapString = mapString; this.mapString = mapString;
} }
@ -141,7 +140,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapNumber(Map<String, BigDecimal> mapNumber) { public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber; this.mapNumber = mapNumber;
} }
@ -175,7 +173,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapInteger(Map<String, Integer> mapInteger) { public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger; this.mapInteger = mapInteger;
} }
@ -209,7 +206,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapBoolean(Map<String, Boolean> mapBoolean) { public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean; this.mapBoolean = mapBoolean;
} }
@ -243,7 +239,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) { public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger; this.mapArrayInteger = mapArrayInteger;
} }
@ -277,7 +272,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) { public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype; this.mapArrayAnytype = mapArrayAnytype;
} }
@ -311,7 +305,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapString(Map<String, Map<String, String>> mapMapString) { public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString; this.mapMapString = mapMapString;
} }
@ -345,7 +338,6 @@ public class AdditionalPropertiesClass {
} }
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) { public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype; this.mapMapAnytype = mapMapAnytype;
} }
@ -371,7 +363,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype1(Object anytype1) { public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1; this.anytype1 = anytype1;
} }
@ -397,7 +388,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype2(Object anytype2) { public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2; this.anytype2 = anytype2;
} }
@ -423,7 +413,6 @@ public class AdditionalPropertiesClass {
} }
public void setAnytype3(Object anytype3) { public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3; this.anytype3 = anytype3;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -58,7 +58,6 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -57,7 +57,6 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

View File

@ -66,7 +66,6 @@ public class Animal {
} }
public void setClassName(String className) { public void setClassName(String className) {
this.className = className; this.className = className;
} }
@ -92,7 +91,6 @@ public class Animal {
} }
public void setColor(String color) { public void setColor(String color) {
this.color = color; this.color = color;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfArrayOfNumberOnly {
} }
public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) { public void setArrayArrayNumber(List<List<BigDecimal>> arrayArrayNumber) {
this.arrayArrayNumber = arrayArrayNumber; this.arrayArrayNumber = arrayArrayNumber;
} }

View File

@ -66,7 +66,6 @@ public class ArrayOfNumberOnly {
} }
public void setArrayNumber(List<BigDecimal> arrayNumber) { public void setArrayNumber(List<BigDecimal> arrayNumber) {
this.arrayNumber = arrayNumber; this.arrayNumber = arrayNumber;
} }

View File

@ -74,7 +74,6 @@ public class ArrayTest {
} }
public void setArrayOfString(List<String> arrayOfString) { public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString; this.arrayOfString = arrayOfString;
} }
@ -108,7 +107,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) { public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger; this.arrayArrayOfInteger = arrayArrayOfInteger;
} }
@ -142,7 +140,6 @@ public class ArrayTest {
} }
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) { public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel; this.arrayArrayOfModel = arrayArrayOfModel;
} }

View File

@ -75,7 +75,6 @@ public class Capitalization {
} }
public void setSmallCamel(String smallCamel) { public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;
} }
@ -101,7 +100,6 @@ public class Capitalization {
} }
public void setCapitalCamel(String capitalCamel) { public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel; this.capitalCamel = capitalCamel;
} }
@ -127,7 +125,6 @@ public class Capitalization {
} }
public void setSmallSnake(String smallSnake) { public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake; this.smallSnake = smallSnake;
} }
@ -153,7 +150,6 @@ public class Capitalization {
} }
public void setCapitalSnake(String capitalSnake) { public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake; this.capitalSnake = capitalSnake;
} }
@ -179,7 +175,6 @@ public class Capitalization {
} }
public void setScAETHFlowPoints(String scAETHFlowPoints) { public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints; this.scAETHFlowPoints = scAETHFlowPoints;
} }
@ -205,7 +200,6 @@ public class Capitalization {
} }
public void setATTNAME(String ATT_NAME) { public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME; this.ATT_NAME = ATT_NAME;
} }

View File

@ -57,7 +57,6 @@ public class Cat extends Animal {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -55,7 +55,6 @@ public class CatAllOf {
} }
public void setDeclawed(Boolean declawed) { public void setDeclawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;
} }

View File

@ -59,7 +59,6 @@ public class Category {
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -84,7 +83,6 @@ public class Category {
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }

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