[Java][okhttp-gson] remove unreachable code from templates (#17057)

* Remove checks for jackson and jsonb from okhttp-gson templates

* regenerate samples
This commit is contained in:
Charles Treatman 2023-11-13 21:13:28 -06:00 committed by GitHub
parent 91ac75ff05
commit c8b3da7388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
222 changed files with 7 additions and 1647 deletions

View File

@ -7,8 +7,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -13,34 +13,9 @@ import {{import}};
{{#serializableModel}}
import java.io.Serializable;
{{/serializableModel}}
{{#jackson}}
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
{{#withXml}}
import com.fasterxml.jackson.dataformat.xml.annotation.*;
{{/withXml}}
{{#vendorExtensions.x-has-readonly-properties}}
import com.fasterxml.jackson.annotation.JsonCreator;
{{/vendorExtensions.x-has-readonly-properties}}
{{/jackson}}
{{#withXml}}
import {{javaxPackage}}.xml.bind.annotation.*;
{{/withXml}}
{{#jsonb}}
import java.lang.reflect.Type;
import {{javaxPackage}}.json.bind.annotation.JsonbTypeDeserializer;
import {{javaxPackage}}.json.bind.annotation.JsonbTypeSerializer;
import {{javaxPackage}}.json.bind.serializer.DeserializationContext;
import {{javaxPackage}}.json.bind.serializer.JsonbDeserializer;
import {{javaxPackage}}.json.bind.serializer.JsonbSerializer;
import {{javaxPackage}}.json.bind.serializer.SerializationContext;
import {{javaxPackage}}.json.stream.JsonGenerator;
import {{javaxPackage}}.json.stream.JsonParser;
import {{javaxPackage}}.json.bind.annotation.JsonbProperty;
{{#vendorExtensions.x-has-readonly-properties}}
import {{javaxPackage}}.json.bind.annotation.JsonbCreator;
{{/vendorExtensions.x-has-readonly-properties}}
{{/jsonb}}
{{#parcelableModel}}
import android.os.Parcelable;
import android.os.Parcel;

View File

@ -1,26 +1,14 @@
{{#jackson}}
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
{{/jackson}}
{{#gson}}
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.JsonElement;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
{{/gson}}
/**
* {{description}}{{^description}}Gets or Sets {{{name}}}{{/description}}
*/
{{#gson}}
@JsonAdapter({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.Adapter.class)
{{/gson}}
{{#jsonb}}
@JsonbTypeSerializer({{datatypeWithEnum}}.Serializer.class)
@JsonbTypeDeserializer({{datatypeWithEnum}}.Deserializer.class)
{{/jsonb}}
{{>additionalEnumTypeAnnotations}}public enum {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} {
{{#allowableValues}}{{#enumVars}}
{{#enumDescription}}
@ -40,9 +28,6 @@ import com.google.gson.stream.JsonWriter;
this.value = value;
}
{{#jackson}}
@JsonValue
{{/jackson}}
public {{{dataType}}} getValue() {
return value;
}
@ -52,9 +37,6 @@ import com.google.gson.stream.JsonWriter;
return String.valueOf(value);
}
{{#jackson}}
@JsonCreator
{{/jackson}}
public static {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} fromValue({{{dataType}}} value) {
for ({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} b : {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.values()) {
if (b.value.{{^isString}}equals{{/isString}}{{#isString}}{{#useEnumCaseInsensitive}}equalsIgnoreCase{{/useEnumCaseInsensitive}}{{^useEnumCaseInsensitive}}equals{{/useEnumCaseInsensitive}}{{/isString}}(value)) {
@ -63,7 +45,6 @@ import com.google.gson.stream.JsonWriter;
}
{{#isNullable}}return null;{{/isNullable}}{{^isNullable}}{{#enumUnknownDefaultCase}}{{#allowableValues}}{{#enumVars}}{{#-last}}return {{{name}}};{{/-last}}{{/enumVars}}{{/allowableValues}}{{/enumUnknownDefaultCase}}{{^enumUnknownDefaultCase}}throw new IllegalArgumentException("Unexpected value '" + value + "'");{{/enumUnknownDefaultCase}}{{/isNullable}}
}
{{#gson}}
public static class Adapter extends TypeAdapter<{{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}> {
@Override
@ -82,28 +63,6 @@ import com.google.gson.stream.JsonWriter;
{{^isNumber}}{{{dataType}}}{{/isNumber}}{{#isNumber}}String{{/isNumber}} value = jsonElement.{{#isNumber}}getAsString(){{/isNumber}}{{#isInteger}}getAsInt(){{/isInteger}}{{^isNumber}}{{^isInteger}}getAs{{{dataType}}}(){{/isInteger}}{{/isNumber}};
{{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.fromValue({{#isNumber}}new BigDecimal({{/isNumber}}value{{#isNumber}}){{/isNumber}});
}
{{/gson}}
{{#jsonb}}
public static final class Deserializer implements JsonbDeserializer<{{datatypeWithEnum}}> {
@Override
public {{datatypeWithEnum}} deserialize(JsonParser parser, DeserializationContext ctx, Type rtType) {
for ({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} b : {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.values()) {
if (String.valueOf(b.value).equals(parser.getString())) {
return b;
}
}
{{#useNullForUnknownEnumValue}}return null;{{/useNullForUnknownEnumValue}}{{^useNullForUnknownEnumValue}}throw new IllegalArgumentException("Unexpected value '" + parser.getString() + "'");{{/useNullForUnknownEnumValue}}
}
}
public static final class Serializer implements JsonbSerializer<{{datatypeWithEnum}}> {
@Override
public void serialize({{datatypeWithEnum}} obj, JsonGenerator generator, SerializationContext ctx) {
generator.write(obj.value);
}
}
{{/jsonb}}
{{#supportUrlQuery}}
/**

View File

@ -1,13 +1,7 @@
/**
* {{description}}{{^description}}Gets or Sets {{{name}}}{{/description}}
*/
{{#gson}}
@JsonAdapter({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}.Adapter.class)
{{/gson}}
{{#jsonb}}
@JsonbTypeSerializer({{datatypeWithEnum}}.Serializer.class)
@JsonbTypeDeserializer({{datatypeWithEnum}}.Deserializer.class)
{{/jsonb}}
{{#withXml}}
@XmlType(name="{{datatypeWithEnum}}")
@XmlEnum({{dataType}}.class)
@ -34,9 +28,6 @@
this.value = value;
}
{{#jackson}}
@JsonValue
{{/jackson}}
public {{{dataType}}} getValue() {
return value;
}
@ -46,9 +37,6 @@
return String.valueOf(value);
}
{{#jackson}}
@JsonCreator
{{/jackson}}
public static {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} fromValue({{{dataType}}} value) {
for ({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} b : {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.values()) {
if (b.value.{{^isString}}equals{{/isString}}{{#isString}}{{#useEnumCaseInsensitive}}equalsIgnoreCase{{/useEnumCaseInsensitive}}{{^useEnumCaseInsensitive}}equals{{/useEnumCaseInsensitive}}{{/isString}}(value)) {
@ -57,7 +45,6 @@
}
{{#isNullable}}return null;{{/isNullable}}{{^isNullable}}{{#enumUnknownDefaultCase}}{{#allowableValues}}{{#enumVars}}{{#-last}}return {{{name}}};{{/-last}}{{/enumVars}}{{/allowableValues}}{{/enumUnknownDefaultCase}}{{^enumUnknownDefaultCase}}throw new IllegalArgumentException("Unexpected value '" + value + "'");{{/enumUnknownDefaultCase}}{{/isNullable}}
}
{{#gson}}
public static class Adapter extends TypeAdapter<{{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}> {
@Override
@ -76,25 +63,4 @@
{{^isNumber}}{{{dataType}}}{{/isNumber}}{{#isNumber}}String{{/isNumber}} value = jsonElement.{{#isNumber}}getAsString(){{/isNumber}}{{#isInteger}}getAsInt(){{/isInteger}}{{^isNumber}}{{^isInteger}}getAs{{{dataType}}}(){{/isInteger}}{{/isNumber}};
{{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.fromValue({{#isNumber}}new BigDecimal({{/isNumber}}value{{#isNumber}}){{/isNumber}});
}
{{/gson}}
{{#jsonb}}
public static final class Deserializer implements JsonbDeserializer<{{datatypeWithEnum}}> {
@Override
public {{datatypeWithEnum}} deserialize(JsonParser parser, DeserializationContext ctx, Type rtType) {
for ({{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}} b : {{{datatypeWithEnum}}}{{^datatypeWithEnum}}{{{classname}}}{{/datatypeWithEnum}}.values()) {
if (String.valueOf(b.value).equals(parser.getString())) {
return b;
}
}
{{#useNullForUnknownEnumValue}}return null;{{/useNullForUnknownEnumValue}}{{^useNullForUnknownEnumValue}}throw new IllegalArgumentException("Unexpected value '" + parser.getString() + "'");{{/useNullForUnknownEnumValue}}
}
}
public static final class Serializer implements JsonbSerializer<{{datatypeWithEnum}}> {
@Override
public void serialize({{datatypeWithEnum}} obj, JsonGenerator generator, SerializationContext ctx) {
generator.write(obj.value);
}
}
{{/jsonb}}
}

View File

@ -37,16 +37,6 @@ import {{invokerPackage}}.JSON;
@Schema(description = "{{{.}}}")
{{/description}}
{{/swagger2AnnotationLibrary}}
{{#jackson}}
@JsonPropertyOrder({
{{#vars}}
{{classname}}.JSON_PROPERTY_{{nameInSnakeCase}}{{^-last}},{{/-last}}
{{/vars}}
})
{{#isClassnameSanitized}}
@JsonTypeName("{{name}}")
{{/isClassnameSanitized}}
{{/jackson}}
{{>additionalModelTypeAnnotations}}{{>generatedAnnotation}}{{#discriminator}}{{>typeInfoAnnotation}}{{/discriminator}}{{>xmlAnnotation}}
{{#vendorExtensions.x-class-extra-annotation}}
{{{vendorExtensions.x-class-extra-annotation}}}
@ -67,12 +57,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{/mostInnerItems}}
{{/isContainer}}
{{/isEnum}}
{{#gson}}
public static final String SERIALIZED_NAME_{{nameInSnakeCase}} = "{{baseName}}";
{{/gson}}
{{#jackson}}
public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}";
{{/jackson}}
{{#withXml}}
{{#isXmlAttribute}}
@XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}")
@ -94,26 +79,14 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{/isContainer}}
{{/isXmlAttribute}}
{{/withXml}}
{{#gson}}
{{#deprecated}}
@Deprecated
{{/deprecated}}
@SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}})
{{/gson}}
{{#vendorExtensions.x-field-extra-annotation}}
{{{vendorExtensions.x-field-extra-annotation}}}
{{/vendorExtensions.x-field-extra-annotation}}
{{#vendorExtensions.x-is-jackson-optional-nullable}}
{{#isContainer}}
private JsonNullable<{{{datatypeWithEnum}}}> {{name}} = JsonNullable.<{{{datatypeWithEnum}}}>undefined();
{{/isContainer}}
{{^isContainer}}
private JsonNullable<{{{datatypeWithEnum}}}> {{name}} = JsonNullable.<{{{datatypeWithEnum}}}>{{#defaultValue}}of({{{.}}}){{/defaultValue}}{{^defaultValue}}undefined(){{/defaultValue}};
{{/isContainer}}
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}
{{#isDiscriminator}}protected{{/isDiscriminator}}{{^isDiscriminator}}private{{/isDiscriminator}} {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{/vars}}
public {{classname}}() {
@ -122,21 +95,18 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
super();
{{/parcelableModel}}
{{/parent}}
{{#gson}}
{{#discriminator}}
{{^discriminator.isEnum}}
this.{{{discriminatorName}}} = this.getClass().getSimpleName();
{{/discriminator.isEnum}}
{{/discriminator}}
{{/gson}}
}
{{#vendorExtensions.x-has-readonly-properties}}
{{^withXml}}
{{#jsonb}}@JsonbCreator{{/jsonb}}{{#jackson}}@JsonCreator{{/jackson}}
public {{classname}}(
{{#readOnlyVars}}
{{#jsonb}}@JsonbProperty("{{baseName}}"){{/jsonb}}{{#jackson}}@JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}){{/jackson}} {{{datatypeWithEnum}}} {{name}}{{^-last}}, {{/-last}}
{{{datatypeWithEnum}}} {{name}}{{^-last}}, {{/-last}}
{{/readOnlyVars}}
) {
this();
@ -153,54 +123,27 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
@Deprecated
{{/deprecated}}
public {{classname}} {{name}}({{{datatypeWithEnum}}} {{name}}) {
{{#vendorExtensions.x-is-jackson-optional-nullable}}this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{name}});{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}this.{{name}} = {{name}};{{/vendorExtensions.x-is-jackson-optional-nullable}}
this.{{name}} = {{name}};
return this;
}
{{#isArray}}
public {{classname}} add{{nameInCamelCase}}Item({{{items.datatypeWithEnum}}} {{name}}Item) {
{{#vendorExtensions.x-is-jackson-optional-nullable}}
if (this.{{name}} == null || !this.{{name}}.isPresent()) {
this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{{defaultValue}}}{{^defaultValue}}new {{#uniqueItems}}LinkedHashSet{{/uniqueItems}}{{^uniqueItems}}ArrayList{{/uniqueItems}}<>(){{/defaultValue}});
}
try {
this.{{name}}.get().add({{name}}Item);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}
if (this.{{name}} == null) {
this.{{name}} = {{{defaultValue}}}{{^defaultValue}}new {{#uniqueItems}}LinkedHashSet{{/uniqueItems}}{{^uniqueItems}}ArrayList{{/uniqueItems}}<>(){{/defaultValue}};
}
this.{{name}}.add({{name}}Item);
return this;
{{/vendorExtensions.x-is-jackson-optional-nullable}}
}
{{/isArray}}
{{#isMap}}
public {{classname}} put{{nameInCamelCase}}Item(String key, {{{items.datatypeWithEnum}}} {{name}}Item) {
{{#vendorExtensions.x-is-jackson-optional-nullable}}
if (this.{{name}} == null || !this.{{name}}.isPresent()) {
this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{{defaultValue}}}{{^defaultValue}}new HashMap<>(){{/defaultValue}});
}
try {
this.{{name}}.get().put(key, {{name}}Item);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}
if (this.{{name}} == null) {
this.{{name}} = {{{defaultValue}}}{{^defaultValue}}new HashMap<>(){{/defaultValue}};
}
this.{{name}}.put(key, {{name}}Item);
return this;
{{/vendorExtensions.x-is-jackson-optional-nullable}}
}
{{/isMap}}
@ -237,9 +180,6 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{^required}}
@{{javaxPackage}}.annotation.Nullable
{{/required}}
{{#jsonb}}
@JsonbProperty("{{baseName}}")
{{/jsonb}}
{{#useBeanValidation}}
{{>beanValidation}}
{{/useBeanValidation}}
@ -252,47 +192,15 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{#vendorExtensions.x-extra-annotation}}
{{{vendorExtensions.x-extra-annotation}}}
{{/vendorExtensions.x-extra-annotation}}
{{#vendorExtensions.x-is-jackson-optional-nullable}}
{{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}}
@JsonIgnore
{{/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}}() {
{{#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}}
if ({{name}} == null) {
{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>{{#defaultValue}}of({{{.}}}){{/defaultValue}}{{^defaultValue}}undefined(){{/defaultValue}};
}
{{/isReadOnly}}
return {{name}}.orElse(null);
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}
return {{name}};
{{/vendorExtensions.x-is-jackson-optional-nullable}}
}
{{#vendorExtensions.x-is-jackson-optional-nullable}}
{{> jackson_annotations}}
public JsonNullable<{{{datatypeWithEnum}}}> {{getter}}_JsonNullable() {
public {{{datatypeWithEnum}}} {{getter}}() {
return {{name}};
}
{{/vendorExtensions.x-is-jackson-optional-nullable}}{{#vendorExtensions.x-is-jackson-optional-nullable}}
@JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}})
{{#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}};
}
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^isReadOnly}}
{{#vendorExtensions.x-setter-extra-annotation}} {{{vendorExtensions.x-setter-extra-annotation}}}
{{/vendorExtensions.x-setter-extra-annotation}}{{#jackson}}{{^vendorExtensions.x-is-jackson-optional-nullable}}{{> jackson_annotations}}{{/vendorExtensions.x-is-jackson-optional-nullable}}{{/jackson}}{{#deprecated}} @Deprecated
{{/vendorExtensions.x-setter-extra-annotation}}{{#deprecated}} @Deprecated
{{/deprecated}} public void {{setter}}({{{datatypeWithEnum}}} {{name}}) {
{{#vendorExtensions.x-is-jackson-optional-nullable}}
this.{{name}} = JsonNullable.<{{{datatypeWithEnum}}}>of({{name}});
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}
this.{{name}} = {{name}};
{{/vendorExtensions.x-is-jackson-optional-nullable}}
}
{{/isReadOnly}}
@ -312,7 +220,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
return false;
}{{#hasVars}}
{{classname}} {{classVarName}} = ({{classname}}) o;
return {{#vars}}{{#vendorExtensions.x-is-jackson-optional-nullable}}equalsNullable(this.{{name}}, {{classVarName}}.{{name}}){{/vendorExtensions.x-is-jackson-optional-nullable}}{{^vendorExtensions.x-is-jackson-optional-nullable}}{{#isByteArray}}Arrays{{/isByteArray}}{{^isByteArray}}Objects{{/isByteArray}}.equals(this.{{name}}, {{classVarName}}.{{name}}){{/vendorExtensions.x-is-jackson-optional-nullable}}{{^-last}} &&
return {{#vars}}{{#isByteArray}}Arrays{{/isByteArray}}{{^isByteArray}}Objects{{/isByteArray}}.equals(this.{{name}}, {{classVarName}}.{{name}}){{^-last}} &&
{{/-last}}{{/vars}}{{#isAdditionalPropertiesTrue}}&&
Objects.equals(this.additionalProperties, {{classVarName}}.additionalProperties){{/isAdditionalPropertiesTrue}}{{#parent}} &&
super.equals(o){{/parent}};{{/hasVars}}{{^hasVars}}
@ -330,7 +238,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
return HashCodeBuilder.reflectionHashCode(this);
{{/useReflectionEqualsHashCode}}
{{^useReflectionEqualsHashCode}}
return Objects.hash({{#vars}}{{#vendorExtensions.x-is-jackson-optional-nullable}}hashCodeNullable({{name}}){{/vendorExtensions.x-is-jackson-optional-nullable}}{{^vendorExtensions.x-is-jackson-optional-nullable}}{{^isByteArray}}{{name}}{{/isByteArray}}{{#isByteArray}}Arrays.hashCode({{name}}){{/isByteArray}}{{/vendorExtensions.x-is-jackson-optional-nullable}}{{^-last}}, {{/-last}}{{/vars}}{{#parent}}{{#hasVars}}, {{/hasVars}}super.hashCode(){{/parent}}{{#isAdditionalPropertiesTrue}}{{#hasVars}}, {{/hasVars}}{{^hasVars}}{{#parent}}, {{/parent}}{{/hasVars}}additionalProperties{{/isAdditionalPropertiesTrue}});
return Objects.hash({{#vars}}{{^isByteArray}}{{name}}{{/isByteArray}}{{#isByteArray}}Arrays.hashCode({{name}}){{/isByteArray}}{{^-last}}, {{/-last}}{{/vars}}{{#parent}}{{#hasVars}}, {{/hasVars}}super.hashCode(){{/parent}}{{#isAdditionalPropertiesTrue}}{{#hasVars}}, {{/hasVars}}{{^hasVars}}{{#parent}}, {{/parent}}{{/hasVars}}additionalProperties{{/isAdditionalPropertiesTrue}});
{{/useReflectionEqualsHashCode}}
}{{#vendorExtensions.x-jackson-optional-nullable-helpers}}
@ -362,7 +270,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private{{#jsonb}} static{{/jsonb}} String toIndentedString(Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -63,7 +63,6 @@ public class Bird {
}
public Bird size(String size) {
this.size = size;
return this;
}
@ -77,14 +76,12 @@ public class Bird {
return size;
}
public void setSize(String size) {
this.size = size;
}
public Bird color(String color) {
this.color = color;
return this;
}
@ -98,7 +95,6 @@ public class Bird {
return color;
}
public void setColor(String color) {
this.color = color;
}

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -71,7 +71,6 @@ public class DataQuery extends Query {
}
public DataQuery suffix(String suffix) {
this.suffix = suffix;
return this;
}
@ -85,14 +84,12 @@ public class DataQuery extends Query {
return suffix;
}
public void setSuffix(String suffix) {
this.suffix = suffix;
}
public DataQuery text(String text) {
this.text = text;
return this;
}
@ -106,14 +103,12 @@ public class DataQuery extends Query {
return text;
}
public void setText(String text) {
this.text = text;
}
public DataQuery date(OffsetDateTime date) {
this.date = date;
return this;
}
@ -127,7 +122,6 @@ public class DataQuery extends Query {
return date;
}
public void setDate(OffsetDateTime date) {
this.date = date;
}

View File

@ -145,7 +145,6 @@ public class DefaultValue {
}
public DefaultValue arrayStringEnumRefDefault(List<StringEnumRef> arrayStringEnumRefDefault) {
this.arrayStringEnumRefDefault = arrayStringEnumRefDefault;
return this;
}
@ -167,14 +166,12 @@ public class DefaultValue {
return arrayStringEnumRefDefault;
}
public void setArrayStringEnumRefDefault(List<StringEnumRef> arrayStringEnumRefDefault) {
this.arrayStringEnumRefDefault = arrayStringEnumRefDefault;
}
public DefaultValue arrayStringEnumDefault(List<ArrayStringEnumDefaultEnum> arrayStringEnumDefault) {
this.arrayStringEnumDefault = arrayStringEnumDefault;
return this;
}
@ -196,14 +193,12 @@ public class DefaultValue {
return arrayStringEnumDefault;
}
public void setArrayStringEnumDefault(List<ArrayStringEnumDefaultEnum> arrayStringEnumDefault) {
this.arrayStringEnumDefault = arrayStringEnumDefault;
}
public DefaultValue arrayStringDefault(List<String> arrayStringDefault) {
this.arrayStringDefault = arrayStringDefault;
return this;
}
@ -225,14 +220,12 @@ public class DefaultValue {
return arrayStringDefault;
}
public void setArrayStringDefault(List<String> arrayStringDefault) {
this.arrayStringDefault = arrayStringDefault;
}
public DefaultValue arrayIntegerDefault(List<Integer> arrayIntegerDefault) {
this.arrayIntegerDefault = arrayIntegerDefault;
return this;
}
@ -254,14 +247,12 @@ public class DefaultValue {
return arrayIntegerDefault;
}
public void setArrayIntegerDefault(List<Integer> arrayIntegerDefault) {
this.arrayIntegerDefault = arrayIntegerDefault;
}
public DefaultValue arrayString(List<String> arrayString) {
this.arrayString = arrayString;
return this;
}
@ -283,14 +274,12 @@ public class DefaultValue {
return arrayString;
}
public void setArrayString(List<String> arrayString) {
this.arrayString = arrayString;
}
public DefaultValue arrayStringNullable(List<String> arrayStringNullable) {
this.arrayStringNullable = arrayStringNullable;
return this;
}
@ -312,14 +301,12 @@ public class DefaultValue {
return arrayStringNullable;
}
public void setArrayStringNullable(List<String> arrayStringNullable) {
this.arrayStringNullable = arrayStringNullable;
}
public DefaultValue arrayStringExtensionNullable(List<String> arrayStringExtensionNullable) {
this.arrayStringExtensionNullable = arrayStringExtensionNullable;
return this;
}
@ -341,14 +328,12 @@ public class DefaultValue {
return arrayStringExtensionNullable;
}
public void setArrayStringExtensionNullable(List<String> arrayStringExtensionNullable) {
this.arrayStringExtensionNullable = arrayStringExtensionNullable;
}
public DefaultValue stringNullable(String stringNullable) {
this.stringNullable = stringNullable;
return this;
}
@ -362,7 +347,6 @@ public class DefaultValue {
return stringNullable;
}
public void setStringNullable(String stringNullable) {
this.stringNullable = stringNullable;
}

View File

@ -68,7 +68,6 @@ public class NumberPropertiesOnly {
}
public NumberPropertiesOnly number(BigDecimal number) {
this.number = number;
return this;
}
@ -82,14 +81,12 @@ public class NumberPropertiesOnly {
return number;
}
public void setNumber(BigDecimal number) {
this.number = number;
}
public NumberPropertiesOnly _float(Float _float) {
this._float = _float;
return this;
}
@ -103,14 +100,12 @@ public class NumberPropertiesOnly {
return _float;
}
public void setFloat(Float _float) {
this._float = _float;
}
public NumberPropertiesOnly _double(Double _double) {
this._double = _double;
return this;
}
@ -126,7 +121,6 @@ public class NumberPropertiesOnly {
return _double;
}
public void setDouble(Double _double) {
this._double = _double;
}

View File

@ -137,7 +137,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -151,14 +150,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -172,14 +169,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -193,14 +188,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -222,14 +215,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -251,14 +242,12 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -272,7 +261,6 @@ public class Pet {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}

View File

@ -119,7 +119,6 @@ public class Query {
}
public Query id(Long id) {
this.id = id;
return this;
}
@ -133,14 +132,12 @@ public class Query {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Query outcomes(List<OutcomesEnum> outcomes) {
this.outcomes = outcomes;
return this;
}
@ -162,7 +159,6 @@ public class Query {
return outcomes;
}
public void setOutcomes(List<OutcomesEnum> outcomes) {
this.outcomes = outcomes;
}

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -71,7 +71,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
}
public TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter size(String size) {
this.size = size;
return this;
}
@ -85,14 +84,12 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
return size;
}
public void setSize(String size) {
this.size = size;
}
public TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter color(String color) {
this.color = color;
return this;
}
@ -106,14 +103,12 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
return color;
}
public void setColor(String color) {
this.color = color;
}
public TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter id(Long id) {
this.id = id;
return this;
}
@ -127,14 +122,12 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
return id;
}
public void setId(Long id) {
this.id = id;
}
public TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter name(String name) {
this.name = name;
return this;
}
@ -148,7 +141,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -61,7 +61,6 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
}
public TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter values(List<String> values) {
this.values = values;
return this;
}
@ -83,7 +82,6 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
return values;
}
public void setValues(List<String> values) {
this.values = values;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -128,7 +128,6 @@ public class SomeObj implements Serializable {
}
public SomeObj $type(TypeEnum $type) {
this.$type = $type;
return this;
}
@ -142,14 +141,12 @@ public class SomeObj implements Serializable {
return $type;
}
public void set$Type(TypeEnum $type) {
this.$type = $type;
}
public SomeObj id(Long id) {
this.id = id;
return this;
}
@ -163,14 +160,12 @@ public class SomeObj implements Serializable {
return id;
}
public void setId(Long id) {
this.id = id;
}
public SomeObj name(String name) {
this.name = name;
return this;
}
@ -184,14 +179,12 @@ public class SomeObj implements Serializable {
return name;
}
public void setName(String name) {
this.name = name;
}
public SomeObj active(Boolean active) {
this.active = active;
return this;
}
@ -205,14 +198,12 @@ public class SomeObj implements Serializable {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public SomeObj type(String type) {
this.type = type;
return this;
}
@ -226,7 +217,6 @@ public class SomeObj implements Serializable {
return type;
}
public void setType(String type) {
this.type = type;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -64,7 +64,6 @@ public class Animal {
}
public Animal className(String className) {
this.className = className;
return this;
}
@ -78,14 +77,12 @@ public class Animal {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public Animal color(String color) {
this.color = color;
return this;
}
@ -99,7 +96,6 @@ public class Animal {
return color;
}
public void setColor(String color) {
this.color = color;
}

View File

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

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

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

View File

@ -67,7 +67,6 @@ public class ModelApiResponse {
}
public ModelApiResponse code(Integer code) {
this.code = code;
return this;
}
@ -81,14 +80,12 @@ public class ModelApiResponse {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ModelApiResponse type(String type) {
this.type = type;
return this;
}
@ -102,14 +99,12 @@ public class ModelApiResponse {
return type;
}
public void setType(String type) {
this.type = type;
}
public ModelApiResponse message(String message) {
this.message = message;
return this;
}
@ -123,7 +118,6 @@ public class ModelApiResponse {
return message;
}
public void setMessage(String message) {
this.message = message;
}

View File

@ -134,7 +134,6 @@ public class Order {
}
public Order id(Long id) {
this.id = id;
return this;
}
@ -148,14 +147,12 @@ public class Order {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Order petId(Long petId) {
this.petId = petId;
return this;
}
@ -169,14 +166,12 @@ public class Order {
return petId;
}
public void setPetId(Long petId) {
this.petId = petId;
}
public Order quantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -190,14 +185,12 @@ public class Order {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Order shipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
return this;
}
@ -211,14 +204,12 @@ public class Order {
return shipDate;
}
public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
}
public Order status(StatusEnum status) {
this.status = status;
return this;
}
@ -232,14 +223,12 @@ public class Order {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public Order complete(Boolean complete) {
this.complete = complete;
return this;
}
@ -253,7 +242,6 @@ public class Order {
return complete;
}
public void setComplete(Boolean complete) {
this.complete = complete;
}

View File

@ -138,7 +138,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -152,14 +151,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -173,14 +170,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -194,14 +189,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -223,14 +216,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -252,7 +243,6 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -260,7 +250,6 @@ public class Pet {
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -276,7 +265,6 @@ public class Pet {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -87,7 +87,6 @@ public class User {
}
public User id(Long id) {
this.id = id;
return this;
}
@ -101,14 +100,12 @@ public class User {
return id;
}
public void setId(Long id) {
this.id = id;
}
public User username(String username) {
this.username = username;
return this;
}
@ -122,14 +119,12 @@ public class User {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public User firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ -143,14 +138,12 @@ public class User {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public User lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ -164,14 +157,12 @@ public class User {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public User email(String email) {
this.email = email;
return this;
}
@ -185,14 +176,12 @@ public class User {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User password(String password) {
this.password = password;
return this;
}
@ -206,14 +195,12 @@ public class User {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
@ -227,14 +214,12 @@ public class User {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User userStatus(Integer userStatus) {
this.userStatus = userStatus;
return this;
}
@ -248,7 +233,6 @@ public class User {
return userStatus;
}
public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -67,7 +67,6 @@ public class ModelApiResponse {
}
public ModelApiResponse code(Integer code) {
this.code = code;
return this;
}
@ -81,14 +80,12 @@ public class ModelApiResponse {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ModelApiResponse type(String type) {
this.type = type;
return this;
}
@ -102,14 +99,12 @@ public class ModelApiResponse {
return type;
}
public void setType(String type) {
this.type = type;
}
public ModelApiResponse message(String message) {
this.message = message;
return this;
}
@ -123,7 +118,6 @@ public class ModelApiResponse {
return message;
}
public void setMessage(String message) {
this.message = message;
}

View File

@ -134,7 +134,6 @@ public class Order {
}
public Order id(Long id) {
this.id = id;
return this;
}
@ -148,14 +147,12 @@ public class Order {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Order petId(Long petId) {
this.petId = petId;
return this;
}
@ -169,14 +166,12 @@ public class Order {
return petId;
}
public void setPetId(Long petId) {
this.petId = petId;
}
public Order quantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -190,14 +185,12 @@ public class Order {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Order shipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
return this;
}
@ -211,14 +204,12 @@ public class Order {
return shipDate;
}
public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
}
public Order status(StatusEnum status) {
this.status = status;
return this;
}
@ -232,14 +223,12 @@ public class Order {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public Order complete(Boolean complete) {
this.complete = complete;
return this;
}
@ -253,7 +242,6 @@ public class Order {
return complete;
}
public void setComplete(Boolean complete) {
this.complete = complete;
}

View File

@ -138,7 +138,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -152,14 +151,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -173,14 +170,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -194,14 +189,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -223,14 +216,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -252,7 +243,6 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -260,7 +250,6 @@ public class Pet {
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -276,7 +265,6 @@ public class Pet {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -87,7 +87,6 @@ public class User {
}
public User id(Long id) {
this.id = id;
return this;
}
@ -101,14 +100,12 @@ public class User {
return id;
}
public void setId(Long id) {
this.id = id;
}
public User username(String username) {
this.username = username;
return this;
}
@ -122,14 +119,12 @@ public class User {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public User firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ -143,14 +138,12 @@ public class User {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public User lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ -164,14 +157,12 @@ public class User {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public User email(String email) {
this.email = email;
return this;
}
@ -185,14 +176,12 @@ public class User {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User password(String password) {
this.password = password;
return this;
}
@ -206,14 +195,12 @@ public class User {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
@ -227,14 +214,12 @@ public class User {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User userStatus(Integer userStatus) {
this.userStatus = userStatus;
return this;
}
@ -248,7 +233,6 @@ public class User {
return userStatus;
}
public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -59,7 +59,6 @@ public class AdditionalPropertiesAnyType {
}
public AdditionalPropertiesAnyType name(String name) {
this.name = name;
return this;
}
@ -73,7 +72,6 @@ public class AdditionalPropertiesAnyType {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -60,7 +60,6 @@ public class AdditionalPropertiesArray {
}
public AdditionalPropertiesArray name(String name) {
this.name = name;
return this;
}
@ -74,7 +73,6 @@ public class AdditionalPropertiesArray {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -59,7 +59,6 @@ public class AdditionalPropertiesBoolean {
}
public AdditionalPropertiesBoolean name(String name) {
this.name = name;
return this;
}
@ -73,7 +72,6 @@ public class AdditionalPropertiesBoolean {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -103,7 +103,6 @@ public class AdditionalPropertiesClass {
}
public AdditionalPropertiesClass mapString(Map<String, String> mapString) {
this.mapString = mapString;
return this;
}
@ -125,14 +124,12 @@ public class AdditionalPropertiesClass {
return mapString;
}
public void setMapString(Map<String, String> mapString) {
this.mapString = mapString;
}
public AdditionalPropertiesClass mapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber;
return this;
}
@ -154,14 +151,12 @@ public class AdditionalPropertiesClass {
return mapNumber;
}
public void setMapNumber(Map<String, BigDecimal> mapNumber) {
this.mapNumber = mapNumber;
}
public AdditionalPropertiesClass mapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger;
return this;
}
@ -183,14 +178,12 @@ public class AdditionalPropertiesClass {
return mapInteger;
}
public void setMapInteger(Map<String, Integer> mapInteger) {
this.mapInteger = mapInteger;
}
public AdditionalPropertiesClass mapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean;
return this;
}
@ -212,14 +205,12 @@ public class AdditionalPropertiesClass {
return mapBoolean;
}
public void setMapBoolean(Map<String, Boolean> mapBoolean) {
this.mapBoolean = mapBoolean;
}
public AdditionalPropertiesClass mapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger;
return this;
}
@ -241,14 +232,12 @@ public class AdditionalPropertiesClass {
return mapArrayInteger;
}
public void setMapArrayInteger(Map<String, List<Integer>> mapArrayInteger) {
this.mapArrayInteger = mapArrayInteger;
}
public AdditionalPropertiesClass mapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype;
return this;
}
@ -270,14 +259,12 @@ public class AdditionalPropertiesClass {
return mapArrayAnytype;
}
public void setMapArrayAnytype(Map<String, List<Object>> mapArrayAnytype) {
this.mapArrayAnytype = mapArrayAnytype;
}
public AdditionalPropertiesClass mapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString;
return this;
}
@ -299,14 +286,12 @@ public class AdditionalPropertiesClass {
return mapMapString;
}
public void setMapMapString(Map<String, Map<String, String>> mapMapString) {
this.mapMapString = mapMapString;
}
public AdditionalPropertiesClass mapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype;
return this;
}
@ -328,14 +313,12 @@ public class AdditionalPropertiesClass {
return mapMapAnytype;
}
public void setMapMapAnytype(Map<String, Map<String, Object>> mapMapAnytype) {
this.mapMapAnytype = mapMapAnytype;
}
public AdditionalPropertiesClass anytype1(Object anytype1) {
this.anytype1 = anytype1;
return this;
}
@ -349,14 +332,12 @@ public class AdditionalPropertiesClass {
return anytype1;
}
public void setAnytype1(Object anytype1) {
this.anytype1 = anytype1;
}
public AdditionalPropertiesClass anytype2(Object anytype2) {
this.anytype2 = anytype2;
return this;
}
@ -370,14 +351,12 @@ public class AdditionalPropertiesClass {
return anytype2;
}
public void setAnytype2(Object anytype2) {
this.anytype2 = anytype2;
}
public AdditionalPropertiesClass anytype3(Object anytype3) {
this.anytype3 = anytype3;
return this;
}
@ -391,7 +370,6 @@ public class AdditionalPropertiesClass {
return anytype3;
}
public void setAnytype3(Object anytype3) {
this.anytype3 = anytype3;
}

View File

@ -59,7 +59,6 @@ public class AdditionalPropertiesInteger {
}
public AdditionalPropertiesInteger name(String name) {
this.name = name;
return this;
}
@ -73,7 +72,6 @@ public class AdditionalPropertiesInteger {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -60,7 +60,6 @@ public class AdditionalPropertiesNumber {
}
public AdditionalPropertiesNumber name(String name) {
this.name = name;
return this;
}
@ -74,7 +73,6 @@ public class AdditionalPropertiesNumber {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -60,7 +60,6 @@ public class AdditionalPropertiesObject {
}
public AdditionalPropertiesObject name(String name) {
this.name = name;
return this;
}
@ -74,7 +73,6 @@ public class AdditionalPropertiesObject {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -59,7 +59,6 @@ public class AdditionalPropertiesString {
}
public AdditionalPropertiesString name(String name) {
this.name = name;
return this;
}
@ -73,7 +72,6 @@ public class AdditionalPropertiesString {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -64,7 +64,6 @@ public class Animal {
}
public Animal className(String className) {
this.className = className;
return this;
}
@ -78,14 +77,12 @@ public class Animal {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public Animal color(String color) {
this.color = color;
return this;
}
@ -99,7 +96,6 @@ public class Animal {
return color;
}
public void setColor(String color) {
this.color = color;
}

View File

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

View File

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

View File

@ -70,7 +70,6 @@ public class ArrayTest {
}
public ArrayTest arrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString;
return this;
}
@ -92,14 +91,12 @@ public class ArrayTest {
return arrayOfString;
}
public void setArrayOfString(List<String> arrayOfString) {
this.arrayOfString = arrayOfString;
}
public ArrayTest arrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger;
return this;
}
@ -121,14 +118,12 @@ public class ArrayTest {
return arrayArrayOfInteger;
}
public void setArrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
this.arrayArrayOfInteger = arrayArrayOfInteger;
}
public ArrayTest arrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel;
return this;
}
@ -150,7 +145,6 @@ public class ArrayTest {
return arrayArrayOfModel;
}
public void setArrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel) {
this.arrayArrayOfModel = arrayArrayOfModel;
}

View File

@ -117,7 +117,6 @@ public class BigCat extends Cat {
}
public BigCat kind(KindEnum kind) {
this.kind = kind;
return this;
}
@ -131,7 +130,6 @@ public class BigCat extends Cat {
return kind;
}
public void setKind(KindEnum kind) {
this.kind = kind;
}

View File

@ -79,7 +79,6 @@ public class Capitalization {
}
public Capitalization smallCamel(String smallCamel) {
this.smallCamel = smallCamel;
return this;
}
@ -93,14 +92,12 @@ public class Capitalization {
return smallCamel;
}
public void setSmallCamel(String smallCamel) {
this.smallCamel = smallCamel;
}
public Capitalization capitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel;
return this;
}
@ -114,14 +111,12 @@ public class Capitalization {
return capitalCamel;
}
public void setCapitalCamel(String capitalCamel) {
this.capitalCamel = capitalCamel;
}
public Capitalization smallSnake(String smallSnake) {
this.smallSnake = smallSnake;
return this;
}
@ -135,14 +130,12 @@ public class Capitalization {
return smallSnake;
}
public void setSmallSnake(String smallSnake) {
this.smallSnake = smallSnake;
}
public Capitalization capitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake;
return this;
}
@ -156,14 +149,12 @@ public class Capitalization {
return capitalSnake;
}
public void setCapitalSnake(String capitalSnake) {
this.capitalSnake = capitalSnake;
}
public Capitalization scAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints;
return this;
}
@ -177,14 +168,12 @@ public class Capitalization {
return scAETHFlowPoints;
}
public void setScAETHFlowPoints(String scAETHFlowPoints) {
this.scAETHFlowPoints = scAETHFlowPoints;
}
public Capitalization ATT_NAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME;
return this;
}
@ -198,7 +187,6 @@ public class Capitalization {
return ATT_NAME;
}
public void setATTNAME(String ATT_NAME) {
this.ATT_NAME = ATT_NAME;
}

View File

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

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

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

View File

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

View File

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

View File

@ -169,7 +169,6 @@ public class EnumArrays {
}
public EnumArrays justSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol;
return this;
}
@ -183,14 +182,12 @@ public class EnumArrays {
return justSymbol;
}
public void setJustSymbol(JustSymbolEnum justSymbol) {
this.justSymbol = justSymbol;
}
public EnumArrays arrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum;
return this;
}
@ -212,7 +209,6 @@ public class EnumArrays {
return arrayEnum;
}
public void setArrayEnum(List<ArrayEnumEnum> arrayEnum) {
this.arrayEnum = arrayEnum;
}

View File

@ -288,7 +288,6 @@ public class EnumTest {
}
public EnumTest enumString(EnumStringEnum enumString) {
this.enumString = enumString;
return this;
}
@ -302,14 +301,12 @@ public class EnumTest {
return enumString;
}
public void setEnumString(EnumStringEnum enumString) {
this.enumString = enumString;
}
public EnumTest enumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired;
return this;
}
@ -323,14 +320,12 @@ public class EnumTest {
return enumStringRequired;
}
public void setEnumStringRequired(EnumStringRequiredEnum enumStringRequired) {
this.enumStringRequired = enumStringRequired;
}
public EnumTest enumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger;
return this;
}
@ -344,14 +339,12 @@ public class EnumTest {
return enumInteger;
}
public void setEnumInteger(EnumIntegerEnum enumInteger) {
this.enumInteger = enumInteger;
}
public EnumTest enumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber;
return this;
}
@ -365,14 +358,12 @@ public class EnumTest {
return enumNumber;
}
public void setEnumNumber(EnumNumberEnum enumNumber) {
this.enumNumber = enumNumber;
}
public EnumTest outerEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum;
return this;
}
@ -386,7 +377,6 @@ public class EnumTest {
return outerEnum;
}
public void setOuterEnum(OuterEnum outerEnum) {
this.outerEnum = outerEnum;
}

View File

@ -66,7 +66,6 @@ public class FileSchemaTestClass {
}
public FileSchemaTestClass _file(ModelFile _file) {
this._file = _file;
return this;
}
@ -80,14 +79,12 @@ public class FileSchemaTestClass {
return _file;
}
public void setFile(ModelFile _file) {
this._file = _file;
}
public FileSchemaTestClass files(List<ModelFile> files) {
this.files = files;
return this;
}
@ -109,7 +106,6 @@ public class FileSchemaTestClass {
return files;
}
public void setFiles(List<ModelFile> files) {
this.files = files;
}

View File

@ -116,7 +116,6 @@ public class FormatTest {
}
public FormatTest integer(Integer integer) {
this.integer = integer;
return this;
}
@ -132,14 +131,12 @@ public class FormatTest {
return integer;
}
public void setInteger(Integer integer) {
this.integer = integer;
}
public FormatTest int32(Integer int32) {
this.int32 = int32;
return this;
}
@ -155,14 +152,12 @@ public class FormatTest {
return int32;
}
public void setInt32(Integer int32) {
this.int32 = int32;
}
public FormatTest int64(Long int64) {
this.int64 = int64;
return this;
}
@ -176,14 +171,12 @@ public class FormatTest {
return int64;
}
public void setInt64(Long int64) {
this.int64 = int64;
}
public FormatTest number(BigDecimal number) {
this.number = number;
return this;
}
@ -199,14 +192,12 @@ public class FormatTest {
return number;
}
public void setNumber(BigDecimal number) {
this.number = number;
}
public FormatTest _float(Float _float) {
this._float = _float;
return this;
}
@ -222,14 +213,12 @@ public class FormatTest {
return _float;
}
public void setFloat(Float _float) {
this._float = _float;
}
public FormatTest _double(Double _double) {
this._double = _double;
return this;
}
@ -245,14 +234,12 @@ public class FormatTest {
return _double;
}
public void setDouble(Double _double) {
this._double = _double;
}
public FormatTest string(String string) {
this.string = string;
return this;
}
@ -266,14 +253,12 @@ public class FormatTest {
return string;
}
public void setString(String string) {
this.string = string;
}
public FormatTest _byte(byte[] _byte) {
this._byte = _byte;
return this;
}
@ -287,14 +272,12 @@ public class FormatTest {
return _byte;
}
public void setByte(byte[] _byte) {
this._byte = _byte;
}
public FormatTest binary(File binary) {
this.binary = binary;
return this;
}
@ -308,14 +291,12 @@ public class FormatTest {
return binary;
}
public void setBinary(File binary) {
this.binary = binary;
}
public FormatTest date(LocalDate date) {
this.date = date;
return this;
}
@ -329,14 +310,12 @@ public class FormatTest {
return date;
}
public void setDate(LocalDate date) {
this.date = date;
}
public FormatTest dateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime;
return this;
}
@ -350,14 +329,12 @@ public class FormatTest {
return dateTime;
}
public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime;
}
public FormatTest uuid(UUID uuid) {
this.uuid = uuid;
return this;
}
@ -371,14 +348,12 @@ public class FormatTest {
return uuid;
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
public FormatTest password(String password) {
this.password = password;
return this;
}
@ -392,14 +367,12 @@ public class FormatTest {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public FormatTest bigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal;
return this;
}
@ -413,7 +386,6 @@ public class FormatTest {
return bigDecimal;
}
public void setBigDecimal(BigDecimal bigDecimal) {
this.bigDecimal = bigDecimal;
}

View File

@ -62,7 +62,6 @@ public class HasOnlyReadOnly {
public HasOnlyReadOnly() {
}
public HasOnlyReadOnly(
String bar,
String foo
@ -83,7 +82,6 @@ public class HasOnlyReadOnly {
/**
* Get foo
* @return foo
@ -96,7 +94,6 @@ public class HasOnlyReadOnly {
@Override
public boolean equals(Object o) {
if (this == o) {

View File

@ -125,7 +125,6 @@ public class MapTest {
}
public MapTest mapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString;
return this;
}
@ -147,14 +146,12 @@ public class MapTest {
return mapMapOfString;
}
public void setMapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
this.mapMapOfString = mapMapOfString;
}
public MapTest mapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString;
return this;
}
@ -176,14 +173,12 @@ public class MapTest {
return mapOfEnumString;
}
public void setMapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString;
}
public MapTest directMap(Map<String, Boolean> directMap) {
this.directMap = directMap;
return this;
}
@ -205,14 +200,12 @@ public class MapTest {
return directMap;
}
public void setDirectMap(Map<String, Boolean> directMap) {
this.directMap = directMap;
}
public MapTest indirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap;
return this;
}
@ -234,7 +227,6 @@ public class MapTest {
return indirectMap;
}
public void setIndirectMap(Map<String, Boolean> indirectMap) {
this.indirectMap = indirectMap;
}

View File

@ -72,7 +72,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
}
public MixedPropertiesAndAdditionalPropertiesClass uuid(UUID uuid) {
this.uuid = uuid;
return this;
}
@ -86,14 +85,12 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
return uuid;
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
public MixedPropertiesAndAdditionalPropertiesClass dateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime;
return this;
}
@ -107,14 +104,12 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
return dateTime;
}
public void setDateTime(OffsetDateTime dateTime) {
this.dateTime = dateTime;
}
public MixedPropertiesAndAdditionalPropertiesClass map(Map<String, Animal> map) {
this.map = map;
return this;
}
@ -136,7 +131,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
return map;
}
public void setMap(Map<String, Animal> map) {
this.map = map;
}

View File

@ -63,7 +63,6 @@ public class Model200Response {
}
public Model200Response name(Integer name) {
this.name = name;
return this;
}
@ -77,14 +76,12 @@ public class Model200Response {
return name;
}
public void setName(Integer name) {
this.name = name;
}
public Model200Response propertyClass(String propertyClass) {
this.propertyClass = propertyClass;
return this;
}
@ -98,7 +95,6 @@ public class Model200Response {
return propertyClass;
}
public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass;
}

View File

@ -67,7 +67,6 @@ public class ModelApiResponse {
}
public ModelApiResponse code(Integer code) {
this.code = code;
return this;
}
@ -81,14 +80,12 @@ public class ModelApiResponse {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ModelApiResponse type(String type) {
this.type = type;
return this;
}
@ -102,14 +99,12 @@ public class ModelApiResponse {
return type;
}
public void setType(String type) {
this.type = type;
}
public ModelApiResponse message(String message) {
this.message = message;
return this;
}
@ -123,7 +118,6 @@ public class ModelApiResponse {
return message;
}
public void setMessage(String message) {
this.message = message;
}

View File

@ -59,7 +59,6 @@ public class ModelFile {
}
public ModelFile sourceURI(String sourceURI) {
this.sourceURI = sourceURI;
return this;
}
@ -73,7 +72,6 @@ public class ModelFile {
return sourceURI;
}
public void setSourceURI(String sourceURI) {
this.sourceURI = sourceURI;
}

View File

@ -59,7 +59,6 @@ public class ModelList {
}
public ModelList _123list(String _123list) {
this._123list = _123list;
return this;
}
@ -73,7 +72,6 @@ public class ModelList {
return _123list;
}
public void set123list(String _123list) {
this._123list = _123list;
}

View File

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

View File

@ -70,7 +70,6 @@ public class Name {
public Name() {
}
public Name(
Integer snakeCase,
Integer _123number
@ -81,7 +80,6 @@ public class Name {
}
public Name name(Integer name) {
this.name = name;
return this;
}
@ -95,7 +93,6 @@ public class Name {
return name;
}
public void setName(Integer name) {
this.name = name;
}
@ -112,9 +109,7 @@ public class Name {
public Name property(String property) {
this.property = property;
return this;
}
@ -128,7 +123,6 @@ public class Name {
return property;
}
public void setProperty(String property) {
this.property = property;
}
@ -146,7 +140,6 @@ public class Name {
@Override
public boolean equals(Object o) {
if (this == o) {

View File

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

View File

@ -134,7 +134,6 @@ public class Order {
}
public Order id(Long id) {
this.id = id;
return this;
}
@ -148,14 +147,12 @@ public class Order {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Order petId(Long petId) {
this.petId = petId;
return this;
}
@ -169,14 +166,12 @@ public class Order {
return petId;
}
public void setPetId(Long petId) {
this.petId = petId;
}
public Order quantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -190,14 +185,12 @@ public class Order {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Order shipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
return this;
}
@ -211,14 +204,12 @@ public class Order {
return shipDate;
}
public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
}
public Order status(StatusEnum status) {
this.status = status;
return this;
}
@ -232,14 +223,12 @@ public class Order {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public Order complete(Boolean complete) {
this.complete = complete;
return this;
}
@ -253,7 +242,6 @@ public class Order {
return complete;
}
public void setComplete(Boolean complete) {
this.complete = complete;
}

View File

@ -68,7 +68,6 @@ public class OuterComposite {
}
public OuterComposite myNumber(BigDecimal myNumber) {
this.myNumber = myNumber;
return this;
}
@ -82,14 +81,12 @@ public class OuterComposite {
return myNumber;
}
public void setMyNumber(BigDecimal myNumber) {
this.myNumber = myNumber;
}
public OuterComposite myString(String myString) {
this.myString = myString;
return this;
}
@ -103,14 +100,12 @@ public class OuterComposite {
return myString;
}
public void setMyString(String myString) {
this.myString = myString;
}
public OuterComposite myBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean;
return this;
}
@ -124,7 +119,6 @@ public class OuterComposite {
return myBoolean;
}
public void setMyBoolean(Boolean myBoolean) {
this.myBoolean = myBoolean;
}

View File

@ -139,7 +139,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -153,14 +152,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -174,14 +171,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -195,14 +190,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet photoUrls(Set<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -224,14 +217,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(Set<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -253,14 +244,12 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -274,7 +263,6 @@ public class Pet {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}

View File

@ -62,7 +62,6 @@ public class ReadOnlyFirst {
public ReadOnlyFirst() {
}
public ReadOnlyFirst(
String bar
) {
@ -81,9 +80,7 @@ public class ReadOnlyFirst {
public ReadOnlyFirst baz(String baz) {
this.baz = baz;
return this;
}
@ -97,7 +94,6 @@ public class ReadOnlyFirst {
return baz;
}
public void setBaz(String baz) {
this.baz = baz;
}

View File

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

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -78,7 +78,6 @@ public class TypeHolderDefault {
}
public TypeHolderDefault stringItem(String stringItem) {
this.stringItem = stringItem;
return this;
}
@ -92,14 +91,12 @@ public class TypeHolderDefault {
return stringItem;
}
public void setStringItem(String stringItem) {
this.stringItem = stringItem;
}
public TypeHolderDefault numberItem(BigDecimal numberItem) {
this.numberItem = numberItem;
return this;
}
@ -113,14 +110,12 @@ public class TypeHolderDefault {
return numberItem;
}
public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem;
}
public TypeHolderDefault integerItem(Integer integerItem) {
this.integerItem = integerItem;
return this;
}
@ -134,14 +129,12 @@ public class TypeHolderDefault {
return integerItem;
}
public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem;
}
public TypeHolderDefault boolItem(Boolean boolItem) {
this.boolItem = boolItem;
return this;
}
@ -155,14 +148,12 @@ public class TypeHolderDefault {
return boolItem;
}
public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem;
}
public TypeHolderDefault arrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem;
return this;
}
@ -184,7 +175,6 @@ public class TypeHolderDefault {
return arrayItem;
}
public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem;
}

View File

@ -82,7 +82,6 @@ public class TypeHolderExample {
}
public TypeHolderExample stringItem(String stringItem) {
this.stringItem = stringItem;
return this;
}
@ -96,14 +95,12 @@ public class TypeHolderExample {
return stringItem;
}
public void setStringItem(String stringItem) {
this.stringItem = stringItem;
}
public TypeHolderExample numberItem(BigDecimal numberItem) {
this.numberItem = numberItem;
return this;
}
@ -117,14 +114,12 @@ public class TypeHolderExample {
return numberItem;
}
public void setNumberItem(BigDecimal numberItem) {
this.numberItem = numberItem;
}
public TypeHolderExample floatItem(Float floatItem) {
this.floatItem = floatItem;
return this;
}
@ -138,14 +133,12 @@ public class TypeHolderExample {
return floatItem;
}
public void setFloatItem(Float floatItem) {
this.floatItem = floatItem;
}
public TypeHolderExample integerItem(Integer integerItem) {
this.integerItem = integerItem;
return this;
}
@ -159,14 +152,12 @@ public class TypeHolderExample {
return integerItem;
}
public void setIntegerItem(Integer integerItem) {
this.integerItem = integerItem;
}
public TypeHolderExample boolItem(Boolean boolItem) {
this.boolItem = boolItem;
return this;
}
@ -180,14 +171,12 @@ public class TypeHolderExample {
return boolItem;
}
public void setBoolItem(Boolean boolItem) {
this.boolItem = boolItem;
}
public TypeHolderExample arrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem;
return this;
}
@ -209,7 +198,6 @@ public class TypeHolderExample {
return arrayItem;
}
public void setArrayItem(List<Integer> arrayItem) {
this.arrayItem = arrayItem;
}

View File

@ -87,7 +87,6 @@ public class User {
}
public User id(Long id) {
this.id = id;
return this;
}
@ -101,14 +100,12 @@ public class User {
return id;
}
public void setId(Long id) {
this.id = id;
}
public User username(String username) {
this.username = username;
return this;
}
@ -122,14 +119,12 @@ public class User {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public User firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ -143,14 +138,12 @@ public class User {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public User lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ -164,14 +157,12 @@ public class User {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public User email(String email) {
this.email = email;
return this;
}
@ -185,14 +176,12 @@ public class User {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User password(String password) {
this.password = password;
return this;
}
@ -206,14 +195,12 @@ public class User {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
@ -227,14 +214,12 @@ public class User {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User userStatus(Integer userStatus) {
this.userStatus = userStatus;
return this;
}
@ -248,7 +233,6 @@ public class User {
return userStatus;
}
public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus;
}

View File

@ -174,7 +174,6 @@ public class XmlItem {
}
public XmlItem attributeString(String attributeString) {
this.attributeString = attributeString;
return this;
}
@ -188,14 +187,12 @@ public class XmlItem {
return attributeString;
}
public void setAttributeString(String attributeString) {
this.attributeString = attributeString;
}
public XmlItem attributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber;
return this;
}
@ -209,14 +206,12 @@ public class XmlItem {
return attributeNumber;
}
public void setAttributeNumber(BigDecimal attributeNumber) {
this.attributeNumber = attributeNumber;
}
public XmlItem attributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger;
return this;
}
@ -230,14 +225,12 @@ public class XmlItem {
return attributeInteger;
}
public void setAttributeInteger(Integer attributeInteger) {
this.attributeInteger = attributeInteger;
}
public XmlItem attributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean;
return this;
}
@ -251,14 +244,12 @@ public class XmlItem {
return attributeBoolean;
}
public void setAttributeBoolean(Boolean attributeBoolean) {
this.attributeBoolean = attributeBoolean;
}
public XmlItem wrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray;
return this;
}
@ -280,14 +271,12 @@ public class XmlItem {
return wrappedArray;
}
public void setWrappedArray(List<Integer> wrappedArray) {
this.wrappedArray = wrappedArray;
}
public XmlItem nameString(String nameString) {
this.nameString = nameString;
return this;
}
@ -301,14 +290,12 @@ public class XmlItem {
return nameString;
}
public void setNameString(String nameString) {
this.nameString = nameString;
}
public XmlItem nameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber;
return this;
}
@ -322,14 +309,12 @@ public class XmlItem {
return nameNumber;
}
public void setNameNumber(BigDecimal nameNumber) {
this.nameNumber = nameNumber;
}
public XmlItem nameInteger(Integer nameInteger) {
this.nameInteger = nameInteger;
return this;
}
@ -343,14 +328,12 @@ public class XmlItem {
return nameInteger;
}
public void setNameInteger(Integer nameInteger) {
this.nameInteger = nameInteger;
}
public XmlItem nameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean;
return this;
}
@ -364,14 +347,12 @@ public class XmlItem {
return nameBoolean;
}
public void setNameBoolean(Boolean nameBoolean) {
this.nameBoolean = nameBoolean;
}
public XmlItem nameArray(List<Integer> nameArray) {
this.nameArray = nameArray;
return this;
}
@ -393,14 +374,12 @@ public class XmlItem {
return nameArray;
}
public void setNameArray(List<Integer> nameArray) {
this.nameArray = nameArray;
}
public XmlItem nameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray;
return this;
}
@ -422,14 +401,12 @@ public class XmlItem {
return nameWrappedArray;
}
public void setNameWrappedArray(List<Integer> nameWrappedArray) {
this.nameWrappedArray = nameWrappedArray;
}
public XmlItem prefixString(String prefixString) {
this.prefixString = prefixString;
return this;
}
@ -443,14 +420,12 @@ public class XmlItem {
return prefixString;
}
public void setPrefixString(String prefixString) {
this.prefixString = prefixString;
}
public XmlItem prefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber;
return this;
}
@ -464,14 +439,12 @@ public class XmlItem {
return prefixNumber;
}
public void setPrefixNumber(BigDecimal prefixNumber) {
this.prefixNumber = prefixNumber;
}
public XmlItem prefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger;
return this;
}
@ -485,14 +458,12 @@ public class XmlItem {
return prefixInteger;
}
public void setPrefixInteger(Integer prefixInteger) {
this.prefixInteger = prefixInteger;
}
public XmlItem prefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean;
return this;
}
@ -506,14 +477,12 @@ public class XmlItem {
return prefixBoolean;
}
public void setPrefixBoolean(Boolean prefixBoolean) {
this.prefixBoolean = prefixBoolean;
}
public XmlItem prefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray;
return this;
}
@ -535,14 +504,12 @@ public class XmlItem {
return prefixArray;
}
public void setPrefixArray(List<Integer> prefixArray) {
this.prefixArray = prefixArray;
}
public XmlItem prefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray;
return this;
}
@ -564,14 +531,12 @@ public class XmlItem {
return prefixWrappedArray;
}
public void setPrefixWrappedArray(List<Integer> prefixWrappedArray) {
this.prefixWrappedArray = prefixWrappedArray;
}
public XmlItem namespaceString(String namespaceString) {
this.namespaceString = namespaceString;
return this;
}
@ -585,14 +550,12 @@ public class XmlItem {
return namespaceString;
}
public void setNamespaceString(String namespaceString) {
this.namespaceString = namespaceString;
}
public XmlItem namespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber;
return this;
}
@ -606,14 +569,12 @@ public class XmlItem {
return namespaceNumber;
}
public void setNamespaceNumber(BigDecimal namespaceNumber) {
this.namespaceNumber = namespaceNumber;
}
public XmlItem namespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger;
return this;
}
@ -627,14 +588,12 @@ public class XmlItem {
return namespaceInteger;
}
public void setNamespaceInteger(Integer namespaceInteger) {
this.namespaceInteger = namespaceInteger;
}
public XmlItem namespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean;
return this;
}
@ -648,14 +607,12 @@ public class XmlItem {
return namespaceBoolean;
}
public void setNamespaceBoolean(Boolean namespaceBoolean) {
this.namespaceBoolean = namespaceBoolean;
}
public XmlItem namespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray;
return this;
}
@ -677,14 +634,12 @@ public class XmlItem {
return namespaceArray;
}
public void setNamespaceArray(List<Integer> namespaceArray) {
this.namespaceArray = namespaceArray;
}
public XmlItem namespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray;
return this;
}
@ -706,14 +661,12 @@ public class XmlItem {
return namespaceWrappedArray;
}
public void setNamespaceWrappedArray(List<Integer> namespaceWrappedArray) {
this.namespaceWrappedArray = namespaceWrappedArray;
}
public XmlItem prefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString;
return this;
}
@ -727,14 +680,12 @@ public class XmlItem {
return prefixNsString;
}
public void setPrefixNsString(String prefixNsString) {
this.prefixNsString = prefixNsString;
}
public XmlItem prefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber;
return this;
}
@ -748,14 +699,12 @@ public class XmlItem {
return prefixNsNumber;
}
public void setPrefixNsNumber(BigDecimal prefixNsNumber) {
this.prefixNsNumber = prefixNsNumber;
}
public XmlItem prefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger;
return this;
}
@ -769,14 +718,12 @@ public class XmlItem {
return prefixNsInteger;
}
public void setPrefixNsInteger(Integer prefixNsInteger) {
this.prefixNsInteger = prefixNsInteger;
}
public XmlItem prefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean;
return this;
}
@ -790,14 +737,12 @@ public class XmlItem {
return prefixNsBoolean;
}
public void setPrefixNsBoolean(Boolean prefixNsBoolean) {
this.prefixNsBoolean = prefixNsBoolean;
}
public XmlItem prefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray;
return this;
}
@ -819,14 +764,12 @@ public class XmlItem {
return prefixNsArray;
}
public void setPrefixNsArray(List<Integer> prefixNsArray) {
this.prefixNsArray = prefixNsArray;
}
public XmlItem prefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray;
return this;
}
@ -848,7 +791,6 @@ public class XmlItem {
return prefixNsWrappedArray;
}
public void setPrefixNsWrappedArray(List<Integer> prefixNsWrappedArray) {
this.prefixNsWrappedArray = prefixNsWrappedArray;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -67,7 +67,6 @@ public class ModelApiResponse {
}
public ModelApiResponse code(Integer code) {
this.code = code;
return this;
}
@ -81,14 +80,12 @@ public class ModelApiResponse {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ModelApiResponse type(String type) {
this.type = type;
return this;
}
@ -102,14 +99,12 @@ public class ModelApiResponse {
return type;
}
public void setType(String type) {
this.type = type;
}
public ModelApiResponse message(String message) {
this.message = message;
return this;
}
@ -123,7 +118,6 @@ public class ModelApiResponse {
return message;
}
public void setMessage(String message) {
this.message = message;
}

View File

@ -134,7 +134,6 @@ public class Order {
}
public Order id(Long id) {
this.id = id;
return this;
}
@ -148,14 +147,12 @@ public class Order {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Order petId(Long petId) {
this.petId = petId;
return this;
}
@ -169,14 +166,12 @@ public class Order {
return petId;
}
public void setPetId(Long petId) {
this.petId = petId;
}
public Order quantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -190,14 +185,12 @@ public class Order {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Order shipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
return this;
}
@ -211,14 +204,12 @@ public class Order {
return shipDate;
}
public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
}
public Order status(StatusEnum status) {
this.status = status;
return this;
}
@ -232,14 +223,12 @@ public class Order {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public Order complete(Boolean complete) {
this.complete = complete;
return this;
}
@ -253,7 +242,6 @@ public class Order {
return complete;
}
public void setComplete(Boolean complete) {
this.complete = complete;
}

View File

@ -138,7 +138,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -152,14 +151,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -173,14 +170,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -194,14 +189,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -223,14 +216,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -252,7 +243,6 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -260,7 +250,6 @@ public class Pet {
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -276,7 +265,6 @@ public class Pet {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -87,7 +87,6 @@ public class User {
}
public User id(Long id) {
this.id = id;
return this;
}
@ -101,14 +100,12 @@ public class User {
return id;
}
public void setId(Long id) {
this.id = id;
}
public User username(String username) {
this.username = username;
return this;
}
@ -122,14 +119,12 @@ public class User {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public User firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ -143,14 +138,12 @@ public class User {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public User lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ -164,14 +157,12 @@ public class User {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public User email(String email) {
this.email = email;
return this;
}
@ -185,14 +176,12 @@ public class User {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User password(String password) {
this.password = password;
return this;
}
@ -206,14 +195,12 @@ public class User {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
@ -227,14 +214,12 @@ public class User {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User userStatus(Integer userStatus) {
this.userStatus = userStatus;
return this;
}
@ -248,7 +233,6 @@ public class User {
return userStatus;
}
public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -63,7 +63,6 @@ public class Category {
}
public Category id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Category {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Category name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Category {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -67,7 +67,6 @@ public class ModelApiResponse {
}
public ModelApiResponse code(Integer code) {
this.code = code;
return this;
}
@ -81,14 +80,12 @@ public class ModelApiResponse {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ModelApiResponse type(String type) {
this.type = type;
return this;
}
@ -102,14 +99,12 @@ public class ModelApiResponse {
return type;
}
public void setType(String type) {
this.type = type;
}
public ModelApiResponse message(String message) {
this.message = message;
return this;
}
@ -123,7 +118,6 @@ public class ModelApiResponse {
return message;
}
public void setMessage(String message) {
this.message = message;
}

View File

@ -134,7 +134,6 @@ public class Order {
}
public Order id(Long id) {
this.id = id;
return this;
}
@ -148,14 +147,12 @@ public class Order {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Order petId(Long petId) {
this.petId = petId;
return this;
}
@ -169,14 +166,12 @@ public class Order {
return petId;
}
public void setPetId(Long petId) {
this.petId = petId;
}
public Order quantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -190,14 +185,12 @@ public class Order {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public Order shipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
return this;
}
@ -211,14 +204,12 @@ public class Order {
return shipDate;
}
public void setShipDate(OffsetDateTime shipDate) {
this.shipDate = shipDate;
}
public Order status(StatusEnum status) {
this.status = status;
return this;
}
@ -232,14 +223,12 @@ public class Order {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public Order complete(Boolean complete) {
this.complete = complete;
return this;
}
@ -253,7 +242,6 @@ public class Order {
return complete;
}
public void setComplete(Boolean complete) {
this.complete = complete;
}

View File

@ -138,7 +138,6 @@ public class Pet {
}
public Pet id(Long id) {
this.id = id;
return this;
}
@ -152,14 +151,12 @@ public class Pet {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Pet category(Category category) {
this.category = category;
return this;
}
@ -173,14 +170,12 @@ public class Pet {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public Pet name(String name) {
this.name = name;
return this;
}
@ -194,14 +189,12 @@ public class Pet {
return name;
}
public void setName(String name) {
this.name = name;
}
public Pet photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -223,14 +216,12 @@ public class Pet {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public Pet tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -252,7 +243,6 @@ public class Pet {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -260,7 +250,6 @@ public class Pet {
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
return this;
}
@ -276,7 +265,6 @@ public class Pet {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -139,7 +139,6 @@ public class PetWithRequiredNullableCases1 {
}
public PetWithRequiredNullableCases1 id(Long id) {
this.id = id;
return this;
}
@ -153,14 +152,12 @@ public class PetWithRequiredNullableCases1 {
return id;
}
public void setId(Long id) {
this.id = id;
}
public PetWithRequiredNullableCases1 category(Category category) {
this.category = category;
return this;
}
@ -174,14 +171,12 @@ public class PetWithRequiredNullableCases1 {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public PetWithRequiredNullableCases1 name(String name) {
this.name = name;
return this;
}
@ -195,14 +190,12 @@ public class PetWithRequiredNullableCases1 {
return name;
}
public void setName(String name) {
this.name = name;
}
public PetWithRequiredNullableCases1 photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -224,14 +217,12 @@ public class PetWithRequiredNullableCases1 {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public PetWithRequiredNullableCases1 tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -253,7 +244,6 @@ public class PetWithRequiredNullableCases1 {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -261,7 +251,6 @@ public class PetWithRequiredNullableCases1 {
@Deprecated
public PetWithRequiredNullableCases1 status(StatusEnum status) {
this.status = status;
return this;
}
@ -277,7 +266,6 @@ public class PetWithRequiredNullableCases1 {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -138,7 +138,6 @@ public class PetWithRequiredNullableCases2 {
}
public PetWithRequiredNullableCases2 id(Long id) {
this.id = id;
return this;
}
@ -152,14 +151,12 @@ public class PetWithRequiredNullableCases2 {
return id;
}
public void setId(Long id) {
this.id = id;
}
public PetWithRequiredNullableCases2 category(Category category) {
this.category = category;
return this;
}
@ -173,14 +170,12 @@ public class PetWithRequiredNullableCases2 {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public PetWithRequiredNullableCases2 name(String name) {
this.name = name;
return this;
}
@ -194,14 +189,12 @@ public class PetWithRequiredNullableCases2 {
return name;
}
public void setName(String name) {
this.name = name;
}
public PetWithRequiredNullableCases2 photoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
return this;
}
@ -223,14 +216,12 @@ public class PetWithRequiredNullableCases2 {
return photoUrls;
}
public void setPhotoUrls(List<String> photoUrls) {
this.photoUrls = photoUrls;
}
public PetWithRequiredNullableCases2 tags(List<Tag> tags) {
this.tags = tags;
return this;
}
@ -252,7 +243,6 @@ public class PetWithRequiredNullableCases2 {
return tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
}
@ -260,7 +250,6 @@ public class PetWithRequiredNullableCases2 {
@Deprecated
public PetWithRequiredNullableCases2 status(StatusEnum status) {
this.status = status;
return this;
}
@ -276,7 +265,6 @@ public class PetWithRequiredNullableCases2 {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;

View File

@ -63,7 +63,6 @@ public class Tag {
}
public Tag id(Long id) {
this.id = id;
return this;
}
@ -77,14 +76,12 @@ public class Tag {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Tag name(String name) {
this.name = name;
return this;
}
@ -98,7 +95,6 @@ public class Tag {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -87,7 +87,6 @@ public class User {
}
public User id(Long id) {
this.id = id;
return this;
}
@ -101,14 +100,12 @@ public class User {
return id;
}
public void setId(Long id) {
this.id = id;
}
public User username(String username) {
this.username = username;
return this;
}
@ -122,14 +119,12 @@ public class User {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public User firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ -143,14 +138,12 @@ public class User {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public User lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ -164,14 +157,12 @@ public class User {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public User email(String email) {
this.email = email;
return this;
}
@ -185,14 +176,12 @@ public class User {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User password(String password) {
this.password = password;
return this;
}
@ -206,14 +195,12 @@ public class User {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
@ -227,14 +214,12 @@ public class User {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User userStatus(Integer userStatus) {
this.userStatus = userStatus;
return this;
}
@ -248,7 +233,6 @@ public class User {
return userStatus;
}
public void setUserStatus(Integer userStatus) {
this.userStatus = userStatus;
}

View File

@ -18,8 +18,6 @@ import java.util.Objects;
import java.lang.reflect.Type;
import java.util.Map;
//import com.fasterxml.jackson.annotation.JsonValue;
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/

View File

@ -61,7 +61,6 @@ public class AdditionalPropertiesAnyType implements Parcelable {
}
public AdditionalPropertiesAnyType name(String name) {
this.name = name;
return this;
}
@ -75,7 +74,6 @@ public class AdditionalPropertiesAnyType implements Parcelable {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -62,7 +62,6 @@ public class AdditionalPropertiesArray implements Parcelable {
}
public AdditionalPropertiesArray name(String name) {
this.name = name;
return this;
}
@ -76,7 +75,6 @@ public class AdditionalPropertiesArray implements Parcelable {
return name;
}
public void setName(String name) {
this.name = name;
}

View File

@ -61,7 +61,6 @@ public class AdditionalPropertiesBoolean implements Parcelable {
}
public AdditionalPropertiesBoolean name(String name) {
this.name = name;
return this;
}
@ -75,7 +74,6 @@ public class AdditionalPropertiesBoolean implements Parcelable {
return name;
}
public void setName(String name) {
this.name = name;
}

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