diff --git a/modules/openapi-generator/src/main/resources/Java/jackson_annotations.mustache b/modules/openapi-generator/src/main/resources/Java/jackson_annotations.mustache index c7413447479..4fbaf983be8 100644 --- a/modules/openapi-generator/src/main/resources/Java/jackson_annotations.mustache +++ b/modules/openapi-generator/src/main/resources/Java/jackson_annotations.mustache @@ -6,15 +6,9 @@ }} @JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}) @JsonInclude({{#isMap}}{{#items.isNullable}}content = JsonInclude.Include.ALWAYS, {{/items.isNullable}}{{/isMap}}value = JsonInclude.Include.{{#required}}ALWAYS{{/required}}{{^required}}USE_DEFAULTS{{/required}}) - {{#withXml}} - {{^isContainer}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - {{#xmlName}} - // xmlName={{.}} - {{/xmlName}} - @JacksonXmlProperty({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/xmlName}}") - @JacksonXmlElementWrapper(useWrapping = {{isXmlWrapped}}{{#xmlNamespace}}, namespace="{{.}}"{{/xmlNamespace}}{{#isXmlWrapped}}, localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{/isXmlWrapped}}) - {{/isContainer}} - {{/withXml}} \ No newline at end of file +{{#withXml}} + @JacksonXmlProperty(localName = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#isXmlAttribute}}, isAttribute = true{{/isXmlAttribute}}{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isContainer}} + @JacksonXmlElementWrapper({{#isXmlWrapped}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}", {{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}{{/isXmlWrapped}}useWrapping = {{isXmlWrapped}}) + {{/isContainer}} +{{/withXml}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/feign/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/feign/pojo.mustache index f1786f2a495..fe97e3b1b26 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/feign/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/feign/pojo.mustache @@ -47,28 +47,15 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{#isDateTime}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} + {{^isXmlAttribute}} + {{#isDateTime}} @XmlJavaTypeAdapter(OffsetDateTimeXmlAdapter.class) - {{/isDateTime}} - {{/isXmlAttribute}} + {{/isDateTime}} + {{/isXmlAttribute}} {{/withXml}} {{#gson}} @SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}}) @@ -181,7 +168,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -198,7 +185,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/jersey2/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/jersey2/pojo.mustache index b17b14067d5..06be4ddf265 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/jersey2/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/jersey2/pojo.mustache @@ -52,25 +52,10 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/isXmlAttribute}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#gson}} @SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}}) @@ -191,7 +176,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -208,7 +193,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/pojo.mustache index b17b14067d5..06be4ddf265 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/pojo.mustache @@ -52,25 +52,10 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/isXmlAttribute}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#gson}} @SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}}) @@ -191,7 +176,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -208,7 +193,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/microprofile/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/microprofile/pojo.mustache index 870bf32c1ca..afad09aa3cd 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/microprofile/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/microprofile/pojo.mustache @@ -1,10 +1,9 @@ {{#withXml}} -@XmlAccessorType(XmlAccessType.FIELD) -{{#hasVars}} @XmlType(name = "{{classname}}", propOrder = - { {{#vars}}"{{name}}"{{^-last}}, {{/-last}}{{/vars}} -}){{/hasVars}} +{{#hasVars}}@XmlType(name = "{{classname}}", propOrder = + { {{#vars}}"{{name}}"{{^-last}}, {{/-last}}{{/vars}} } +){{/hasVars}} {{^hasVars}}@XmlType(name = "{{classname}}"){{/hasVars}} -{{^parent}}@XmlRootElement(name="{{classname}}"){{/parent}} +{{> xmlAnnotation }} {{/withXml}} {{#jackson}} @JsonPropertyOrder({ @@ -21,7 +20,7 @@ {{#description}} /** * {{{.}}} - **/ + */ {{/description}} {{>additionalModelTypeAnnotations}} {{#vendorExtensions.x-class-extra-annotation}} @@ -35,12 +34,15 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}}{{#vendorExtensi public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - @XmlElement(name="{{baseName}}"{{#required}}, required = {{required}}{{/required}}) + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#description}} /** - * {{{.}}} - **/ + * {{{.}}} + */ {{/description}} {{^withXml}} {{#jsonb}}@JsonbProperty("{{baseName}}"){{/jsonb}} @@ -71,7 +73,7 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}}{{#vendorExtensi } {{/withXml}}{{/vendorExtensions.x-has-readonly-properties}} {{#vars}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -88,7 +90,7 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}}{{#vendorExtensi {{#deprecated}} * @deprecated {{/deprecated}} - **/ + **/ {{#deprecated}} @Deprecated {{/deprecated}} @@ -112,8 +114,8 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}}{{#vendorExtensi {{^isReadOnly}} /** - * Set {{name}} - **/ + * Set {{name}} + */ {{#vendorExtensions.x-setter-extra-annotation}} {{{vendorExtensions.x-setter-extra-annotation}}} {{/vendorExtensions.x-setter-extra-annotation}}{{#jackson}}{{> jackson_annotations}}{{/jackson}} public void {{setter}}({{{datatypeWithEnum}}} {{name}}) { this.{{name}} = {{name}}; @@ -148,8 +150,8 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}}{{#vendorExtensi {{/vars}} /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/native/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/native/pojo.mustache index f5b7d071a2d..1250a71eca3 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/native/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/native/pojo.mustache @@ -55,25 +55,10 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/isXmlAttribute}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#gson}} @SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}}) @@ -182,7 +167,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -199,7 +184,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} @@ -230,8 +215,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}} @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}}{{#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) { diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache index 067ceade0d6..30f4c0135a9 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache @@ -59,25 +59,10 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isEnum}} public static final String SERIALIZED_NAME_{{nameInSnakeCase}} = "{{baseName}}"; {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/isXmlAttribute}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#deprecated}} @Deprecated @@ -148,7 +133,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -165,7 +150,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} @@ -354,12 +339,12 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/requiredVars}} } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to {{classname}} - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to {{classname}} + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!{{classname}}.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -585,22 +570,22 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens } {{/hasChildren}} - /** - * Create an instance of {{classname}} given an JSON string - * - * @param jsonString JSON string - * @return An instance of {{classname}} - * @throws IOException if the JSON string is invalid with respect to {{classname}} - */ + /** + * Create an instance of {{classname}} given an JSON string + * + * @param jsonString JSON string + * @return An instance of {{classname}} + * @throws IOException if the JSON string is invalid with respect to {{classname}} + */ public static {{{classname}}} fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, {{{classname}}}.class); } - /** - * Convert an instance of {{classname}} to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of {{classname}} to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/modules/openapi-generator/src/main/resources/Java/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/pojo.mustache index d4c6ec8d154..05be7e5c538 100644 --- a/modules/openapi-generator/src/main/resources/Java/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/Java/pojo.mustache @@ -52,28 +52,15 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{/jackson}} {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{#isDateTime}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} + {{^isXmlAttribute}} + {{#isDateTime}} @XmlJavaTypeAdapter(OffsetDateTimeXmlAdapter.class) - {{/isDateTime}} - {{/isXmlAttribute}} + {{/isDateTime}} + {{/isXmlAttribute}} {{/withXml}} {{#gson}} @SerializedName(SERIALIZED_NAME_{{nameInSnakeCase}}) @@ -115,8 +102,8 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#vendorExtensions.x-has-readonly-properties}} {{^withXml}} /** - * Constructor with only readonly parameters{{#generateConstructorWithAllArgs}}{{^vendorExtensions.x-java-all-args-constructor}} and all parameters{{/vendorExtensions.x-java-all-args-constructor}}{{/generateConstructorWithAllArgs}} - */ + * Constructor with only readonly parameters{{#generateConstructorWithAllArgs}}{{^vendorExtensions.x-java-all-args-constructor}} and all parameters{{/vendorExtensions.x-java-all-args-constructor}}{{/generateConstructorWithAllArgs}} + */ {{#jsonb}}@JsonbCreator{{/jsonb}}{{#jackson}}@JsonCreator{{/jackson}} public {{classname}}( {{#readOnlyVars}} @@ -133,8 +120,8 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#vendorExtensions.x-java-all-args-constructor}} /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public {{classname}}({{#vendorExtensions.x-java-all-args-constructor-vars}}{{#jsonb}}@JsonbProperty(value = "{{baseName}}"{{^required}}, nullable = true{{/required}}){{/jsonb}}{{#jackson}}@JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}){{/jackson}} {{{datatypeWithEnum}}} {{name}}{{^-last}}, {{/-last}}{{/vendorExtensions.x-java-all-args-constructor-vars}}) { {{#parent}} super({{#parentVars}}{{name}}{{^-last}}, {{/-last}}{{/parentVars}}); @@ -202,7 +189,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{/isMap}} {{/isReadOnly}} - /** + /** {{#description}} * {{.}} {{/description}} @@ -219,7 +206,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens {{#deprecated}} * @deprecated {{/deprecated}} - **/ + */ {{#deprecated}} @Deprecated {{/deprecated}} diff --git a/modules/openapi-generator/src/main/resources/JavaSpring/model.mustache b/modules/openapi-generator/src/main/resources/JavaSpring/model.mustache index c343e07fefc..23cf601c88e 100644 --- a/modules/openapi-generator/src/main/resources/JavaSpring/model.mustache +++ b/modules/openapi-generator/src/main/resources/JavaSpring/model.mustache @@ -25,6 +25,7 @@ import org.hibernate.validator.constraints.*; {{#withXml}} import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; {{/withXml}} {{/jackson}} {{#swagger2AnnotationLibrary}} diff --git a/modules/openapi-generator/src/main/resources/JavaSpring/pojo.mustache b/modules/openapi-generator/src/main/resources/JavaSpring/pojo.mustache index 44be9a40898..e94b47c326f 100644 --- a/modules/openapi-generator/src/main/resources/JavaSpring/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/JavaSpring/pojo.mustache @@ -128,8 +128,8 @@ public class {{classname}}{{#parent}} extends {{{parent}}}{{/parent}}{{^parent}} {{#vendorExtensions.x-java-all-args-constructor}} /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public {{classname}}({{#vendorExtensions.x-java-all-args-constructor-vars}}{{{datatypeWithEnum}}} {{name}}{{^-last}}, {{/-last}}{{/vendorExtensions.x-java-all-args-constructor-vars}}) { {{#parent}} super({{#parentVars}}{{name}}{{^-last}}, {{/-last}}{{/parentVars}}); @@ -215,7 +215,7 @@ public class {{classname}}{{#parent}} extends {{{parent}}}{{/parent}}{{^parent}} {{#deprecated}} * @deprecated {{/deprecated}} - */ + */ {{#vendorExtensions.x-extra-annotation}} {{{vendorExtensions.x-extra-annotation}}} {{/vendorExtensions.x-extra-annotation}} @@ -234,9 +234,18 @@ public class {{classname}}{{#parent}} extends {{{parent}}}{{/parent}}{{^parent}} {{#jackson}} @JsonProperty("{{baseName}}") {{#withXml}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") + @JacksonXmlProperty(localName = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#isXmlAttribute}}, isAttribute = true{{/isXmlAttribute}}{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isContainer}} + @JacksonXmlElementWrapper({{#isXmlWrapped}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}", {{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}{{/isXmlWrapped}}useWrapping = {{isXmlWrapped}}) + {{/isContainer}} {{/withXml}} {{/jackson}} + {{#withXml}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} + {{/withXml}} {{#deprecated}} @Deprecated {{/deprecated}} @@ -249,7 +258,7 @@ public class {{classname}}{{#parent}} extends {{{parent}}}{{/parent}}{{^parent}} {{#deprecated}} /** * @deprecated - */ + */ {{/deprecated}} {{#vendorExtensions.x-setter-extra-annotation}} {{{vendorExtensions.x-setter-extra-annotation}}} diff --git a/modules/openapi-generator/src/main/resources/JavaSpring/xmlAnnotation.mustache b/modules/openapi-generator/src/main/resources/JavaSpring/xmlAnnotation.mustache index a9e6fb0fa0b..b3a89fa362f 100644 --- a/modules/openapi-generator/src/main/resources/JavaSpring/xmlAnnotation.mustache +++ b/modules/openapi-generator/src/main/resources/JavaSpring/xmlAnnotation.mustache @@ -1,7 +1,6 @@ {{#withXml}} {{#jackson}} -@JacksonXmlRootElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") +@JacksonXmlRootElement({{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") {{/jackson}} -@XmlRootElement({{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") -@XmlAccessorType(XmlAccessType.FIELD) -{{/withXml}} \ No newline at end of file +@XmlRootElement({{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}name = "{{xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") +@XmlAccessorType(XmlAccessType.FIELD){{/withXml}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/mp/jackson_annotations.mustache b/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/mp/jackson_annotations.mustache deleted file mode 100644 index ccde126f54e..00000000000 --- a/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/mp/jackson_annotations.mustache +++ /dev/null @@ -1,19 +0,0 @@ -{{! - If this is map and items are nullable, make sure that nulls are included. - To determine what JsonInclude.Include method to use, consider the following: - * If the field is required, always include it, even if it is null. - * Else use custom behaviour, IOW use whatever is defined on the object mapper - }} - @JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}) - @JsonInclude({{#isMap}}{{#items.isNullable}}content = JsonInclude.Include.ALWAYS, {{/items.isNullable}}{{/isMap}}value = JsonInclude.Include.{{#required}}ALWAYS{{/required}}{{^required}}USE_DEFAULTS{{/required}}) - {{#withXml}} - {{^isContainer}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - {{#isXmlWrapped}} - // items.xmlName={{items.xmlName}} - @JacksonXmlElementWrapper(useWrapping = {{isXmlWrapped}}, {{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{#items.xmlName}}{{items.xmlName}}{{/items.xmlName}}{{^items.xmlName}}{{items.baseName}}{{/items.xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/withXml}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/se/jackson_annotations.mustache b/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/se/jackson_annotations.mustache deleted file mode 100644 index ccde126f54e..00000000000 --- a/modules/openapi-generator/src/main/resources/java-helidon/client/libraries/se/jackson_annotations.mustache +++ /dev/null @@ -1,19 +0,0 @@ -{{! - If this is map and items are nullable, make sure that nulls are included. - To determine what JsonInclude.Include method to use, consider the following: - * If the field is required, always include it, even if it is null. - * Else use custom behaviour, IOW use whatever is defined on the object mapper - }} - @JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}) - @JsonInclude({{#isMap}}{{#items.isNullable}}content = JsonInclude.Include.ALWAYS, {{/items.isNullable}}{{/isMap}}value = JsonInclude.Include.{{#required}}ALWAYS{{/required}}{{^required}}USE_DEFAULTS{{/required}}) - {{#withXml}} - {{^isContainer}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - {{#isXmlWrapped}} - // items.xmlName={{items.xmlName}} - @JacksonXmlElementWrapper(useWrapping = {{isXmlWrapped}}, {{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{#items.xmlName}}{{items.xmlName}}{{/items.xmlName}}{{^items.xmlName}}{{items.baseName}}{{/items.xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/withXml}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/jackson_annotations.mustache b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/jackson_annotations.mustache index 41afad00289..571375ebe94 100644 --- a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/jackson_annotations.mustache +++ b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/jackson_annotations.mustache @@ -7,15 +7,9 @@ @JsonProperty(JSON_PROPERTY_{{nameInSnakeCase}}) @JsonInclude({{#isMap}}{{#items.isNullable}}content = JsonInclude.Include.ALWAYS, {{/items.isNullable}}{{/isMap}}value = JsonInclude.Include.{{#required}}ALWAYS{{/required}}{{^required}}USE_DEFAULTS{{/required}}) {{#withXml}} - {{^isContainer}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} + @JacksonXmlProperty(localName = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#isXmlAttribute}}, isAttribute = true{{/isXmlAttribute}}{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) {{#isContainer}} - {{#isXmlWrapped}} - // items.xmlName={{items.xmlName}} - @JacksonXmlElementWrapper(useWrapping = {{isXmlWrapped}}, {{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#items.xmlName}}{{items.xmlName}}{{/items.xmlName}}{{^items.xmlName}}{{items.baseName}}{{/items.xmlName}}") - {{/isXmlWrapped}} + @JacksonXmlElementWrapper({{#isXmlWrapped}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}", {{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}{{/isXmlWrapped}}useWrapping = {{isXmlWrapped}}) {{/isContainer}} {{/withXml}} {{#jackson}} diff --git a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/pojo.mustache b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/pojo.mustache index f100a893156..2d05a31d159 100644 --- a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/pojo.mustache @@ -48,25 +48,10 @@ Declare the class with extends and implements {{/isEnum}} public static final String JSON_PROPERTY_{{nameInSnakeCase}} = "{{baseName}}"; {{#withXml}} - {{#isXmlAttribute}} - @XmlAttribute(name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}" - {{/isXmlAttribute}} - {{^isXmlAttribute}} - {{^isContainer}} - @XmlElement({{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isContainer}} - {{#isContainer}} - // Is a container wrapped={{isXmlWrapped}} - {{#items}} - // items.name={{name}} items.baseName={{baseName}} items.xmlName={{xmlName}} items.xmlNamespace={{xmlNamespace}} - // items.example={{example}} items.type={{dataType}} - @XmlElement({{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/items}} - {{#isXmlWrapped}} - @XmlElementWrapper({{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}") - {{/isXmlWrapped}} - {{/isContainer}} - {{/isXmlAttribute}} + @Xml{{#isXmlAttribute}}Attribute{{/isXmlAttribute}}{{^isXmlAttribute}}Element{{/isXmlAttribute}}(name = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isXmlWrapped}} + @XmlElementWrapper(name = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{/isXmlWrapped}} {{/withXml}} {{#vendorExtensions.x-field-extra-annotation}} {{{vendorExtensions.x-field-extra-annotation}}} @@ -184,7 +169,7 @@ Declare the class with extends and implements * maximum: {{maximum}} {{/maximum}} * @return {{name}} - **/ + */ {{>common/model/beanValidation}}{{! }}{{#generateSwagger1Annotations}} @ApiModelProperty({{#example}}example = "{{{example}}}", {{/example}}{{#required}}required = {{required}}, {{/required}}value = "{{{description}}}") diff --git a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/xmlAnnotation.mustache b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/xmlAnnotation.mustache index 04566fa1167..7f2067308e2 100644 --- a/modules/openapi-generator/src/main/resources/java-micronaut/common/model/xmlAnnotation.mustache +++ b/modules/openapi-generator/src/main/resources/java-micronaut/common/model/xmlAnnotation.mustache @@ -1,6 +1,6 @@ {{#withXml}} -@XmlRootElement({{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") +@XmlRootElement({{#xmlNamespace}}namespace = "{{xmlNamespace}}", {{/xmlNamespace}}name = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}") @XmlAccessorType(XmlAccessType.FIELD) {{#jackson}} -@JacksonXmlRootElement({{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}"){{/jackson}}{{/withXml}} \ No newline at end of file +@JacksonXmlRootElement({{#xmlNamespace}}namespace = "{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{classname}}{{/xmlName}}"){{/jackson}}{{/withXml}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/java-pkmst/model.mustache b/modules/openapi-generator/src/main/resources/java-pkmst/model.mustache index 7a71d8c0720..2d287ef5e7c 100644 --- a/modules/openapi-generator/src/main/resources/java-pkmst/model.mustache +++ b/modules/openapi-generator/src/main/resources/java-pkmst/model.mustache @@ -15,6 +15,7 @@ import {{javaxPackage}}.validation.constraints.*; {{#withXml}} import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; {{/withXml}} {{/jackson}} {{#withXml}} diff --git a/modules/openapi-generator/src/main/resources/java-pkmst/pojo.mustache b/modules/openapi-generator/src/main/resources/java-pkmst/pojo.mustache index f9161d58c58..39ba1ad15c6 100644 --- a/modules/openapi-generator/src/main/resources/java-pkmst/pojo.mustache +++ b/modules/openapi-generator/src/main/resources/java-pkmst/pojo.mustache @@ -21,8 +21,13 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}} {{#vendorExtens {{/isContainer}} {{/isEnum}} {{#jackson}} - @JsonProperty("{{baseName}}"){{#withXml}} - @JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{.}}", {{/xmlNamespace}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"){{/withXml}} + @JsonProperty("{{baseName}}") + {{#withXml}} + @JacksonXmlProperty(localName = "{{items.xmlName}}{{^items.xmlName}}{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}{{/items.xmlName}}"{{#isXmlAttribute}}, isAttribute = true{{/isXmlAttribute}}{{#xmlNamespace}}, namespace = "{{.}}"{{/xmlNamespace}}) + {{#isContainer}} + @JacksonXmlElementWrapper({{#isXmlWrapped}}localName = "{{xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}", {{#xmlNamespace}}namespace = "{{.}}", {{/xmlNamespace}}{{/isXmlWrapped}}useWrapping = {{isXmlWrapped}}) + {{/isContainer}} + {{/withXml}} {{/jackson}} {{#gson}} @SerializedName("{{baseName}}") @@ -62,7 +67,7 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}} {{#vendorExtens } {{/isMap}} - /** + /** {{#description}} * {{{.}}} {{/description}} @@ -76,7 +81,7 @@ public class {{classname}} {{#parent}}extends {{{.}}}{{/parent}} {{#vendorExtens * maximum: {{.}} {{/maximum}} * @return {{name}} - **/ + */ {{#vendorExtensions.x-extra-annotation}} {{{vendorExtensions.x-extra-annotation}}} {{/vendorExtensions.x-extra-annotation}} diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java index 49410305d19..942315f1534 100644 --- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java +++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java @@ -118,6 +118,19 @@ public class JavaClientCodegenTest { .iterator(); } + @DataProvider Iterator librariesSupportingJackson() { + return Arrays.stream(Library.values()) + .filter(library -> library.getSupportedSerializers().contains(Serializer.JACKSON)) + .iterator(); + } + + @DataProvider Iterator librariesNotSupportingJackson() { + return Arrays.stream(Library.values()) + .filter(library -> !library.getSupportedSerializers().contains(Serializer.JACKSON)) + .iterator(); + } + + @Test public void arraysInRequestBody() { OpenAPI openAPI = TestUtils.createOpenAPI(); final JavaClientCodegen codegen = new JavaClientCodegen(); @@ -2676,4 +2689,256 @@ public class JavaClientCodegenTest { throw new RuntimeException(e); } } + + /** + * General XML annotations test (both JAXB and Jackson) + *
+ * Includes regression tests for: + * - Correct Jackson annotation when `wrapped: false` + * - Microprofile generator missing Jackson annotations and namespaces + */ + @Test(dataProvider = "librariesSupportingJackson") + void shouldGenerateCorrectXmlAnnotations(Library library) throws IOException { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = newTempFolder(); + + JavaClientCodegen codegen = new JavaClientCodegen(); + codegen.setLibrary(library.getValue()); + codegen.setSerializationLibrary("jackson"); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_TESTS, "false"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_DOCS, "false"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/org/openapitools/client/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("JacksonXmlRootElement", Map.of("localName", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .hasProperty("tags").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Tag\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"TagList\"")) + .toProperty().toType() + .assertMethod("getTags").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Tag\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"TagList\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("friends").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"friend-pet\"")) + .toProperty().toType() + .assertMethod("getFriends").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .hasProperty("status").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"PetStatus\"")) + .toProperty().toType() + .assertMethod("getStatus").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"PetStatus\"")) + .toMethod().toFileAssert() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("photoUrls").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"photoUrls\"")) + .toProperty().toType() + .assertMethod("getPhotoUrls").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"photoUrls\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .hasProperty("name").assertPropertyAnnotations() + .doesNotContainsWithName("XmlElement") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlAttribute", Map.of("name", "\"name\"")) + .toProperty().toType() + .assertMethod("getName").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("isAttribute", "true", "localName", "\"name\"")) + .toMethod().toFileAssert() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .hasProperty("id").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toProperty().toType() + .assertMethod("getId").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toMethod().toFileAssert() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("foods").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"yummy-yummy\"")) + .toProperty().toType() + .assertMethod("getFoods").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"yummy-yummy\"")) + .toMethod().toFileAssert() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("colors").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"color\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"colors\"")) + .toProperty().toType() + .assertMethod("getColors").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"color\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"colors\"")) + .toMethod().toFileAssert() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("categories").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Category\"")) + .toProperty().toType() + .assertMethod("getCategories").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Category\"")) + // ↓ specific regression test for #2417: (useWrapping=false) needs to be present + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("activities").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"item\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"activities-array\"")) + .toProperty().toType() + .assertMethod("getActivities").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"item\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"activities-array\"")); + } + + /** + * General XML annotations test (only JAXB) + */ + @Test(dataProvider = "librariesNotSupportingJackson") + void shouldGenerateCorrectJaxbAnnotations(Library library) { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = newTempFolder(); + + JavaClientCodegen codegen = new JavaClientCodegen(); + codegen.setLibrary(library.getValue()); + codegen.setSerializationLibrary("jackson"); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_TESTS, "false"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_DOCS, "false"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/org/openapitools/client/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .hasProperty("tags").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Tag\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"TagList\"")) + .toProperty().toType() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("friends").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"friend-pet\"")) + .toProperty().toType() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .hasProperty("status").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"PetStatus\"")) + .toProperty().toType() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("photoUrls").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"photoUrls\"")) + .toProperty().toType() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .hasProperty("name").assertPropertyAnnotations() + .doesNotContainsWithName("XmlElement") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlAttribute", Map.of("name", "\"name\"")) + .toProperty().toType() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .hasProperty("id").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toProperty().toType() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("foods").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"yummy-yummy\"")) + .toProperty().toType() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("colors").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"color\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"colors\"")) + .toProperty().toType() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("categories").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Category\"")) + .toProperty().toType() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("activities").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"item\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"activities-array\"")); + } } diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautClientCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautClientCodegenTest.java similarity index 62% rename from modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautClientCodegenTest.java rename to modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautClientCodegenTest.java index 2c449e9bfee..d3e50f79700 100644 --- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautClientCodegenTest.java +++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautClientCodegenTest.java @@ -3,16 +3,22 @@ package org.openapitools.codegen.java.micronaut; import io.swagger.v3.oas.models.OpenAPI; import io.swagger.v3.oas.models.info.Info; import io.swagger.v3.oas.models.servers.Server; -import org.openapitools.codegen.CliOption; -import org.openapitools.codegen.CodegenConstants; +import org.openapitools.codegen.*; +import org.openapitools.codegen.java.assertions.JavaFileAssert; import org.openapitools.codegen.languages.JavaMicronautClientCodegen; import org.testng.Assert; import org.testng.annotations.Test; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Map; + import static java.util.stream.Collectors.groupingBy; -import static org.testng.Assert.*; +import static org.testng.Assert.assertEquals; -public class MicronautClientCodegenTest extends AbstractMicronautCodegenTest { +public class JavaMicronautClientCodegenTest extends AbstractMicronautCodegenTest { @Test public void clientOptsUnicity() { JavaMicronautClientCodegen codegen = new JavaMicronautClientCodegen(); @@ -310,4 +316,150 @@ public class MicronautClientCodegenTest extends AbstractMicronautCodegenTest { // Micronaut declarative http client should use the provided path separator assertFileContains(outputPath + "/src/main/java/org/openapitools/api/PetApi.java", "@Client(\"${openapi-micronaut-client.base-path}\")"); } + + /** + * General XML annotations test (both JAXB and Jackson) + *
+ * Includes regression tests for: + * - Correct Jackson annotation when `wrapped: false` + */ + @Test public void shouldGenerateCorrectXmlAnnotations() throws IOException { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = Files.createTempDirectory("test-xml-annotations_"); + output.toFile().deleteOnExit(); + + JavaMicronautClientCodegen codegen = new JavaMicronautClientCodegen(); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_TESTS, "false"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_DOCS, "false"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/org/openapitools/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("JacksonXmlRootElement", Map.of("localName", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .hasProperty("tags").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Tag\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"TagList\"")) + .toProperty().toType() + .assertMethod("getTags").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Tag\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"TagList\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("friends").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"friend-pet\"")) + .toProperty().toType() + .assertMethod("getFriends").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .hasProperty("status").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"PetStatus\"")) + .toProperty().toType() + .assertMethod("getStatus").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"PetStatus\"")) + .toMethod().toFileAssert() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("photoUrls").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"photoUrls\"")) + .toProperty().toType() + .assertMethod("getPhotoUrls").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"photoUrls\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .hasProperty("name").assertPropertyAnnotations() + .doesNotContainsWithName("XmlElement") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlAttribute", Map.of("name", "\"name\"")) + .toProperty().toType() + .assertMethod("getName").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("isAttribute", "true", "localName", "\"name\"")) + .toMethod().toFileAssert() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .hasProperty("id").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toProperty().toType() + .assertMethod("getId").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toMethod().toFileAssert() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("foods").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"yummy-yummy\"")) + .toProperty().toType() + .assertMethod("getFoods").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"yummy-yummy\"")) + .toMethod().toFileAssert() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("colors").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"color\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"colors\"")) + .toProperty().toType() + .assertMethod("getColors").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"color\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"colors\"")) + .toMethod().toFileAssert() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("categories").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Category\"")) + .toProperty().toType() + .assertMethod("getCategories").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Category\"")) + // ↓ specific regression test for #2417: (useWrapping=false) needs to be present + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("activities").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"item\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"activities-array\"")) + .toProperty().toType() + .assertMethod("getActivities").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"item\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"activities-array\"")); + } } diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautServerCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautServerCodegenTest.java similarity index 65% rename from modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautServerCodegenTest.java rename to modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautServerCodegenTest.java index 4b1ad1db749..e2b79e245d0 100644 --- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/MicronautServerCodegenTest.java +++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/micronaut/JavaMicronautServerCodegenTest.java @@ -3,17 +3,21 @@ package org.openapitools.codegen.java.micronaut; import io.swagger.v3.oas.models.OpenAPI; import io.swagger.v3.oas.models.info.Info; import io.swagger.v3.oas.models.servers.Server; -import org.openapitools.codegen.CliOption; -import org.openapitools.codegen.CodegenConstants; -import org.openapitools.codegen.TestUtils; +import org.openapitools.codegen.*; +import org.openapitools.codegen.java.assertions.JavaFileAssert; import org.openapitools.codegen.languages.JavaMicronautServerCodegen; import org.testng.Assert; import org.testng.annotations.Test; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Map; + import static java.util.stream.Collectors.groupingBy; import static org.testng.Assert.assertEquals; -public class MicronautServerCodegenTest extends AbstractMicronautCodegenTest { +public class JavaMicronautServerCodegenTest extends AbstractMicronautCodegenTest { protected static String ROLES_EXTENSION_TEST_PATH = "src/test/resources/3_0/micronaut/roles-extension-test.yaml"; protected static String MULTI_TAGS_TEST_PATH = "src/test/resources/3_0/micronaut/multi-tags-test.yaml"; @@ -341,4 +345,150 @@ public class MicronautServerCodegenTest extends AbstractMicronautCodegenTest { assertFileContains(controllerPath + "SearchController.java", "authorSearchGet", "bookSearchGet"); } + + /** + * General XML annotations test (both JAXB and Jackson) + *
+ * Includes regression tests for: + * - Correct Jackson annotation when `wrapped: false` + */ + @Test public void shouldGenerateCorrectXmlAnnotations() throws IOException { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = Files.createTempDirectory("test-xml-annotations_"); + output.toFile().deleteOnExit(); + + JavaMicronautServerCodegen codegen = new JavaMicronautServerCodegen(); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_TESTS, "false"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_DOCS, "false"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/org/openapitools/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("JacksonXmlRootElement", Map.of("localName", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .hasProperty("tags").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Tag\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"TagList\"")) + .toProperty().toType() + .assertMethod("getTags").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Tag\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"TagList\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("friends").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"friend-pet\"")) + .toProperty().toType() + .assertMethod("getFriends").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .hasProperty("status").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"PetStatus\"")) + .toProperty().toType() + .assertMethod("getStatus").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"PetStatus\"")) + .toMethod().toFileAssert() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("photoUrls").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"photoUrls\"")) + .toProperty().toType() + .assertMethod("getPhotoUrls").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"photoUrls\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .hasProperty("name").assertPropertyAnnotations() + .doesNotContainsWithName("XmlElement") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlAttribute", Map.of("name", "\"name\"")) + .toProperty().toType() + .assertMethod("getName").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("isAttribute", "true", "localName", "\"name\"")) + .toMethod().toFileAssert() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .hasProperty("id").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toProperty().toType() + .assertMethod("getId").assertMethodAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toMethod().toFileAssert() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("foods").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"yummy-yummy\"")) + .toProperty().toType() + .assertMethod("getFoods").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"yummy-yummy\"")) + .toMethod().toFileAssert() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("colors").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"color\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"colors\"")) + .toProperty().toType() + .assertMethod("getColors").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"color\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"colors\"")) + .toMethod().toFileAssert() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("categories").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Category\"")) + .toProperty().toType() + .assertMethod("getCategories").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Category\"")) + // ↓ specific regression test for #2417: (useWrapping=false) needs to be present + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("activities").assertPropertyAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"item\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"activities-array\"")) + .toProperty().toType() + .assertMethod("getActivities").assertMethodAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"item\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"activities-array\"")); + } } diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java index cd7c21512dc..21ae7fdb8e4 100644 --- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java +++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java @@ -17,60 +17,17 @@ package org.openapitools.codegen.java.spring; -import static java.util.stream.Collectors.groupingBy; -import static org.assertj.core.api.Assertions.assertThat; -import static org.openapitools.codegen.TestUtils.assertFileContains; -import static org.openapitools.codegen.TestUtils.assertFileNotContains; -import static org.openapitools.codegen.languages.AbstractJavaCodegen.GENERATE_BUILDERS; -import static org.openapitools.codegen.languages.AbstractJavaCodegen.GENERATE_CONSTRUCTOR_WITH_ALL_ARGS; -import static org.openapitools.codegen.languages.SpringCodegen.ASYNC; -import static org.openapitools.codegen.languages.SpringCodegen.DELEGATE_PATTERN; -import static org.openapitools.codegen.languages.SpringCodegen.DocumentationProvider; -import static org.openapitools.codegen.languages.SpringCodegen.IMPLICIT_HEADERS; -import static org.openapitools.codegen.languages.SpringCodegen.INTERFACE_ONLY; -import static org.openapitools.codegen.languages.SpringCodegen.OPENAPI_NULLABLE; -import static org.openapitools.codegen.languages.SpringCodegen.REACTIVE; -import static org.openapitools.codegen.languages.SpringCodegen.REQUEST_MAPPING_OPTION; -import static org.openapitools.codegen.languages.SpringCodegen.RESPONSE_WRAPPER; -import static org.openapitools.codegen.languages.SpringCodegen.RETURN_SUCCESS_CODE; -import static org.openapitools.codegen.languages.SpringCodegen.SKIP_DEFAULT_INTERFACE; -import static org.openapitools.codegen.languages.SpringCodegen.SPRING_BOOT; -import static org.openapitools.codegen.languages.SpringCodegen.SPRING_CLOUD_LIBRARY; -import static org.openapitools.codegen.languages.SpringCodegen.SPRING_CONTROLLER; -import static org.openapitools.codegen.languages.SpringCodegen.SSE; -import static org.openapitools.codegen.languages.SpringCodegen.USE_ENUM_CASE_INSENSITIVE; -import static org.openapitools.codegen.languages.SpringCodegen.USE_RESPONSE_ENTITY; -import static org.openapitools.codegen.languages.SpringCodegen.USE_SPRING_BOOT3; -import static org.openapitools.codegen.languages.SpringCodegen.USE_TAGS; -import static org.openapitools.codegen.languages.features.DocumentationProviderFeatures.ANNOTATION_LIBRARY; -import static org.openapitools.codegen.languages.features.DocumentationProviderFeatures.DOCUMENTATION_PROVIDER; -import static org.testng.Assert.assertEquals; -import static org.testng.Assert.fail; - -import java.io.File; -import java.io.IOException; -import java.math.BigDecimal; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.function.Consumer; -import java.util.function.Function; -import java.util.stream.Collectors; +import com.google.common.collect.ImmutableMap; +import io.swagger.parser.OpenAPIParser; +import io.swagger.v3.oas.models.OpenAPI; +import io.swagger.v3.oas.models.Operation; +import io.swagger.v3.oas.models.info.Info; +import io.swagger.v3.oas.models.media.Schema; +import io.swagger.v3.oas.models.servers.Server; +import io.swagger.v3.parser.core.models.ParseOptions; import org.apache.commons.lang3.StringUtils; import org.assertj.core.api.MapAssert; -import org.openapitools.codegen.CliOption; -import org.openapitools.codegen.ClientOptInput; -import org.openapitools.codegen.CodegenConstants; -import org.openapitools.codegen.CodegenModel; -import org.openapitools.codegen.CodegenOperation; -import org.openapitools.codegen.CodegenParameter; -import org.openapitools.codegen.CodegenProperty; -import org.openapitools.codegen.DefaultGenerator; -import org.openapitools.codegen.SupportingFile; -import org.openapitools.codegen.TestUtils; +import org.openapitools.codegen.*; import org.openapitools.codegen.config.CodegenConfigurator; import org.openapitools.codegen.config.GlobalSettings; import org.openapitools.codegen.java.assertions.JavaFileAssert; @@ -85,15 +42,30 @@ import org.testng.annotations.DataProvider; import org.testng.annotations.Ignore; import org.testng.annotations.Test; -import com.google.common.collect.ImmutableMap; +import java.io.File; +import java.io.IOException; +import java.math.BigDecimal; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.function.Consumer; +import java.util.function.Function; +import java.util.stream.Collectors; -import io.swagger.parser.OpenAPIParser; -import io.swagger.v3.oas.models.OpenAPI; -import io.swagger.v3.oas.models.Operation; -import io.swagger.v3.oas.models.info.Info; -import io.swagger.v3.oas.models.media.Schema; -import io.swagger.v3.oas.models.servers.Server; -import io.swagger.v3.parser.core.models.ParseOptions; +import static java.util.stream.Collectors.groupingBy; +import static org.assertj.core.api.Assertions.assertThat; +import static org.openapitools.codegen.TestUtils.assertFileContains; +import static org.openapitools.codegen.TestUtils.assertFileNotContains; +import static org.openapitools.codegen.languages.AbstractJavaCodegen.GENERATE_BUILDERS; +import static org.openapitools.codegen.languages.AbstractJavaCodegen.GENERATE_CONSTRUCTOR_WITH_ALL_ARGS; +import static org.openapitools.codegen.languages.SpringCodegen.*; +import static org.openapitools.codegen.languages.features.DocumentationProviderFeatures.ANNOTATION_LIBRARY; +import static org.openapitools.codegen.languages.features.DocumentationProviderFeatures.DOCUMENTATION_PROVIDER; +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.fail; public class SpringCodegenTest { @@ -4888,6 +4860,133 @@ public class SpringCodegenTest { JavaFileAssert.assertThat(files.get("Color.java")) .assertMethod("fromValue").bodyContainsLines("throw new IllegalArgumentException(\"Unexpected value '\" + value + \"'\");"); + } + /** + * General XML annotations test (both JAXB and Jackson) + *
+ * Includes regression tests for: + * - Correct Jackson annotation when `wrapped: false` + */ + @Test void shouldGenerateCorrectXmlAnnotations() throws IOException { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = Files.createTempDirectory("test-xml-annotations_"); + output.toFile().deleteOnExit(); + + SpringCodegen codegen = new SpringCodegen(); + codegen.setLibrary(SPRING_BOOT); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/org/openapitools/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("JacksonXmlRootElement", Map.of("localName", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .assertMethod("getTags").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Tag\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"TagList\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Tag\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"TagList\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .assertMethod("getFriends").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .assertMethod("getStatus").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"PetStatus\"")) + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"PetStatus\"")) + .toMethod().toFileAssert() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .assertMethod("getPhotoUrls").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"photoUrls\"", "useWrapping", "true")) + .toMethod().toFileAssert() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .assertMethod("getName").assertMethodAnnotations() + .doesNotContainsWithName("XmlElement") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlAttribute", Map.of("name", "\"name\"")) + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes( + "JacksonXmlProperty", + Map.of("isAttribute", "true", "localName", "\"name\"") + ) + .toMethod().toFileAssert() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .assertMethod("getId").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toMethod().toFileAssert() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .assertMethod("getFoods").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"yummy-yummy\"")) + .toMethod().toFileAssert() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .assertMethod("getColors").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"color\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"colors\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"color\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"colors\"")) + .toMethod().toFileAssert() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .assertMethod("getCategories").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .doesNotContainsWithName("XmlElementWrapper") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"Category\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Category\"")) + // ↓ specific regression test for #2417: (useWrapping=false) needs to be present + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toMethod().toFileAssert() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .assertMethod("getActivities").assertMethodAnnotations() + .doesNotContainsWithName("XmlAttribute") + .containsWithNameAndAttributes("XmlElement", Map.of("name", "\"item\"")) + .containsWithNameAndAttributes("XmlElementWrapper", Map.of("name", "\"activities-array\"")) + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"item\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"activities-array\"")); } } diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/languages/JavaPKMSTServerCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/languages/JavaPKMSTServerCodegenTest.java new file mode 100644 index 00000000000..25dbd04093f --- /dev/null +++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/languages/JavaPKMSTServerCodegenTest.java @@ -0,0 +1,112 @@ +package org.openapitools.codegen.languages; + +import org.openapitools.codegen.ClientOptInput; +import org.openapitools.codegen.CodegenConstants; +import org.openapitools.codegen.DefaultGenerator; +import org.openapitools.codegen.TestUtils; +import org.openapitools.codegen.java.assertions.JavaFileAssert; +import org.testng.annotations.Test; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Map; + +public class JavaPKMSTServerCodegenTest { + + /** + * General XML annotations test (both JAXB and Jackson) + *
+ * Includes regression tests for: + * - Correct Jackson annotation when `wrapped: false` + */ + @Test public void shouldGenerateCorrectXmlAnnotations() throws IOException { + // Arrange + final String TEST_SPEC = "src/test/resources/3_0/java/xml-annotations-test.yaml"; + final Path output = Files.createTempDirectory("test-xml-annotations_"); + output.toFile().deleteOnExit(); + + JavaPKMSTServerCodegen codegen = new JavaPKMSTServerCodegen(); + codegen.setWithXml(true); + codegen.setOutputDir(output.toString()); + + DefaultGenerator generator = new DefaultGenerator(); + generator.setGeneratorPropertyDefault(CodegenConstants.MODELS, "true"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_TESTS, "false"); + generator.setGeneratorPropertyDefault(CodegenConstants.MODEL_DOCS, "false"); + generator.setGenerateMetadata(false); + + // Act + generator.opts(new ClientOptInput().config(codegen).openAPI(TestUtils.parseSpec(TEST_SPEC))).generate(); + + // Assert + JavaFileAssert.assertThat(output.resolve("src/main/java/com/prokarma/pkmst/model/Pet.java").toFile()) + .assertTypeAnnotations() + .containsWithNameAndAttributes("JacksonXmlRootElement", Map.of("localName", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlRootElement", Map.of("name", "\"Pet\"", "namespace", "\"urn:jacksonxml\"")) + .containsWithNameAndAttributes("XmlAccessorType", Map.of("value", "XmlAccessType.FIELD")) + .toType() + + // ↓ test custom-name on wrapper element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + .hasProperty("tags").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Tag\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"TagList\"", "useWrapping", "true")) + .toProperty().toType() + + // ↓ custom internal xml-array element name, non-wrapped (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("friends").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"friend-pet\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toProperty().toType() + + // ↓ test custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + .hasProperty("status").assertPropertyAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"PetStatus\"")) + .toProperty().toType() + + // ↓ test same-name wrapping element (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Wrapping%20Arrays) + // maps to 3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("photoUrls").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"photoUrls\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"photoUrls\"", "useWrapping", "true")) + .toProperty().toType() + + // ↓ test attribute generation (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Convert%20Property%20to%20an%20Attribute) + .hasProperty("name").assertPropertyAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("isAttribute", "true", "localName", "\"name\"")) + .toProperty().toType() + + // ↓ test XML namespace and prefix (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Prefixes%20and%20Namespaces) + .hasProperty("id").assertPropertyAnnotations() + .doesNotContainsWithName("JacksonXmlElementWrapper") + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"id\"", "namespace", "\"http://example.com/schema\"")) + .toProperty().toType() + + // ↓ external xml-array element name only (last example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("foods").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"yummy-yummy\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"yummy-yummy\"")) + .toProperty().toType() + + // ↓ internal xml-array element name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("colors").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"color\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"colors\"")) + .toProperty().toType() + + // ↓ ignored external xml-array element name, non-wrapped (2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + .hasProperty("categories").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"Category\"")) + // ↓ specific regression test for #2417: (useWrapping=false) needs to be present + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("useWrapping", "false")) + .toProperty().toType() + + // ↓ test custom-name on wrapper AND children (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Use%20xml/name%20to%20give%20different%20names) + // maps to 5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays + .hasProperty("activities").assertPropertyAnnotations() + .containsWithNameAndAttributes("JacksonXmlProperty", Map.of("localName", "\"item\"")) + .containsWithNameAndAttributes("JacksonXmlElementWrapper", Map.of("localName", "\"activities-array\"")); + } +} \ No newline at end of file diff --git a/modules/openapi-generator/src/test/resources/3_0/java/xml-annotations-test.yaml b/modules/openapi-generator/src/test/resources/3_0/java/xml-annotations-test.yaml new file mode 100644 index 00000000000..2b585377f5c --- /dev/null +++ b/modules/openapi-generator/src/test/resources/3_0/java/xml-annotations-test.yaml @@ -0,0 +1,142 @@ +openapi: 3.0.0 +info: + description: | + This spec is mainly for testing JAXB & Jackson XML annotation being generated correctly. + Some guidance: + - Jackson annotations: https://www.baeldung.com/jackson-xml-serialization-and-deserialization + - JAXB annotations: https://howtodoinjava.com/jaxb/xmlelementwrapper-annotation + version: 1.0.0 + title: OpenAPI Petstore +servers: + - url: 'https://localhost' +paths: + /foo: + get: + operationId: foo + responses: + '200': + description: response + content: + application/xml: + schema: + $ref: '#/components/schemas/Pet' +components: + requestBodies: + Pet: + content: + application/json: + schema: + $ref: '#/components/schemas/Pet' + application/xml: + schema: + $ref: '#/components/schemas/Pet' + description: Pet object that needs to be added to the store + required: true + schemas: + Category: + type: object + required: + - name + properties: + id: + type: integer + format: int64 + name: + type: string + default: default-name + xml: + name: Category + Tag: + type: object + properties: + id: + type: integer + format: int64 + name: + type: string + xml: + name: Tag + Pet: + type: object + required: + - name + - photoUrls + properties: + id: + type: integer + format: int64 + x-is-unique: true + xml: + prefix: 'smp' + namespace: 'http://example.com/schema' + friends: # non-wrapped with custom xml item element name (1st example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + type: array + items: + type: string + xml: + name: friend-pet + categories: + type: array + items: + $ref: '#/components/schemas/Category' + xml: + wrapped: false # This is the default value as per OAI spec anyway, just being explicit here for the test + # as per https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=For%20arrays: + # »For arrays, the `xml/name` property works only if `xml/wrapped` is set to true. + name: NotUsedAsNotWrapped # ← so this will not be used (see also 2nd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + name: + type: string + example: doggie + xml: + attribute: true + photoUrls: # wrapped with no defined xml name (3rd example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + type: array + xml: + wrapped: true + items: + type: string + colors: # wrapped with only internal xml name (4th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + type: array + xml: + wrapped: true + items: + type: string + xml: + name: color + activities: # wrapped with both internal and external xml name (5th example in https://spec.openapis.org/oas/v3.0.0#xml-arrays) + type: array + xml: + wrapped: true + name: activities-array + items: + type: string + xml: + name: item + foods: + type: array + items: + type: string + xml: + name: yummy-yummy # test case for changing external name, but not internal (last example at https://spec.openapis.org/oas/v3.0.0#xml-arrays) + wrapped: true + tags: + type: array + xml: + name: TagList + wrapped: true + items: + $ref: '#/components/schemas/Tag' + xml: + name: Ignored # because sibling elements of `$ref`s are ignored (https://swagger.io/docs/specification/using-ref/) + status: + type: string + description: pet status in the store + enum: + - available + - pending + - sold + xml: + name: PetStatus # custom element name (https://swagger.io/docs/specification/data-models/representing-xml/#:~:text=Change%20Element%20Names) + xml: + name: Pet + namespace: 'urn:jacksonxml' diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml index 28b35f47071..e4957b4e19d 100644 --- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml +++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml @@ -1485,10 +1485,11 @@ components: photoUrls: type: array xml: - name: photoUrl wrapped: true items: type: string + xml: + name: photoUrl uniqueItems: true tags: type: array diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Bird.java index 4042a224831..c880987aa9b 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Bird.java @@ -50,10 +50,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java index 988dcb8eb2c..fd6052914b8 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java @@ -50,10 +50,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DataQuery.java index f8c78a9d181..89592197b82 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DataQuery.java @@ -60,10 +60,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SUFFIX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -110,10 +110,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DefaultValue.java index 2d36869f56c..6a097c965f7 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -127,10 +127,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,10 +160,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,10 +193,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -259,10 +259,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -296,10 +296,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -341,10 +341,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -374,10 +374,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index 66e1ac060e1..e8b3abb2da5 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -55,10 +55,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,12 +105,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java index ecbe75aeb7f..c5bb883ac0f 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -224,10 +224,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -249,10 +249,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Query.java index 0b6941388dc..1e3447105f0 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Query.java @@ -90,10 +90,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,10 +123,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java index 7caaa909380..4c6a374476e 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java @@ -50,10 +50,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index d30aa15102e..dafba022e62 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -47,10 +47,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index 524d6062eca..2bee0d2b8b5 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -59,10 +59,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -109,10 +109,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,10 +134,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index 285428be0d8..1cee1fef333 100644 --- a/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -58,10 +58,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_VALUES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Bird.java index c96cfa2f9c1..4a1a0cf3d23 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Bird.java @@ -44,10 +44,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable public String getSize() { @@ -66,10 +66,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Category.java index 902b84b2034..c4b7113adb8 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Category.java @@ -44,10 +44,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -66,10 +66,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DataQuery.java index fdac72f1b47..a3ae7944ef1 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DataQuery.java @@ -54,10 +54,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable public String getSuffix() { @@ -76,10 +76,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable public String getText() { @@ -98,10 +98,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDate() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DefaultValue.java index df0c9fd62df..6eca8d3374f 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -130,10 +130,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringEnumRefDefault() { @@ -160,10 +160,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringEnumDefault() { @@ -190,10 +190,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringDefault() { @@ -220,10 +220,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable public List getArrayIntegerDefault() { @@ -250,10 +250,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable public List getArrayString() { @@ -280,10 +280,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable public List getArrayStringNullable() { @@ -310,10 +310,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable public List getArrayStringExtensionNullable() { @@ -332,10 +332,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable public String getStringNullable() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index 6f115daca23..e3e9cc4deac 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -49,10 +49,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable public BigDecimal getNumber() { @@ -71,10 +71,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { @@ -93,12 +93,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Pet.java index fa501928804..9eff7e479cc 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Pet.java @@ -114,10 +114,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -136,10 +136,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { @@ -188,10 +188,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { @@ -218,10 +218,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { @@ -240,10 +240,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Query.java index f5f0ef60ab1..c6b425eafd7 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Query.java @@ -96,10 +96,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -126,10 +126,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable public List getOutcomes() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Tag.java index 0efc621f6a6..03f852c6e7e 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/Tag.java @@ -44,10 +44,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -66,10 +66,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 968b3e84478..db627cbbaed 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -40,10 +40,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index 68e8d00753c..ecef552a2c3 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -52,10 +52,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable public String getSize() { @@ -74,10 +74,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { @@ -96,10 +96,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -118,10 +118,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index c7f36316bbf..bc2e076e478 100644 --- a/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/feign-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -51,10 +51,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable public List getValues() { diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Bird.java index f6c0268eff8..bf8c0d5f4ad 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Bird.java @@ -52,14 +52,13 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSize() { return size; } @@ -77,14 +76,13 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getColor() { return color; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Category.java index fde6c298397..a6029a32e39 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Category.java @@ -52,14 +52,13 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DataQuery.java index 699122d09e7..c94db8ed361 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DataQuery.java @@ -60,14 +60,13 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SUFFIX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSuffix() { return suffix; } @@ -85,14 +84,13 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getText() { return text; } @@ -110,14 +108,13 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Instant getDate() { return date; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DefaultValue.java index 087ffb4cdbc..8a76e68aa23 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -128,14 +128,13 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayStringEnumRefDefault() { return arrayStringEnumRefDefault; } @@ -161,14 +160,13 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayStringEnumDefault() { return arrayStringEnumDefault; } @@ -194,14 +192,13 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayStringDefault() { return arrayStringDefault; } @@ -227,14 +224,13 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayIntegerDefault() { return arrayIntegerDefault; } @@ -260,14 +256,13 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayString() { return arrayString; } @@ -297,13 +292,12 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayStringNullable() { return arrayStringNullable.orElse(null); } @@ -342,13 +336,12 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayStringExtensionNullable() { return arrayStringExtensionNullable.orElse(null); } @@ -375,13 +368,12 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore - public String getStringNullable() { return stringNullable.orElse(null); } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index 431081d5e2f..766e70f6672 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -57,14 +57,13 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getNumber() { return number; } @@ -82,14 +81,13 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Float getFloat() { return _float; } @@ -107,16 +105,15 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Double getDouble() { return _double; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Pet.java index 3d59e13e74d..0b3ba525fd7 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Pet.java @@ -109,14 +109,13 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -134,14 +133,13 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } @@ -159,14 +157,13 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Category getCategory() { return category; } @@ -192,14 +189,13 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public List getPhotoUrls() { return photoUrls; } @@ -225,14 +221,13 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getTags() { return tags; } @@ -250,14 +245,13 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Query.java index 3516d42378d..5666e1f8391 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Query.java @@ -91,14 +91,13 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -124,14 +123,13 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getOutcomes() { return outcomes; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Tag.java index 3b5269ef194..8d7bbe0fb04 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/Tag.java @@ -52,14 +52,13 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 2daf35f63cc..965b689868e 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -48,14 +48,13 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index d6a413b441c..ff12141d574 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -60,14 +60,13 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSize() { return size; } @@ -85,14 +84,13 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getColor() { return color; } @@ -110,14 +108,13 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -135,14 +132,13 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index c66f16d3a30..b4ef260240b 100644 --- a/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/native/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -58,14 +58,13 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_VALUES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getValues() { return values; } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Category.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Category.java index fcb1ecc9508..6a5bc706a55 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Category.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Category.java @@ -78,12 +78,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/ModelApiResponse.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/ModelApiResponse.java index 7ac99309562..c4944e84356 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/ModelApiResponse.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/ModelApiResponse.java @@ -78,12 +78,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Order.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Order.java index 2ae1373fb14..37bd4dffbd2 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Order.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Order.java @@ -78,12 +78,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Pet.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Pet.java index 49722267815..dd8871707e1 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Pet.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Pet.java @@ -78,12 +78,12 @@ public class Pet { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Tag.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Tag.java index 8aaa07aad99..b1d3f81dbf7 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Tag.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/Tag.java @@ -78,12 +78,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/User.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/User.java index d3040094c25..9aafd2ed6c4 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/User.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/modelCopy/User.java @@ -78,12 +78,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -129,22 +129,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Category.java index 18b7e9784c0..15c5ecf9255 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -154,12 +154,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/ModelApiResponse.java index fd5033b66f5..f83f476a932 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -180,12 +180,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -238,22 +238,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Order.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Order.java index 8f3d5be6fc2..bf9cc6ebce7 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -313,12 +313,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -372,22 +372,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Pet.java index d2c4faf698e..9484a7c990b 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Pet.java @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -339,12 +339,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -432,22 +432,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Tag.java index 096390e03d8..46b64b0d63b 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -154,12 +154,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/User.java b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/User.java index a299b46e330..45add60fb35 100644 --- a/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/echo_api/java/okhttp-gson-user-defined-templates/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -310,12 +310,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -380,22 +380,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Bird.java index bd487c9c3f0..72442305175 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Bird.java @@ -67,10 +67,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable public String getSize() { return size; @@ -86,10 +86,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -154,12 +154,12 @@ public class Bird { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Bird - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Bird + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Bird.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -212,22 +212,22 @@ public class Bird { } } - /** - * Create an instance of Bird given an JSON string - * - * @param jsonString JSON string - * @return An instance of Bird - * @throws IOException if the JSON string is invalid with respect to Bird - */ + /** + * Create an instance of Bird given an JSON string + * + * @param jsonString JSON string + * @return An instance of Bird + * @throws IOException if the JSON string is invalid with respect to Bird + */ public static Bird fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Bird.class); } - /** - * Convert an instance of Bird to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Bird to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java index f95187c6999..9fecfb9b3f4 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -154,12 +154,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DataQuery.java index 371876ce860..c92fe9ea4bb 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DataQuery.java @@ -75,10 +75,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable public String getSuffix() { return suffix; @@ -94,10 +94,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable public String getText() { return text; @@ -113,10 +113,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDate() { return date; @@ -188,12 +188,12 @@ public class DataQuery extends Query { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to DataQuery - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DataQuery + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!DataQuery.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -246,22 +246,22 @@ public class DataQuery extends Query { } } - /** - * Create an instance of DataQuery given an JSON string - * - * @param jsonString JSON string - * @return An instance of DataQuery - * @throws IOException if the JSON string is invalid with respect to DataQuery - */ + /** + * Create an instance of DataQuery given an JSON string + * + * @param jsonString JSON string + * @return An instance of DataQuery + * @throws IOException if the JSON string is invalid with respect to DataQuery + */ public static DataQuery fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, DataQuery.class); } - /** - * Convert an instance of DataQuery to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of DataQuery to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DefaultValue.java index 29f96bf92f5..4906270fec6 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -157,10 +157,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringEnumRefDefault() { return arrayStringEnumRefDefault; @@ -184,10 +184,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringEnumDefault() { return arrayStringEnumDefault; @@ -211,10 +211,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable public List getArrayStringDefault() { return arrayStringDefault; @@ -238,10 +238,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable public List getArrayIntegerDefault() { return arrayIntegerDefault; @@ -265,10 +265,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable public List getArrayString() { return arrayString; @@ -292,10 +292,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable public List getArrayStringNullable() { return arrayStringNullable; @@ -319,10 +319,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable public List getArrayStringExtensionNullable() { return arrayStringExtensionNullable; @@ -338,10 +338,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable public String getStringNullable() { return stringNullable; @@ -435,12 +435,12 @@ public class DefaultValue { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to DefaultValue - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DefaultValue + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!DefaultValue.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -518,22 +518,22 @@ public class DefaultValue { } } - /** - * Create an instance of DefaultValue given an JSON string - * - * @param jsonString JSON string - * @return An instance of DefaultValue - * @throws IOException if the JSON string is invalid with respect to DefaultValue - */ + /** + * Create an instance of DefaultValue given an JSON string + * + * @param jsonString JSON string + * @return An instance of DefaultValue + * @throws IOException if the JSON string is invalid with respect to DefaultValue + */ public static DefaultValue fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, DefaultValue.class); } - /** - * Convert an instance of DefaultValue to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of DefaultValue to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index fe0b947180d..247b0115f54 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -72,10 +72,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable public BigDecimal getNumber() { return number; @@ -91,10 +91,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { return _float; @@ -110,12 +110,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { return _double; @@ -183,12 +183,12 @@ public class NumberPropertiesOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NumberPropertiesOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NumberPropertiesOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NumberPropertiesOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -235,22 +235,22 @@ public class NumberPropertiesOnly { } } - /** - * Create an instance of NumberPropertiesOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of NumberPropertiesOnly - * @throws IOException if the JSON string is invalid with respect to NumberPropertiesOnly - */ + /** + * Create an instance of NumberPropertiesOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of NumberPropertiesOnly + * @throws IOException if the JSON string is invalid with respect to NumberPropertiesOnly + */ public static NumberPropertiesOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NumberPropertiesOnly.class); } - /** - * Convert an instance of NumberPropertiesOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NumberPropertiesOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java index 248eec6e0bb..82fe4d6aa38 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java @@ -141,10 +141,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -179,10 +179,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -206,10 +206,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -252,10 +252,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -334,12 +334,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -427,22 +427,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Query.java index 789437a4fee..7b88af11b57 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Query.java @@ -123,10 +123,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -150,10 +150,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable public List getOutcomes() { return outcomes; @@ -218,12 +218,12 @@ public class Query { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Query - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Query + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Query.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -238,22 +238,22 @@ public class Query { } - /** - * Create an instance of Query given an JSON string - * - * @param jsonString JSON string - * @return An instance of Query - * @throws IOException if the JSON string is invalid with respect to Query - */ + /** + * Create an instance of Query given an JSON string + * + * @param jsonString JSON string + * @return An instance of Query + * @throws IOException if the JSON string is invalid with respect to Query + */ public static Query fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Query.class); } - /** - * Convert an instance of Query to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Query to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java index 0cf831b4891..be0f989c633 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -154,12 +154,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 7ca81e409a1..309a6112ac2 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -63,10 +63,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -128,12 +128,12 @@ public class TestFormObjectMultipartRequestMarker { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TestFormObjectMultipartRequestMarker - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TestFormObjectMultipartRequestMarker + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TestFormObjectMultipartRequestMarker.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -183,22 +183,22 @@ public class TestFormObjectMultipartRequestMarker { } } - /** - * Create an instance of TestFormObjectMultipartRequestMarker given an JSON string - * - * @param jsonString JSON string - * @return An instance of TestFormObjectMultipartRequestMarker - * @throws IOException if the JSON string is invalid with respect to TestFormObjectMultipartRequestMarker - */ + /** + * Create an instance of TestFormObjectMultipartRequestMarker given an JSON string + * + * @param jsonString JSON string + * @return An instance of TestFormObjectMultipartRequestMarker + * @throws IOException if the JSON string is invalid with respect to TestFormObjectMultipartRequestMarker + */ public static TestFormObjectMultipartRequestMarker fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TestFormObjectMultipartRequestMarker.class); } - /** - * Convert an instance of TestFormObjectMultipartRequestMarker to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TestFormObjectMultipartRequestMarker to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index 1416cbc94ec..7c922da1d9d 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -75,10 +75,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable public String getSize() { return size; @@ -94,10 +94,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -113,10 +113,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -132,10 +132,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -206,12 +206,12 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -267,22 +267,22 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter } } - /** - * Create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter given an JSON string - * - * @param jsonString JSON string - * @return An instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter - * @throws IOException if the JSON string is invalid with respect to TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter - */ + /** + * Create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter given an JSON string + * + * @param jsonString JSON string + * @return An instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter + * @throws IOException if the JSON string is invalid with respect to TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter + */ public static TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.class); } - /** - * Convert an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index 6d9a17f5b8d..2d501a2fcb7 100644 --- a/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -73,10 +73,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable public List getValues() { return values; @@ -138,12 +138,12 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -194,22 +194,22 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { } } - /** - * Create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter given an JSON string - * - * @param jsonString JSON string - * @return An instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter - * @throws IOException if the JSON string is invalid with respect to TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter - */ + /** + * Create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter given an JSON string + * + * @param jsonString JSON string + * @return An instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter + * @throws IOException if the JSON string is invalid with respect to TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter + */ public static TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.class); } - /** - * Convert an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Bird.java index 531de298dfa..040c10ac742 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Bird.java @@ -47,10 +47,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Category.java index 2bdf8db6f75..8beed82c457 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DataQuery.java index 4de08e28865..e1e196ff0d7 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DataQuery.java @@ -57,10 +57,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SUFFIX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,10 +82,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DefaultValue.java index 298cdac6629..808b204b784 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -124,10 +124,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,10 +223,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,10 +256,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -338,10 +338,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -371,10 +371,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @jakarta.annotation.Nullable @JsonIgnore diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index 70d214eb16f..a95564c73ca 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -52,10 +52,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,12 +102,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Pet.java index 5d871c381e1..9497767a70c 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Pet.java @@ -105,10 +105,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -155,10 +155,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -221,10 +221,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,10 +246,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Query.java index b177d32db03..8140d959874 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Query.java @@ -87,10 +87,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,10 +120,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Tag.java index ab233fab038..bd309e78cb2 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 33efa33075c..ed371dfe7fb 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -44,10 +44,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index 77682f88a69..ce937de2e58 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -56,10 +56,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,10 +131,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index 66802d730e2..e0049b30400 100644 --- a/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -55,10 +55,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_VALUES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Bird.java index 3746b734690..2f2aa39db00 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Bird.java @@ -47,10 +47,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Category.java index 2a9fa4dfa00..32f837ac95a 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DataQuery.java index 5d1bc1e03c0..707eaa1c723 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DataQuery.java @@ -57,10 +57,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SUFFIX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,10 +82,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DefaultValue.java index 84a4ee82bcf..7352ecd6efb 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -124,10 +124,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,10 +223,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,10 +256,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -338,10 +338,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -371,10 +371,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index c1b5b4217b2..756b0c0fccc 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -52,10 +52,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,12 +102,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java index 0a7d248f244..b931a58a0ab 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java @@ -105,10 +105,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -155,10 +155,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -221,10 +221,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,10 +246,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Query.java index fe08f4a195b..076438bbe80 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Query.java @@ -87,10 +87,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,10 +120,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java index 17571cb5748..d58ba7be779 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 6de1e928f80..2fd8d7ee4fb 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -44,10 +44,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index fd228d15275..74273d4d472 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -56,10 +56,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,10 +131,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index 26099b802e7..441bbdfca4f 100644 --- a/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/resteasy/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -55,10 +55,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_VALUES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Bird.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Bird.java index 3746b734690..2f2aa39db00 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Bird.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Bird.java @@ -47,10 +47,10 @@ public class Bird { return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Bird { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java index 2a9fa4dfa00..32f837ac95a 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DataQuery.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DataQuery.java index 5d1bc1e03c0..707eaa1c723 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DataQuery.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DataQuery.java @@ -57,10 +57,10 @@ public class DataQuery extends Query { return this; } - /** + /** * test suffix * @return suffix - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SUFFIX) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,10 +82,10 @@ public class DataQuery extends Query { return this; } - /** + /** * Some text containing white spaces * @return text - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TEXT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class DataQuery extends Query { return this; } - /** + /** * A date * @return date - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DefaultValue.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DefaultValue.java index c6ac0e12d5c..999e5c48df0 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DefaultValue.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/DefaultValue.java @@ -124,10 +124,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumRefDefault * @return arrayStringEnumRefDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringEnumDefault * @return arrayStringEnumDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringDefault * @return arrayStringDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,10 +223,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayIntegerDefault * @return arrayIntegerDefault - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,10 +256,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayString * @return arrayString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringNullable * @return arrayStringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -338,10 +338,10 @@ public class DefaultValue { return this; } - /** + /** * Get arrayStringExtensionNullable * @return arrayStringExtensionNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -371,10 +371,10 @@ public class DefaultValue { return this; } - /** + /** * Get stringNullable * @return stringNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java index c1b5b4217b2..756b0c0fccc 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/NumberPropertiesOnly.java @@ -52,10 +52,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get number * @return number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _float * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,12 +102,12 @@ public class NumberPropertiesOnly { return this; } - /** + /** * Get _double * minimum: 0.8 * maximum: 50.2 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java index a1ec50027ec..1759f2a147b 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java @@ -105,10 +105,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -155,10 +155,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -221,10 +221,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,10 +246,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Query.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Query.java index fe08f4a195b..076438bbe80 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Query.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Query.java @@ -87,10 +87,10 @@ public class Query { return this; } - /** + /** * Query * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,10 +120,10 @@ public class Query { return this; } - /** + /** * Get outcomes * @return outcomes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java index 17571cb5748..d58ba7be779 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java index 6de1e928f80..2fd8d7ee4fb 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestFormObjectMultipartRequestMarker.java @@ -44,10 +44,10 @@ public class TestFormObjectMultipartRequestMarker { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java index fd228d15275..74273d4d472 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.java @@ -56,10 +56,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get size * @return size - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SIZE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,10 +131,10 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java index a51bf0e7016..4a35e411aa2 100644 --- a/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java +++ b/samples/client/echo_api/java/resttemplate/src/main/java/org/openapitools/client/model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.java @@ -55,10 +55,10 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { return this; } - /** + /** * Get values * @return values - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_VALUES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java b/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java index 4cfec8012af..11664b18ac3 100644 --- a/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java +++ b/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java @@ -132,10 +132,10 @@ public class SomeObj implements Serializable { return this; } - /** + /** * Get $type * @return $type - **/ + */ @javax.annotation.Nullable public TypeEnum get$Type() { return $type; @@ -151,10 +151,10 @@ public class SomeObj implements Serializable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -170,10 +170,10 @@ public class SomeObj implements Serializable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -189,10 +189,10 @@ public class SomeObj implements Serializable { return this; } - /** + /** * Get active * @return active - **/ + */ @javax.annotation.Nullable public Boolean getActive() { return active; @@ -208,10 +208,10 @@ public class SomeObj implements Serializable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -285,12 +285,12 @@ public class SomeObj implements Serializable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SomeObj - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SomeObj + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SomeObj.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -350,22 +350,22 @@ public class SomeObj implements Serializable { } } - /** - * Create an instance of SomeObj given an JSON string - * - * @param jsonString JSON string - * @return An instance of SomeObj - * @throws IOException if the JSON string is invalid with respect to SomeObj - */ + /** + * Create an instance of SomeObj given an JSON string + * + * @param jsonString JSON string + * @return An instance of SomeObj + * @throws IOException if the JSON string is invalid with respect to SomeObj + */ public static SomeObj fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SomeObj.class); } - /** - * Convert an instance of SomeObj to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SomeObj to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 72c1b92e5bf..751ee308bd9 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -47,7 +47,7 @@ public class AdditionalPropertiesAnyType extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 135804b4af4..e68ad400c81 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -48,7 +48,7 @@ public class AdditionalPropertiesArray extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index ba9a839b9eb..e063a479378 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -47,7 +47,7 @@ public class AdditionalPropertiesBoolean extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 5d879a3eeb9..01d431631f2 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -96,7 +96,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,7 +126,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -156,7 +156,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -216,7 +216,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,7 +246,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -276,7 +276,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -306,7 +306,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -328,7 +328,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,7 +350,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -372,7 +372,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index c2dcb1eef05..98a70e39569 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -47,7 +47,7 @@ public class AdditionalPropertiesInteger extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 2652c934c67..88bf59894b9 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -48,7 +48,7 @@ public class AdditionalPropertiesNumber extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 5af7e11264d..0c3fe94c6ba 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -47,7 +47,7 @@ public class AdditionalPropertiesObject extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index c60a9974964..1adde2d5b18 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -47,7 +47,7 @@ public class AdditionalPropertiesString extends HashMap { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Animal.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Animal.java index 12ac62ac836..05e99866333 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Animal.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Animal.java @@ -62,7 +62,7 @@ public class Animal { /** * Get className * @return className - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -84,7 +84,7 @@ public class Animal { /** * Get color * @return color - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index dfed5b6690e..e26d52d9bec 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -56,7 +56,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 817241686ae..421b8ba9e04 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -56,7 +56,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayTest.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayTest.java index 59fea43ceff..05c54b74029 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ArrayTest.java @@ -64,7 +64,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,7 +124,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/BigCat.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/BigCat.java index 795a02b3b61..4917a7d0080 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/BigCat.java @@ -81,7 +81,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Capitalization.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Capitalization.java index a61fa57df64..2751b6502b1 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Capitalization.java @@ -64,7 +64,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,7 +86,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -108,7 +108,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,7 +130,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -152,7 +152,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -174,7 +174,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Cat.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Cat.java index 9f65c7d956d..34a4c43188a 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Cat.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Cat.java @@ -46,7 +46,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Category.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Category.java index 27c31fca812..fdb9ea50be8 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Category.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Category.java @@ -48,7 +48,7 @@ public class Category { /** * Get id * @return id - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,7 +70,7 @@ public class Category { /** * Get name * @return name - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ClassModel.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ClassModel.java index 524149166a7..19eed56cc81 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ClassModel.java @@ -44,7 +44,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Dog.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Dog.java index e86fe566d68..afe3ab2f5ab 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Dog.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Dog.java @@ -46,7 +46,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumArrays.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumArrays.java index 17524d4aca9..8b8308af8ed 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumArrays.java @@ -117,7 +117,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,7 +147,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumTest.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumTest.java index e5d83e3e7d1..7c3abe22a99 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/EnumTest.java @@ -196,7 +196,7 @@ public class EnumTest { /** * Get enumString * @return enumString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -240,7 +240,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -262,7 +262,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -284,7 +284,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 30db6dde0ff..0dd93420f38 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -52,7 +52,7 @@ public class FileSchemaTestClass { /** * Get _file * @return _file - **/ + */ @Valid @Nullable @JsonProperty(JSON_PROPERTY_FILE) @@ -83,7 +83,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FormatTest.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FormatTest.java index f21bd1fb648..e97eef3f68a 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/FormatTest.java @@ -104,7 +104,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - **/ + */ @Nullable @Min(10) @Max(100) @@ -130,7 +130,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @Nullable @Min(20) @Max(200) @@ -154,7 +154,7 @@ public class FormatTest { /** * Get int64 * @return int64 - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,7 +178,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @NotNull @DecimalMin("32.1") @DecimalMax("543.2") @@ -204,7 +204,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @Nullable @DecimalMin("54.3") @DecimalMax("987.6") @@ -230,7 +230,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @Nullable @DecimalMin("67.8") @DecimalMax("123.4") @@ -254,7 +254,7 @@ public class FormatTest { /** * Get string * @return string - **/ + */ @Nullable @Pattern(regexp="/[a-z]/i") @JsonProperty(JSON_PROPERTY_STRING) @@ -277,7 +277,7 @@ public class FormatTest { /** * Get _byte * @return _byte - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -299,7 +299,7 @@ public class FormatTest { /** * Get binary * @return binary - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -321,7 +321,7 @@ public class FormatTest { /** * Get date * @return date - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -345,7 +345,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -369,7 +369,7 @@ public class FormatTest { /** * Get uuid * @return uuid - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -391,7 +391,7 @@ public class FormatTest { /** * Get password * @return password - **/ + */ @NotNull @Size(min=10, max=64) @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -414,7 +414,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index d29cf4a8ce6..e0b735a5310 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -44,7 +44,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MapTest.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MapTest.java index 2bb967332fd..755004e7ca9 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MapTest.java @@ -99,7 +99,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,7 +129,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,7 +159,7 @@ public class MapTest { /** * Get directMap * @return directMap - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -189,7 +189,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 09c9a28aa90..1af6b913cdf 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -57,7 +57,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,7 +79,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -111,7 +111,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Model200Response.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Model200Response.java index 86f83dcd128..45f32ea12e9 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Model200Response.java @@ -49,7 +49,7 @@ public class Model200Response { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,7 +71,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelApiResponse.java index 3407c230d29..4ee9dbc3b16 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -53,7 +53,7 @@ public class ModelApiResponse { /** * Get code * @return code - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,7 +75,7 @@ public class ModelApiResponse { /** * Get type * @return type - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,7 +97,7 @@ public class ModelApiResponse { /** * Get message * @return message - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelClient.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelClient.java index ea6ae7264b9..f9129b2c821 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelClient.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelClient.java @@ -45,7 +45,7 @@ public class ModelClient { /** * Get _client * @return _client - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelFile.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelFile.java index b0f71dca819..68ccf3af26b 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelFile.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelFile.java @@ -45,7 +45,7 @@ public class ModelFile { /** * Test capitalization * @return sourceURI - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelList.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelList.java index 56c92e55a72..f010c7c792e 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelList.java @@ -45,7 +45,7 @@ public class ModelList { /** * Get _123list * @return _123list - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelReturn.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelReturn.java index 457c77dc163..34ca7218d65 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ModelReturn.java @@ -45,7 +45,7 @@ public class ModelReturn { /** * Get _return * @return _return - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Name.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Name.java index b35ec11071b..575e85c3a07 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Name.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Name.java @@ -56,7 +56,7 @@ public class Name { /** * Get name * @return name - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -73,7 +73,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,7 +106,7 @@ public class Name { /** * Get _123number * @return _123number - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/NumberOnly.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/NumberOnly.java index 4d608079dfe..5b437afe1be 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/NumberOnly.java @@ -45,7 +45,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Order.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Order.java index 30378788169..23f8772f19a 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Order.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Order.java @@ -99,7 +99,7 @@ public class Order { /** * Get id * @return id - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,7 +121,7 @@ public class Order { /** * Get petId * @return petId - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,7 +143,7 @@ public class Order { /** * Get quantity * @return quantity - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,7 +165,7 @@ public class Order { /** * Get shipDate * @return shipDate - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -189,7 +189,7 @@ public class Order { /** * Order Status * @return status - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -211,7 +211,7 @@ public class Order { /** * Get complete * @return complete - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/OuterComposite.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/OuterComposite.java index 62ca07d5366..f0ada6beabc 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/OuterComposite.java @@ -53,7 +53,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,7 +75,7 @@ public class OuterComposite { /** * Get myString * @return myString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,7 +97,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Pet.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Pet.java index 7aae798e2dc..3108da4940d 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Pet.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Pet.java @@ -106,7 +106,7 @@ public class Pet { /** * Get id * @return id - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,7 +128,7 @@ public class Pet { /** * Get category * @return category - **/ + */ @Valid @Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -151,7 +151,7 @@ public class Pet { /** * Get name * @return name - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -178,7 +178,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -209,7 +209,7 @@ public class Pet { /** * Get tags * @return tags - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -231,7 +231,7 @@ public class Pet { /** * pet status in the store * @return status - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ReadOnlyFirst.java index e42d0babbfb..5fc5aeae5c6 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -43,7 +43,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -59,7 +59,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/SpecialModelName.java index 21986f1cd3d..407a9ad78ee 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/SpecialModelName.java @@ -45,7 +45,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Tag.java index 58f5e53c3fc..685a42110d8 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/Tag.java @@ -48,7 +48,7 @@ public class Tag { /** * Get id * @return id - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,7 +70,7 @@ public class Tag { /** * Get name * @return name - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderDefault.java index 8fefd208df1..e21a4065c3b 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -64,7 +64,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,7 +86,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -108,7 +108,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -130,7 +130,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -157,7 +157,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderExample.java index 0f13226e58f..493e3ff2a4c 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -68,7 +68,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,7 +90,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -112,7 +112,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -134,7 +134,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -156,7 +156,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -183,7 +183,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - **/ + */ @NotNull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/User.java index 0e9b0f0cfac..d7f89ec5717 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/User.java @@ -72,7 +72,7 @@ public class User { /** * Get id * @return id - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -94,7 +94,7 @@ public class User { /** * Get username * @return username - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,7 +116,7 @@ public class User { /** * Get firstName * @return firstName - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,7 +138,7 @@ public class User { /** * Get lastName * @return lastName - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,7 +160,7 @@ public class User { /** * Get email * @return email - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -182,7 +182,7 @@ public class User { /** * Get password * @return password - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public class User { /** * Get phone * @return phone - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,7 +226,7 @@ public class User { /** * User Status * @return userStatus - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/XmlItem.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/XmlItem.java index ea5deabba64..6fbf583df38 100644 --- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/model/XmlItem.java @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -182,7 +182,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,7 +204,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,7 +226,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,7 +256,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -278,7 +278,7 @@ public class XmlItem { /** * Get nameString * @return nameString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -300,7 +300,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -322,7 +322,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -344,7 +344,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -374,7 +374,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -404,7 +404,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -426,7 +426,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -448,7 +448,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -470,7 +470,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -492,7 +492,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -522,7 +522,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -552,7 +552,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -574,7 +574,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -618,7 +618,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -640,7 +640,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -670,7 +670,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -700,7 +700,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -722,7 +722,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -744,7 +744,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -766,7 +766,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -788,7 +788,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -818,7 +818,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -848,7 +848,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/api/openapi.yaml b/samples/client/petstore/java/apache-httpclient/api/openapi.yaml index 96dc260deb8..1eddf878948 100644 --- a/samples/client/petstore/java/apache-httpclient/api/openapi.yaml +++ b/samples/client/petstore/java/apache-httpclient/api/openapi.yaml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index c85f1b3b05c..8750275ae85 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -60,10 +60,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -93,10 +93,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 86d13be0efc..1aa303af57b 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -51,10 +51,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -76,10 +76,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Animal.java index 1d4dd4860c2..c103dcd0fcc 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Animal.java @@ -63,10 +63,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 726376f2f6e..e36913d1116 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index fd1f043da4b..6ef62703acb 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayTest.java index a57c39ce1d4..0e7a94872ba 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -66,10 +66,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -99,10 +99,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -132,10 +132,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Capitalization.java index 4c94b1cbd37..e9fbd355a46 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Capitalization.java @@ -66,10 +66,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,10 +91,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -141,10 +141,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,10 +166,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,10 +191,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Cat.java index 871e4cdf2ad..a74d635d592 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Cat.java @@ -57,10 +57,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java index b2b61c3fe9f..727b5f1bbfc 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Category.java @@ -50,10 +50,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ChildWithNullable.java index 0ff2b17dbd5..c73a2ebc81f 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -58,10 +58,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ClassModel.java index 5473fd8c015..dfe5d20ed11 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ClassModel.java @@ -46,10 +46,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Client.java index 2e404010e37..4e4566850fb 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Client.java @@ -46,10 +46,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 69a9e819176..72bf839023c 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -48,10 +48,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Dog.java index 217156749d7..5e33bf581bd 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Dog.java @@ -57,10 +57,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumArrays.java index bba733607fc..8f880c4ebca 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -123,10 +123,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -156,10 +156,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumTest.java index f404168b856..b7b30166e51 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/EnumTest.java @@ -227,10 +227,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -252,10 +252,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -277,10 +277,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -302,10 +302,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -327,10 +327,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -360,10 +360,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -385,10 +385,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -410,10 +410,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index 146634cc95e..812445082a7 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -54,10 +54,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,10 +87,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index c799596741a..8f3d89782c6 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -54,10 +54,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -87,10 +87,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Foo.java index e9f2a1c56b5..7898d0285d5 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Foo.java @@ -46,10 +46,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 360d05a40af..490fb9f7d51 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -48,10 +48,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FormatTest.java index b69ccce28bf..4b1180b25d3 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/FormatTest.java @@ -112,12 +112,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -139,12 +139,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,10 +166,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,12 +191,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -218,12 +218,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -245,12 +245,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -272,10 +272,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -297,10 +297,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -322,10 +322,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -347,10 +347,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -372,10 +372,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -397,10 +397,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -422,10 +422,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -447,10 +447,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -472,10 +472,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -497,10 +497,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 24d08e310b6..7848a4dce5d 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -45,8 +45,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -57,10 +57,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 86dc7349696..b33314efcd1 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -50,10 +50,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MapTest.java index c2d63bc87a5..1c5dce9069a 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MapTest.java @@ -103,10 +103,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,10 +136,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,10 +169,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,10 +202,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index e6d9ae43947..3c08ceb4be0 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -59,10 +59,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,10 +117,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Model200Response.java index ccad261c780..12cdd288b00 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Model200Response.java @@ -51,10 +51,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -76,10 +76,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 201463719da..704ad68d90b 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -55,10 +55,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,10 +105,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelFile.java index 8d378cd7452..e7bb893393f 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelFile.java @@ -47,10 +47,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelList.java index bdc3d85e872..7d0a9434dcf 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelList.java @@ -47,10 +47,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelReturn.java index 21753684e8f..f2a5ec85251 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -47,10 +47,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Name.java index 6781bd9d32b..abcea1d281a 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Name.java @@ -52,8 +52,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -70,10 +70,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,10 +89,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -109,10 +109,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NullableClass.java index 2b73fc36aa5..4e66146e05e 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NullableClass.java @@ -103,10 +103,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -136,10 +136,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -169,10 +169,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -202,10 +202,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -235,10 +235,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -268,10 +268,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -313,10 +313,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -358,10 +358,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -399,10 +399,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -436,10 +436,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -481,10 +481,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -522,10 +522,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberOnly.java index 57294db5f2f..c1c11051a7d 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -47,10 +47,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index b37d223d922..d4d85aa8977 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -63,10 +63,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -88,11 +88,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -115,11 +115,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -150,11 +150,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Order.java index fad6dd075d0..c0cc070bd2a 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Order.java @@ -104,10 +104,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -179,10 +179,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -204,10 +204,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -229,10 +229,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterComposite.java index eccd712e8a4..9746953fd90 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -55,10 +55,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,10 +105,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index 447c8952579..22c5333e319 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -47,10 +47,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 9bab5d1f2a5..7f7d635932b 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -99,10 +99,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,10 +124,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java index f75d468bbcf..b1642f2ede9 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Pet.java @@ -111,10 +111,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,10 +136,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -194,10 +194,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -228,10 +228,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -253,10 +253,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 0ba98790d27..911572734eb 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -44,8 +44,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -54,10 +54,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/SpecialModelName.java index c07e3582d07..c7aa473aac0 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -47,10 +47,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java index 1b221c70e3e..ace6820bcf2 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/Tag.java @@ -50,10 +50,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index 0a479d84859..8642015b614 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -50,10 +50,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index 3de530dacd1..82de0573a69 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -52,10 +52,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index a69100985da..6b45308440d 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -51,10 +51,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index d7218a9d587..6a164b69542 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -96,10 +96,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -164,10 +164,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -198,10 +198,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,10 +232,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -266,10 +266,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -300,10 +300,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -334,10 +334,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -360,10 +360,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -386,10 +386,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -412,10 +412,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index af5e36ae454..ef7b6dd7ce4 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -51,10 +51,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 345fe784509..bdd5d9c7c1e 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -52,10 +52,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 2d34a11fc63..eab0a6a0236 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -51,10 +51,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 84aed6c142b..5cb11201398 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -51,10 +51,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Animal.java index c0c42c4ce58..1642ec573c2 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Animal.java @@ -62,10 +62,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index bb68f1da9d8..f9daf760155 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 29900529eef..14ceed519ab 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java index d23f03ad190..17ba00fc78c 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -64,10 +64,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -132,10 +132,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java index 9a79b3f2b85..c084f30832d 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java @@ -94,10 +94,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java index 8aff04a8590..e4f4b17ada3 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java @@ -64,10 +64,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,10 +142,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,10 +194,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Cat.java index 49bb862acba..95d1c869051 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Cat.java @@ -58,10 +58,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Category.java index 40f856a9781..559e4c17a29 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Category.java @@ -48,10 +48,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java index 70645e87c84..98119bd8e45 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java @@ -44,10 +44,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Client.java index 4c2a4225473..b70b039e5e1 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Client.java @@ -44,10 +44,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Dog.java index b4a5c3970ae..7360281f9a7 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Dog.java @@ -55,10 +55,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java index 78902105cc2..d6fbb8a06d3 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -121,10 +121,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -155,10 +155,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java index 48b8fb4d177..bb97d6903f6 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java @@ -206,10 +206,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,10 +232,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -258,10 +258,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -284,10 +284,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -310,10 +310,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/File.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/File.java index ee7925514cf..182233660b2 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/File.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/File.java @@ -44,10 +44,10 @@ public class File { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 1137626a04a..f3ebdeb279c 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -52,10 +52,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get file * @return file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,10 +86,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java index 71a0ba7c10a..5de5044a225 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java @@ -102,12 +102,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,12 +130,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -184,12 +184,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -212,12 +212,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -240,12 +240,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,10 +268,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -294,10 +294,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -320,10 +320,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -346,10 +346,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -372,10 +372,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -398,10 +398,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -424,10 +424,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -450,10 +450,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 9106b32613d..35182016a8c 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -53,10 +53,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -68,10 +68,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java index 588224f4cfe..f5b4f9d352a 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java @@ -101,10 +101,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -169,10 +169,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,10 +203,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 7e94d1d9949..ce58da3fd6c 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -57,10 +57,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -117,10 +117,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java index fa00361545a..c73a6374f24 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java @@ -49,10 +49,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 9f35e0211ba..d8ae6b86c90 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -53,10 +53,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,10 +105,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java index a8daf6452d1..c4dcec4f2d7 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java @@ -45,10 +45,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java index 9816a81c685..1f546a37ef6 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -45,10 +45,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Name.java index 1de93ccd26d..3bfd4abbefb 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Name.java @@ -66,10 +66,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -127,10 +127,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java index e0fc7d8ae4a..234c69215e6 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -45,10 +45,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Order.java index b55568fb33a..7249988d560 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Order.java @@ -102,10 +102,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,10 +180,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -206,10 +206,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,10 +232,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java index 263372645bf..78ad4a857ef 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -53,10 +53,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,10 +105,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Pet.java index 4cdc9d39e0d..6ed5d6927a9 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -195,10 +195,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -230,10 +230,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -256,10 +256,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 7be42717e7a..607b07056b7 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -50,10 +50,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java index b9b43481213..002f55a8d4b 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -45,10 +45,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Tag.java index 41c50936741..8f21b3f2fc7 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/Tag.java @@ -48,10 +48,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index ff600be2fa8..8836a4549b9 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -64,10 +64,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -90,10 +90,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -116,10 +116,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,10 +142,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -176,10 +176,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 3d47342aceb..f1ad8e12518 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -68,10 +68,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -94,10 +94,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -120,10 +120,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -146,10 +146,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,10 +172,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -206,10 +206,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/User.java index b8b10992665..f8f61184caa 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/User.java @@ -72,10 +72,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -124,10 +124,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,10 +150,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,10 +202,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -228,10 +228,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -254,10 +254,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java index ec346d452bd..1e56ff0d378 100644 --- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java @@ -160,10 +160,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -186,10 +186,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -212,10 +212,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -238,10 +238,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -272,10 +272,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -298,10 +298,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -324,10 +324,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -350,10 +350,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,10 +376,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -410,10 +410,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -444,10 +444,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -470,10 +470,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -496,10 +496,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -522,10 +522,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -548,10 +548,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -582,10 +582,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -616,10 +616,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -642,10 +642,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -668,10 +668,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -694,10 +694,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -720,10 +720,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -754,10 +754,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -788,10 +788,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -814,10 +814,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -840,10 +840,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -866,10 +866,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -892,10 +892,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -926,10 +926,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -960,10 +960,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/api/openapi.yaml b/samples/client/petstore/java/feign/api/openapi.yaml index 96dc260deb8..1eddf878948 100644 --- a/samples/client/petstore/java/feign/api/openapi.yaml +++ b/samples/client/petstore/java/feign/api/openapi.yaml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 916dee538fa..6d22ff9f6ad 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -57,10 +57,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -91,10 +91,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 0e4c38c99c6..5ab29c09d1e 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -48,10 +48,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Animal.java index 9fd63226b7e..9a286b4572d 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Animal.java @@ -60,10 +60,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index aeebdc8187c..e453caffe2f 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index ad04bdd9dfa..a731ccddb6f 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayTest.java index 9b54f3ad2b8..024c9681077 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -63,10 +63,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,10 +97,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,10 +131,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Capitalization.java index 9dbd6cf2bc4..ece9a4926cd 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Capitalization.java @@ -63,10 +63,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -89,10 +89,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -115,10 +115,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -141,10 +141,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -167,10 +167,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,10 +193,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Cat.java index 82cd89e1c0f..c6612170502 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Cat.java @@ -54,10 +54,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Category.java index e9738d21dd3..6e571e5ba45 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ChildWithNullable.java index 0c2a63daddf..3d6f286e49e 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -55,10 +55,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ClassModel.java index 5e696a0a6af..27c05f8a8e0 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ClassModel.java @@ -43,10 +43,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Client.java index d4f08cf597a..e73c262a7dc 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Client.java @@ -43,10 +43,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 7935caead8c..6acd82f7b8e 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -45,10 +45,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Dog.java index 896d053f1fa..d13b43d813e 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Dog.java @@ -54,10 +54,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumArrays.java index acfb23cda71..63d80fda2ac 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -120,10 +120,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumTest.java index 9afbda44673..9450b7e58f7 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/EnumTest.java @@ -224,10 +224,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -276,10 +276,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -302,10 +302,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -328,10 +328,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -362,10 +362,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -388,10 +388,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -414,10 +414,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index 0a6d90eda07..bf70a01f436 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -51,10 +51,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/File.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/File.java index 8cb45259a76..4a7a48f56b4 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/File.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/File.java @@ -43,10 +43,10 @@ public class File { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index ce929bbb127..8ca06494efc 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -51,10 +51,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get file * @return file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Foo.java index 6d70e38b144..4767929573c 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Foo.java @@ -43,10 +43,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 6079e97427b..058f46f74da 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -45,10 +45,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FormatTest.java index e5db9bf7440..f2b72665e68 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FormatTest.java @@ -109,12 +109,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -137,12 +137,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,10 +165,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,12 +191,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -219,12 +219,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,12 +247,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -275,10 +275,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -301,10 +301,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -327,10 +327,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -353,10 +353,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -379,10 +379,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -405,10 +405,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -431,10 +431,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -457,10 +457,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -483,10 +483,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -509,10 +509,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index e67ade26b8e..36207e2cb9d 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -52,10 +52,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -67,10 +67,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 2d3d9f2b7dd..8b8b1167c8b 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -47,10 +47,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MapTest.java index 1096afd4258..3ae6e1f7c90 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MapTest.java @@ -100,10 +100,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,10 +134,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -202,10 +202,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index c9f069e457f..869e4c866a2 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -56,10 +56,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -82,10 +82,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Model200Response.java index 017fae24465..b74de1f1661 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Model200Response.java @@ -48,10 +48,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 8ddcf2c7cc5..d029df59562 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -52,10 +52,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -78,10 +78,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelList.java index 4ccd8fc0f52..1725dca901d 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelList.java @@ -44,10 +44,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelReturn.java index 77f15f69d89..1ef44e19635 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -44,10 +44,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Name.java index 6e6a3b72180..7d8698d6509 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Name.java @@ -65,10 +65,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -85,10 +85,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NullableClass.java index ba8c31a26fa..cc141eace51 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NullableClass.java @@ -104,10 +104,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -138,10 +138,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -172,10 +172,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -206,10 +206,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -240,10 +240,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -274,10 +274,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -320,10 +320,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -366,10 +366,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -408,10 +408,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -446,10 +446,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -492,10 +492,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -534,10 +534,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NumberOnly.java index 9a0021d9718..71a47395fd2 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 64ea2597cfb..6e92bb28a2f 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,11 +86,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -114,11 +114,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -150,11 +150,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Order.java index d72e61f37ae..f678ffc2d44 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -127,10 +127,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -179,10 +179,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -205,10 +205,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -231,10 +231,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterComposite.java index 457085ee487..43af4f21660 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -78,10 +78,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index ef030eea5b5..ea650d6170b 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 088bcae658e..5fbe7648d9c 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -122,10 +122,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Pet.java index 6b1528179de..d820605b43a 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,10 +134,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,10 +160,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -194,10 +194,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -229,10 +229,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -255,10 +255,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index e671b64bfed..b7b3bb9183f 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -49,10 +49,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,10 +70,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/SpecialModelName.java index 933e0451473..9b36cb07900 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Tag.java index 73c2c8481a3..1f164d034f3 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index bf0f0dc1c7c..4b64655bd13 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -51,10 +51,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index 715fab6e6e6..449e5872388 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 927daf906c7..29334015b74 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 3cef9787b6f..94c637ae6b0 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -95,10 +95,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +161,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,10 +194,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -227,10 +227,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -260,10 +260,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -326,10 +326,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -351,10 +351,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,10 +376,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,10 +401,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 484ed041f34..704e1162e17 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index e2273e44104..24e76bef37a 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index c6b3d48fd99..4caced23dd8 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 962b40afefe..160d0097535 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Animal.java index ecb642ee812..62697dfdebf 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Animal.java @@ -61,10 +61,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 9e972837b11..8feb9e01890 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 761e0f6c9d1..23629d1da5a 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayTest.java index 46a6df1e4e3..e09e6bd4797 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -63,10 +63,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/BigCat.java index f539e6ba794..e425a49e830 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/BigCat.java @@ -93,10 +93,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Capitalization.java index 3a82316cd11..c5d6b86b6c6 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Capitalization.java @@ -63,10 +63,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -88,10 +88,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,10 +113,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,10 +138,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Cat.java index 6a03004859e..3539a9ef8a5 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Cat.java @@ -57,10 +57,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Category.java index e9daed894ab..7c9d93682b1 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ClassModel.java index faeaf6d170f..f855164463b 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ClassModel.java @@ -43,10 +43,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Client.java index 4addbe634b1..50cca186dcc 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Client.java @@ -43,10 +43,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Dog.java index 78b64eaa57d..21bdbf6ac3a 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Dog.java @@ -54,10 +54,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumArrays.java index 0d4340977e8..01f7885a0ff 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -120,10 +120,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumTest.java index 2c8546c4012..22bb97c598a 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/EnumTest.java @@ -205,10 +205,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -230,10 +230,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -255,10 +255,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -280,10 +280,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,10 +305,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 3c75f077d85..b3e7387cf6d 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -51,10 +51,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FormatTest.java index 6a3ecb85278..a387df2da54 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FormatTest.java @@ -101,12 +101,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,12 +128,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -155,10 +155,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,12 +180,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -207,12 +207,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -234,12 +234,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -261,10 +261,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -286,10 +286,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -311,10 +311,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -336,10 +336,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -361,10 +361,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -386,10 +386,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -411,10 +411,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -436,10 +436,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 4e3d9aa3c7e..2f46a0e85d0 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -42,8 +42,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -54,10 +54,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -68,10 +68,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MapTest.java index 6a80971630f..b0bb9fcb82d 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MapTest.java @@ -100,10 +100,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,10 +166,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,10 +199,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 2cd1a36939b..b9ab922abe2 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -56,10 +56,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,10 +114,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Model200Response.java index 999b5e34446..2a18245f5f7 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Model200Response.java @@ -48,10 +48,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 19b3b2e5b41..1f13412355b 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -52,10 +52,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelFile.java index 065dbc19bb0..822fea6c232 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelFile.java @@ -44,10 +44,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelList.java index 432cbfd18ee..a8fb60cdfc2 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelList.java @@ -44,10 +44,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelReturn.java index 491491e4299..669b30691c7 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -44,10 +44,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Name.java index 1168630509b..3b165e7570c 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Name.java @@ -49,8 +49,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,10 +125,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/NumberOnly.java index 9b8575bb5aa..8625f00c874 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Order.java index 198c4705b48..0fc8d456873 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/OuterComposite.java index 5bbc97e9f32..4adb1bc5981 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Pet.java index ef0a788e0e0..97d3f950180 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4a407093962..fa8bdd64bc9 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/SpecialModelName.java index f3c37540465..a659a8f7aa5 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Tag.java index a6b72d921a6..518116d43ce 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index a22e61772b5..260b47da990 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -63,10 +63,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -113,10 +113,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -138,10 +138,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -171,10 +171,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 58917832eeb..d7ee132c071 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -67,10 +67,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -92,10 +92,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -117,10 +117,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,10 +142,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -167,10 +167,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -200,10 +200,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/User.java index 2c0f53742f0..2ecb4b0fbb3 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/User.java @@ -71,10 +71,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,10 +146,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -171,10 +171,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,10 +196,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -221,10 +221,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,10 +246,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/XmlItem.java index 36b3618cb31..91a1c08a1da 100644 --- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/XmlItem.java @@ -159,10 +159,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -184,10 +184,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -209,10 +209,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -234,10 +234,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -267,10 +267,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -292,10 +292,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -317,10 +317,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -342,10 +342,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -367,10 +367,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -400,10 +400,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -458,10 +458,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -483,10 +483,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -508,10 +508,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -533,10 +533,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -566,10 +566,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -599,10 +599,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -624,10 +624,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -649,10 +649,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -674,10 +674,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -699,10 +699,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -732,10 +732,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -765,10 +765,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -790,10 +790,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -815,10 +815,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -840,10 +840,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -865,10 +865,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -898,10 +898,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -931,10 +931,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index ef49af29bc1..d3640344b28 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesAnyType { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index e97a99c4622..eedd35f5e7c 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesArray { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index d292c326314..dcd51d78c08 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesBoolean { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 56912808ead..97b24ce3c99 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -97,10 +97,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,10 +196,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -229,10 +229,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -262,10 +262,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -295,10 +295,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -328,10 +328,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -353,10 +353,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -378,10 +378,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -403,10 +403,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 70f7f42c2be..21c64abbafd 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesInteger { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index de11d7a7855..8c07970a206 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesNumber { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 320c68deb09..bb165c3323f 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 0a6ce4de4f0..15a80367606 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesString { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Animal.java index beed1da177d..0bd8dc90139 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Animal.java @@ -63,10 +63,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 2f990b472a7..bcfcdeef400 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 44f6b97d97c..4f1942c3bfc 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayTest.java index 1457023ecb7..9c4ea9e2604 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -64,10 +64,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,10 +97,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/BigCat.java index f08285ca35c..fd1ef201d38 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/BigCat.java @@ -94,10 +94,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Capitalization.java index 2e76806e9b6..9a86f6bc43b 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Capitalization.java @@ -65,10 +65,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -115,10 +115,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,10 +140,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Cat.java index 35e26ae8360..d8a6328cd9e 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Cat.java @@ -58,10 +58,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Category.java index f220788eb81..30894b69fe2 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Category.java @@ -49,10 +49,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ClassModel.java index 9825ca47924..6b82725db52 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ClassModel.java @@ -45,10 +45,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Client.java index f6f8b1c9921..c1c756e68ee 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Client.java @@ -45,10 +45,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Dog.java index c225c1b9fcf..241a6223892 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Dog.java @@ -55,10 +55,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumArrays.java index 699fca30a93..95ac4e0ca6a 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -121,10 +121,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumTest.java index ec99d268110..cbdfb4af51d 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/EnumTest.java @@ -207,10 +207,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,10 +232,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -257,10 +257,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -282,10 +282,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -307,10 +307,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 762d3046fe4..d981b37718f 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -52,10 +52,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FormatTest.java index 027c524c10c..621fca3218d 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/FormatTest.java @@ -103,12 +103,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,12 +130,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -182,12 +182,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -209,12 +209,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -236,12 +236,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -263,10 +263,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -288,10 +288,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -313,10 +313,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -338,10 +338,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -363,10 +363,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -388,10 +388,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -413,10 +413,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -438,10 +438,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index f3e3d132d24..9a95c807a30 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -55,10 +55,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,10 +70,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MapTest.java index f70f39af214..28b19756a11 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MapTest.java @@ -102,10 +102,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 584a8233fda..97af8942cf8 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -58,10 +58,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Model200Response.java index eed2db74863..8b238021b97 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Model200Response.java @@ -50,10 +50,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelApiResponse.java index c273720b1d9..5ebd6eb3530 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -54,10 +54,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelFile.java index 5a7b12470ca..d209835cae1 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelFile.java @@ -46,10 +46,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelList.java index 0d311354af5..f6bdbc022ae 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelList.java @@ -46,10 +46,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelReturn.java index b5eed858337..3a91e2253ae 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -46,10 +46,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Name.java index db16949f0b1..14576f0c469 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Name.java @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,10 +87,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -127,10 +127,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/NumberOnly.java index c80c28b0062..ae0e2ca2636 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -46,10 +46,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Order.java index 98d799ed1cc..6aac9d638fa 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Order.java @@ -103,10 +103,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,10 +178,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,10 +203,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -228,10 +228,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/OuterComposite.java index 0b11b06bba0..d61a23f1103 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -54,10 +54,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Pet.java index cf40510f746..5c8e10bd79b 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,10 +134,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,10 +159,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -192,10 +192,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -226,10 +226,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -251,10 +251,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index f243a996f36..6847dfb28bc 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -52,10 +52,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/SpecialModelName.java index c7acaa2447a..f04671f8293 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -46,10 +46,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Tag.java index 1bc7538c92a..b05bef74e9d 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/Tag.java @@ -49,10 +49,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 6f715c88f61..7d0cacbdd75 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -64,10 +64,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,10 +89,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -114,10 +114,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -139,10 +139,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,10 +172,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderExample.java index d2a2058e194..cfce593770d 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -68,10 +68,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -93,10 +93,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -118,10 +118,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -143,10 +143,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -168,10 +168,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -201,10 +201,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/User.java index 565ffa55ede..a06ac7e4649 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/User.java @@ -73,10 +73,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,10 +123,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -198,10 +198,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,10 +223,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,10 +248,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/XmlItem.java index 1b4977cbc50..ce76be296c6 100644 --- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/model/XmlItem.java @@ -160,10 +160,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,10 +185,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -210,10 +210,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -235,10 +235,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,10 +268,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -318,10 +318,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -343,10 +343,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -368,10 +368,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,10 +401,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -434,10 +434,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -459,10 +459,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -484,10 +484,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -509,10 +509,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -534,10 +534,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -567,10 +567,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -600,10 +600,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -625,10 +625,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -650,10 +650,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -675,10 +675,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -700,10 +700,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -733,10 +733,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -766,10 +766,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -791,10 +791,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -816,10 +816,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -841,10 +841,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -866,10 +866,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -899,10 +899,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -932,10 +932,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index ef49af29bc1..d3640344b28 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesAnyType { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index e97a99c4622..eedd35f5e7c 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesArray { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index d292c326314..dcd51d78c08 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesBoolean { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 56912808ead..97b24ce3c99 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -97,10 +97,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,10 +196,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -229,10 +229,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -262,10 +262,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -295,10 +295,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -328,10 +328,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -353,10 +353,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -378,10 +378,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -403,10 +403,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 70f7f42c2be..21c64abbafd 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesInteger { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index de11d7a7855..8c07970a206 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesNumber { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 320c68deb09..bb165c3323f 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 0a6ce4de4f0..15a80367606 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesString { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java index beed1da177d..0bd8dc90139 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java @@ -63,10 +63,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 2f990b472a7..bcfcdeef400 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 44f6b97d97c..4f1942c3bfc 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java index 1457023ecb7..9c4ea9e2604 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -64,10 +64,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,10 +97,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BigCat.java index f08285ca35c..fd1ef201d38 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BigCat.java @@ -94,10 +94,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java index 2e76806e9b6..9a86f6bc43b 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java @@ -65,10 +65,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -115,10 +115,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,10 +140,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java index 35e26ae8360..d8a6328cd9e 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java @@ -58,10 +58,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java index f220788eb81..30894b69fe2 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java @@ -49,10 +49,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java index 9825ca47924..6b82725db52 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java @@ -45,10 +45,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java index f6f8b1c9921..c1c756e68ee 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java @@ -45,10 +45,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java index c225c1b9fcf..241a6223892 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java @@ -55,10 +55,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java index 699fca30a93..95ac4e0ca6a 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -121,10 +121,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java index ec99d268110..cbdfb4af51d 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java @@ -207,10 +207,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -232,10 +232,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -257,10 +257,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -282,10 +282,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -307,10 +307,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 762d3046fe4..d981b37718f 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -52,10 +52,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java index f13d952109d..4c65e33d67a 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java @@ -103,12 +103,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,12 +130,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -182,12 +182,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -209,12 +209,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -236,12 +236,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -263,10 +263,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -288,10 +288,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -313,10 +313,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -338,10 +338,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -363,10 +363,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -388,10 +388,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -413,10 +413,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -438,10 +438,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index f3e3d132d24..9a95c807a30 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -55,10 +55,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,10 +70,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java index f70f39af214..28b19756a11 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java @@ -102,10 +102,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 5d2d79ab40f..1bff4fc1081 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -58,10 +58,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java index eed2db74863..8b238021b97 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java @@ -50,10 +50,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java index c273720b1d9..5ebd6eb3530 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -54,10 +54,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java index 5a7b12470ca..d209835cae1 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java @@ -46,10 +46,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java index 0d311354af5..f6bdbc022ae 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java @@ -46,10 +46,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java index b5eed858337..3a91e2253ae 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -46,10 +46,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java index db16949f0b1..14576f0c469 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,10 +87,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -127,10 +127,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java index c80c28b0062..ae0e2ca2636 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -46,10 +46,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java index 0b6b9a4a710..42b02900b97 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java @@ -103,10 +103,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,10 +178,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,10 +203,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -228,10 +228,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java index 0b11b06bba0..d61a23f1103 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -54,10 +54,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java index cf40510f746..5c8e10bd79b 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -134,10 +134,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -159,10 +159,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -192,10 +192,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -226,10 +226,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -251,10 +251,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index f243a996f36..6847dfb28bc 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -52,10 +52,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java index c7acaa2447a..f04671f8293 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -46,10 +46,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java index 1bc7538c92a..b05bef74e9d 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java @@ -49,10 +49,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 6f715c88f61..7d0cacbdd75 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -64,10 +64,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -89,10 +89,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -114,10 +114,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -139,10 +139,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -172,10 +172,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderExample.java index d2a2058e194..cfce593770d 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -68,10 +68,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -93,10 +93,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -118,10 +118,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -143,10 +143,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -168,10 +168,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -201,10 +201,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java index 565ffa55ede..a06ac7e4649 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java @@ -73,10 +73,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,10 +123,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -198,10 +198,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -223,10 +223,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -248,10 +248,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/XmlItem.java index 1b4977cbc50..ce76be296c6 100644 --- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/XmlItem.java @@ -160,10 +160,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,10 +185,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -210,10 +210,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -235,10 +235,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,10 +268,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -318,10 +318,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -343,10 +343,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -368,10 +368,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,10 +401,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -434,10 +434,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -459,10 +459,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -484,10 +484,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -509,10 +509,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -534,10 +534,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -567,10 +567,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -600,10 +600,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -625,10 +625,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -650,10 +650,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -675,10 +675,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -700,10 +700,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -733,10 +733,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -766,10 +766,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -791,10 +791,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -816,10 +816,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -841,10 +841,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -866,10 +866,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -899,10 +899,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -932,10 +932,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 1a45cc003a4..3b57da146fd 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -89,10 +89,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @@ -123,10 +123,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @jakarta.annotation.Nullable @Valid @@ -150,10 +150,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -184,10 +184,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype1 * @return mapWithUndeclaredPropertiesAnytype1 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE1) @@ -210,10 +210,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype2 * @return mapWithUndeclaredPropertiesAnytype2 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE2) @@ -244,10 +244,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype3 * @return mapWithUndeclaredPropertiesAnytype3 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE3) @@ -270,10 +270,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * an object with no declared properties and no undeclared properties, hence it's an empty map. * @return emptyMap - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMPTY_MAP) @@ -304,10 +304,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesString * @return mapWithUndeclaredPropertiesString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_STRING) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Animal.java index 507655e8cf8..14ba9d2f14a 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Animal.java @@ -64,10 +64,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -91,10 +91,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Apple.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Apple.java index 6b1cacd6019..20975f2a90b 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Apple.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Apple.java @@ -52,10 +52,10 @@ public class Apple { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="^[a-zA-Z\\s]*$") @JsonProperty(JSON_PROPERTY_CULTIVAR) @@ -78,10 +78,10 @@ public class Apple { return this; } - /** + /** * Get origin * @return origin - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="/^[A-Z\\s]*$/i") @JsonProperty(JSON_PROPERTY_ORIGIN) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AppleReq.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AppleReq.java index 4f10c2194c7..01386d179a9 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AppleReq.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/AppleReq.java @@ -52,10 +52,10 @@ public class AppleReq { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -79,10 +79,10 @@ public class AppleReq { return this; } - /** + /** * Get mealy * @return mealy - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MEALY) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index dd37cc340ad..214525fce5b 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index ce801fbff36..c181c4836c0 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayTest.java index 734b4322014..2dc2ed6d0d3 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -66,10 +66,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @@ -100,10 +100,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @jakarta.annotation.Nullable @Valid @@ -135,10 +135,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Banana.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Banana.java index a3237a7284b..74e79622dc7 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Banana.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Banana.java @@ -49,10 +49,10 @@ public class Banana { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BananaReq.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BananaReq.java index 6fc67d0dc46..6663005d778 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BananaReq.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BananaReq.java @@ -53,10 +53,10 @@ public class BananaReq { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -81,10 +81,10 @@ public class BananaReq { return this; } - /** + /** * Get sweet * @return sweet - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SWEET) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BasquePig.java index cb3df844352..cc2b80d7b2e 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BasquePig.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/BasquePig.java @@ -47,10 +47,10 @@ public class BasquePig { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Capitalization.java index b3317a8cde2..7c5caf1687a 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Capitalization.java @@ -67,10 +67,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @@ -93,10 +93,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @@ -119,10 +119,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @@ -145,10 +145,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @@ -171,10 +171,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @@ -197,10 +197,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Cat.java index cecdd72a5e0..93ed9e9aa38 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Cat.java @@ -62,10 +62,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Category.java index a3c154155b3..9f6ec34f511 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Category.java @@ -51,10 +51,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -77,10 +77,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ChildCat.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ChildCat.java index 1bb3b3a53bb..22982b3d497 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ChildCat.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ChildCat.java @@ -67,10 +67,10 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @@ -101,10 +101,10 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get petType * @return petType - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_TYPE) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ClassModel.java index c08f75240be..69525fd6170 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ClassModel.java @@ -47,10 +47,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Client.java index b643628f3ff..dc860771697 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Client.java @@ -47,10 +47,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java index a0eacd6c463..a64640493ec 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java @@ -55,10 +55,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -82,10 +82,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DanishPig.java index 8fab2f3eea8..aab31208f04 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DanishPig.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DanishPig.java @@ -47,10 +47,10 @@ public class DanishPig { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 40b430c0f55..afdb1841559 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -49,10 +49,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Dog.java index c3d32cd16e2..84132f685dd 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Dog.java @@ -61,10 +61,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Drawing.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Drawing.java index 5c5034eb6a4..192a1eec796 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Drawing.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Drawing.java @@ -73,10 +73,10 @@ public class Drawing { return this; } - /** + /** * Get mainShape * @return mainShape - **/ + */ @jakarta.annotation.Nullable @Valid @@ -100,10 +100,10 @@ public class Drawing { return this; } - /** + /** * Get shapeOrNull * @return shapeOrNull - **/ + */ @jakarta.annotation.Nullable @Valid @@ -135,10 +135,10 @@ public class Drawing { return this; } - /** + /** * Get nullableShape * @return nullableShape - **/ + */ @jakarta.annotation.Nullable @Valid @@ -178,10 +178,10 @@ public class Drawing { return this; } - /** + /** * Get shapes * @return shapes - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumArrays.java index 20ec4cda9c2..04a6c2a55f8 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -123,10 +123,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @@ -157,10 +157,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumTest.java index 9aeffc46edc..22dcb66fd39 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EnumTest.java @@ -267,10 +267,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @@ -293,10 +293,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -320,10 +320,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @@ -346,10 +346,10 @@ public class EnumTest { return this; } - /** + /** * Get enumIntegerOnly * @return enumIntegerOnly - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER_ONLY) @@ -372,10 +372,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @@ -398,10 +398,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @jakarta.annotation.Nullable @Valid @@ -433,10 +433,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @jakarta.annotation.Nullable @Valid @@ -460,10 +460,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @jakarta.annotation.Nullable @Valid @@ -487,10 +487,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EquilateralTriangle.java index beaff76f1f0..be0ebfef63c 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EquilateralTriangle.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/EquilateralTriangle.java @@ -55,10 +55,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -82,10 +82,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 68bfbff3f3e..bf28111482f 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -54,10 +54,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @jakarta.annotation.Nullable @Valid @@ -89,10 +89,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Foo.java index 708b7a75ae2..75c5bd8a5cd 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Foo.java @@ -47,10 +47,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 6b197d47a88..ae3a071840a 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -49,10 +49,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FormatTest.java index ae219d3a929..e26c0b8f844 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/FormatTest.java @@ -113,12 +113,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @jakarta.annotation.Nullable @Min(10) @Max(100) @JsonProperty(JSON_PROPERTY_INTEGER) @@ -141,12 +141,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @jakarta.annotation.Nullable @Min(20) @Max(200) @JsonProperty(JSON_PROPERTY_INT32) @@ -169,10 +169,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @@ -195,12 +195,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -225,12 +225,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @jakarta.annotation.Nullable @DecimalMin("54.3") @DecimalMax("987.6") @JsonProperty(JSON_PROPERTY_FLOAT) @@ -253,12 +253,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @jakarta.annotation.Nullable @DecimalMin("67.8") @DecimalMax("123.4") @JsonProperty(JSON_PROPERTY_DOUBLE) @@ -281,10 +281,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @jakarta.annotation.Nullable @Valid @@ -308,10 +308,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="/[a-z]/i") @JsonProperty(JSON_PROPERTY_STRING) @@ -334,10 +334,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -361,10 +361,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @jakarta.annotation.Nullable @Valid @@ -388,10 +388,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -416,10 +416,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Valid @@ -443,10 +443,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Valid @@ -470,10 +470,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nonnull @NotNull @Size(min=10,max=64) @@ -497,10 +497,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="^\\d{10}$") @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @@ -523,10 +523,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="/^image_\\d{1,3}$/i") @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/GrandparentAnimal.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/GrandparentAnimal.java index e8b064b2673..59e866b12dc 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/GrandparentAnimal.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/GrandparentAnimal.java @@ -60,10 +60,10 @@ public class GrandparentAnimal { return this; } - /** + /** * Get petType * @return petType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 4c9d8bcbcb3..569e2e19402 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -57,10 +57,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -73,10 +73,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 8aab605b56b..3918ef6d1dc 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -51,10 +51,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @jakarta.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java index c82dea4cd74..546404dab09 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java @@ -51,10 +51,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -78,10 +78,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MapTest.java index ea4a5a4a383..76df9cbe49a 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MapTest.java @@ -104,10 +104,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @jakarta.annotation.Nullable @Valid @@ -139,10 +139,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @@ -173,10 +173,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @@ -207,10 +207,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 724786d95d2..9cacb816f92 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -60,10 +60,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Valid @@ -87,10 +87,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Valid @@ -122,10 +122,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Model200Response.java index c1b3b9c2730..59a1b8fd1f6 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Model200Response.java @@ -52,10 +52,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @@ -78,10 +78,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 22bfce31e41..3f895adf22a 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -56,10 +56,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @@ -82,10 +82,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @@ -108,10 +108,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelFile.java index 8e06d510553..3b1e518a155 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelFile.java @@ -48,10 +48,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelList.java index 2a4a974ed27..c95d14645ba 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelList.java @@ -48,10 +48,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelReturn.java index e4767c24b24..c9ff5dd33ff 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -48,10 +48,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Name.java index adfd57f73aa..7f03e51fddb 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Name.java @@ -69,10 +69,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -91,10 +91,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @@ -112,10 +112,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @@ -133,10 +133,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NullableClass.java index e22643e787e..82b9e0e852f 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NullableClass.java @@ -106,10 +106,10 @@ public class NullableClass { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -140,10 +140,10 @@ public class NullableClass { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @jakarta.annotation.Nullable @Valid @@ -175,10 +175,10 @@ public class NullableClass { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -209,10 +209,10 @@ public class NullableClass { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -243,10 +243,10 @@ public class NullableClass { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @jakarta.annotation.Nullable @Valid @@ -278,10 +278,10 @@ public class NullableClass { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @jakarta.annotation.Nullable @Valid @@ -325,10 +325,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -371,10 +371,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -413,10 +413,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @@ -451,10 +451,10 @@ public class NullableClass { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -497,10 +497,10 @@ public class NullableClass { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -539,10 +539,10 @@ public class NullableClass { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NumberOnly.java index 33876e8c3d8..42d53b2d286 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -48,10 +48,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 4731026fb51..997108d36a6 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -66,10 +66,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @@ -93,11 +93,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @Valid @@ -124,11 +124,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @Valid @@ -163,11 +163,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Order.java index 7c6f796493b..3c5e4224805 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Order.java @@ -105,10 +105,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -131,10 +131,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -183,10 +183,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @Valid @@ -210,10 +210,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @@ -236,10 +236,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/OuterComposite.java index 49023519707..deff727917f 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -56,10 +56,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -83,10 +83,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @@ -109,10 +109,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Pet.java index e88d8702d26..d113905a275 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -134,10 +134,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @Valid @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -196,10 +196,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -231,10 +231,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @Valid @@ -258,10 +258,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java index 6d71684d951..6c099ab2f56 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java @@ -47,10 +47,10 @@ public class QuadrilateralInterface { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index dedf4c6ceb6..49a8b447d8c 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -54,10 +54,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -75,10 +75,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ScaleneTriangle.java index 343411ef979..298623a9e14 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ScaleneTriangle.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ScaleneTriangle.java @@ -55,10 +55,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -82,10 +82,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ShapeInterface.java index ec9ae196c9a..cdd9f791900 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ShapeInterface.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/ShapeInterface.java @@ -47,10 +47,10 @@ public class ShapeInterface { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java index bf67bc4ce40..1b3290232c2 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java @@ -55,10 +55,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -82,10 +82,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SpecialModelName.java index 7f93fe660dc..a6408768274 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -52,10 +52,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @@ -78,10 +78,10 @@ public class SpecialModelName { return this; } - /** + /** * Get specialModelName * @return specialModelName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SPECIAL_MODEL_NAME) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Tag.java index 14bbab7a163..aa4361a64e6 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Tag.java @@ -51,10 +51,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -77,10 +77,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index f11b1b84c68..096407c3cb7 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -52,10 +52,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest { return this; } - /** + /** * Get someProperty * @return someProperty - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_PROPERTY) diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TriangleInterface.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TriangleInterface.java index 3ec2cb72f1c..52d29f3165b 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TriangleInterface.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/TriangleInterface.java @@ -47,10 +47,10 @@ public class TriangleInterface { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/User.java index fb4c0e5cc39..20ceaa47256 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/User.java @@ -95,10 +95,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -121,10 +121,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @@ -147,10 +147,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -199,10 +199,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @@ -225,10 +225,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -251,10 +251,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @@ -277,10 +277,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @@ -303,10 +303,10 @@ public class User { return this; } - /** + /** * test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. * @return objectWithNoDeclaredProps - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_WITH_NO_DECLARED_PROPS) @@ -329,10 +329,10 @@ public class User { return this; } - /** + /** * test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. * @return objectWithNoDeclaredPropsNullable - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -363,10 +363,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 * @return anyTypeProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -397,10 +397,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. * @return anyTypePropNullable - **/ + */ @jakarta.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Whale.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Whale.java index 67802ff9c5a..08e4041230e 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Whale.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Whale.java @@ -56,10 +56,10 @@ public class Whale { return this; } - /** + /** * Get hasBaleen * @return hasBaleen - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_HAS_BALEEN) @@ -82,10 +82,10 @@ public class Whale { return this; } - /** + /** * Get hasTeeth * @return hasTeeth - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_HAS_TEETH) @@ -108,10 +108,10 @@ public class Whale { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Zebra.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Zebra.java index c8a3f6595ca..7731bdfeb60 100644 --- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Zebra.java +++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/model/Zebra.java @@ -93,10 +93,10 @@ public class Zebra { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @@ -119,10 +119,10 @@ public class Zebra { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Category.java index 1bedcba64e4..c798b428fe2 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Category.java @@ -23,34 +23,36 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "Category", propOrder = - { "id", "name" -}) +@XmlType(name = "Category", propOrder = + { "id", "name" } +) -@XmlRootElement(name="Category") + +@XmlRootElement(name = "Category") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "Category") @JsonPropertyOrder({ Category.JSON_PROPERTY_ID, Category.JSON_PROPERTY_NAME }) /** * A category for a pet - **/ + */ public class Category { public static final String JSON_PROPERTY_ID = "id"; - @XmlElement(name="id") + @XmlElement(name = "id") private Long id; public static final String JSON_PROPERTY_NAME = "name"; - @XmlElement(name="name") + @XmlElement(name = "name") private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -59,8 +61,8 @@ public class Category { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -73,10 +75,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "name") @@ -85,8 +87,8 @@ public class Category { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "name") @@ -101,8 +103,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/ModelApiResponse.java index ddfadbcf410..7ea582a1bec 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -23,12 +23,14 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "ModelApiResponse", propOrder = - { "code", "type", "message" -}) +@XmlType(name = "ModelApiResponse", propOrder = + { "code", "type", "message" } +) -@XmlRootElement(name="ModelApiResponse") + +@XmlRootElement(name = "ModelApiResponse") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "ModelApiResponse") @JsonPropertyOrder({ ModelApiResponse.JSON_PROPERTY_CODE, ModelApiResponse.JSON_PROPERTY_TYPE, @@ -37,26 +39,26 @@ import jakarta.xml.bind.annotation.adapters.*; @JsonTypeName("ApiResponse") /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { public static final String JSON_PROPERTY_CODE = "code"; - @XmlElement(name="code") + @XmlElement(name = "code") private Integer code; public static final String JSON_PROPERTY_TYPE = "type"; - @XmlElement(name="type") + @XmlElement(name = "type") private String type; public static final String JSON_PROPERTY_MESSAGE = "message"; - @XmlElement(name="message") + @XmlElement(name = "message") private String message; - /** + /** * Get code * @return code - **/ + **/ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "code") @@ -65,8 +67,8 @@ public class ModelApiResponse { } /** - * Set code - **/ + * Set code + */ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "code") @@ -79,10 +81,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "type") @@ -91,8 +93,8 @@ public class ModelApiResponse { } /** - * Set type - **/ + * Set type + */ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "type") @@ -105,10 +107,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "message") @@ -117,8 +119,8 @@ public class ModelApiResponse { } /** - * Set message - **/ + * Set message + */ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "message") @@ -133,8 +135,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Order.java index b4fd65862e2..20efbf432c4 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Order.java @@ -24,12 +24,14 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "Order", propOrder = - { "id", "petId", "quantity", "shipDate", "status", "complete" -}) +@XmlType(name = "Order", propOrder = + { "id", "petId", "quantity", "shipDate", "status", "complete" } +) -@XmlRootElement(name="Order") + +@XmlRootElement(name = "Order") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "Order") @JsonPropertyOrder({ Order.JSON_PROPERTY_ID, Order.JSON_PROPERTY_PET_ID, @@ -40,24 +42,24 @@ import jakarta.xml.bind.annotation.adapters.*; }) /** * An order for a pets from the pet store - **/ + */ public class Order { public static final String JSON_PROPERTY_ID = "id"; - @XmlElement(name="id") + @XmlElement(name = "id") private Long id; public static final String JSON_PROPERTY_PET_ID = "petId"; - @XmlElement(name="petId") + @XmlElement(name = "petId") private Long petId; public static final String JSON_PROPERTY_QUANTITY = "quantity"; - @XmlElement(name="quantity") + @XmlElement(name = "quantity") private Integer quantity; public static final String JSON_PROPERTY_SHIP_DATE = "shipDate"; - @XmlElement(name="shipDate") + @XmlElement(name = "shipDate") private Date shipDate; @XmlType(name="StatusEnum") @@ -94,20 +96,20 @@ public class Order { } public static final String JSON_PROPERTY_STATUS = "status"; - @XmlElement(name="status") + @XmlElement(name = "status") /** - * Order Status - **/ + * Order Status + */ private StatusEnum status; public static final String JSON_PROPERTY_COMPLETE = "complete"; - @XmlElement(name="complete") + @XmlElement(name = "complete") private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -116,8 +118,8 @@ public class Order { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -130,10 +132,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "petId") @@ -142,8 +144,8 @@ public class Order { } /** - * Set petId - **/ + * Set petId + */ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "petId") @@ -156,10 +158,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "quantity") @@ -168,8 +170,8 @@ public class Order { } /** - * Set quantity - **/ + * Set quantity + */ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "quantity") @@ -182,10 +184,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "shipDate") @@ -194,8 +196,8 @@ public class Order { } /** - * Set shipDate - **/ + * Set shipDate + */ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "shipDate") @@ -208,10 +210,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "status") @@ -223,8 +225,8 @@ public class Order { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "status") @@ -237,10 +239,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "complete") @@ -249,8 +251,8 @@ public class Order { } /** - * Set complete - **/ + * Set complete + */ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "complete") @@ -265,8 +267,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Pet.java index cc6ecbaceec..d0717134404 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Pet.java @@ -28,12 +28,14 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "Pet", propOrder = - { "id", "category", "name", "photoUrls", "tags", "status" -}) +@XmlType(name = "Pet", propOrder = + { "id", "category", "name", "photoUrls", "tags", "status" } +) -@XmlRootElement(name="Pet") + +@XmlRootElement(name = "Pet") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "Pet") @JsonPropertyOrder({ Pet.JSON_PROPERTY_ID, Pet.JSON_PROPERTY_CATEGORY, @@ -44,28 +46,30 @@ import jakarta.xml.bind.annotation.adapters.*; }) /** * A pet for sale in the pet store - **/ + */ public class Pet { public static final String JSON_PROPERTY_ID = "id"; - @XmlElement(name="id") + @XmlElement(name = "id") private Long id; public static final String JSON_PROPERTY_CATEGORY = "category"; - @XmlElement(name="category") + @XmlElement(name = "Category") private Category category; public static final String JSON_PROPERTY_NAME = "name"; - @XmlElement(name="name", required = true) + @XmlElement(name = "name") private String name; public static final String JSON_PROPERTY_PHOTO_URLS = "photoUrls"; - @XmlElement(name="photoUrls", required = true) + @XmlElement(name = "photoUrl") + @XmlElementWrapper(name = "photoUrl") private List photoUrls = new ArrayList<>(); public static final String JSON_PROPERTY_TAGS = "tags"; - @XmlElement(name="tags") + @XmlElement(name = "Tag") + @XmlElementWrapper(name = "tag") private List tags = null; @XmlType(name="StatusEnum") @@ -102,16 +106,16 @@ public class Pet { } public static final String JSON_PROPERTY_STATUS = "status"; - @XmlElement(name="status") + @XmlElement(name = "status") /** - * pet status in the store - **/ + * pet status in the store + */ private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -120,8 +124,8 @@ public class Pet { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -134,10 +138,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "Category") @@ -146,8 +150,8 @@ public class Pet { } /** - * Set category - **/ + * Set category + */ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "Category") @@ -160,10 +164,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @JacksonXmlProperty(localName = "name") @@ -172,8 +176,8 @@ public class Pet { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @JacksonXmlProperty(localName = "name") @@ -186,27 +190,25 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - // xmlName=photoUrl @JacksonXmlProperty(localName = "photoUrl") - @JacksonXmlElementWrapper(useWrapping = true, localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrl", useWrapping = true) public List getPhotoUrls() { return photoUrls; } /** - * Set photoUrls - **/ + * Set photoUrls + */ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - // xmlName=photoUrl @JacksonXmlProperty(localName = "photoUrl") - @JacksonXmlElementWrapper(useWrapping = true, localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrl", useWrapping = true) public void setPhotoUrls(List photoUrls) { this.photoUrls = photoUrls; } @@ -224,27 +226,25 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - // xmlName=tag - @JacksonXmlProperty(localName = "tag") - @JacksonXmlElementWrapper(useWrapping = true, localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) public List getTags() { return tags; } /** - * Set tags - **/ + * Set tags + */ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - // xmlName=tag - @JacksonXmlProperty(localName = "tag") - @JacksonXmlElementWrapper(useWrapping = true, localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) public void setTags(List tags) { this.tags = tags; } @@ -262,11 +262,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -279,8 +279,8 @@ public class Pet { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "status") @@ -295,8 +295,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Tag.java index 488983ce94f..db5a74ca2be 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/Tag.java @@ -23,34 +23,36 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "Tag", propOrder = - { "id", "name" -}) +@XmlType(name = "Tag", propOrder = + { "id", "name" } +) -@XmlRootElement(name="Tag") + +@XmlRootElement(name = "Tag") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "Tag") @JsonPropertyOrder({ Tag.JSON_PROPERTY_ID, Tag.JSON_PROPERTY_NAME }) /** * A tag for a pet - **/ + */ public class Tag { public static final String JSON_PROPERTY_ID = "id"; - @XmlElement(name="id") + @XmlElement(name = "id") private Long id; public static final String JSON_PROPERTY_NAME = "name"; - @XmlElement(name="name") + @XmlElement(name = "name") private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -59,8 +61,8 @@ public class Tag { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -73,10 +75,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "name") @@ -85,8 +87,8 @@ public class Tag { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "name") @@ -101,8 +103,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/User.java index 2e70b010de3..9856bbcead5 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson-with-xml/src/main/java/org/openapitools/client/model/User.java @@ -23,12 +23,14 @@ import com.fasterxml.jackson.dataformat.xml.annotation.*; import jakarta.xml.bind.annotation.*; import jakarta.xml.bind.annotation.adapters.*; -@XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "User", propOrder = - { "id", "username", "firstName", "lastName", "email", "password", "phone", "userStatus" -}) +@XmlType(name = "User", propOrder = + { "id", "username", "firstName", "lastName", "email", "password", "phone", "userStatus" } +) -@XmlRootElement(name="User") + +@XmlRootElement(name = "User") +@XmlAccessorType(XmlAccessType.FIELD) +@JacksonXmlRootElement(localName = "User") @JsonPropertyOrder({ User.JSON_PROPERTY_ID, User.JSON_PROPERTY_USERNAME, @@ -41,49 +43,49 @@ import jakarta.xml.bind.annotation.adapters.*; }) /** * A User who is purchasing from the pet store - **/ + */ public class User { public static final String JSON_PROPERTY_ID = "id"; - @XmlElement(name="id") + @XmlElement(name = "id") private Long id; public static final String JSON_PROPERTY_USERNAME = "username"; - @XmlElement(name="username") + @XmlElement(name = "username") private String username; public static final String JSON_PROPERTY_FIRST_NAME = "firstName"; - @XmlElement(name="firstName") + @XmlElement(name = "firstName") private String firstName; public static final String JSON_PROPERTY_LAST_NAME = "lastName"; - @XmlElement(name="lastName") + @XmlElement(name = "lastName") private String lastName; public static final String JSON_PROPERTY_EMAIL = "email"; - @XmlElement(name="email") + @XmlElement(name = "email") private String email; public static final String JSON_PROPERTY_PASSWORD = "password"; - @XmlElement(name="password") + @XmlElement(name = "password") private String password; public static final String JSON_PROPERTY_PHONE = "phone"; - @XmlElement(name="phone") + @XmlElement(name = "phone") private String phone; public static final String JSON_PROPERTY_USER_STATUS = "userStatus"; - @XmlElement(name="userStatus") + @XmlElement(name = "userStatus") /** - * User Status - **/ + * User Status + */ private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -92,8 +94,8 @@ public class User { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "id") @@ -106,10 +108,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "username") @@ -118,8 +120,8 @@ public class User { } /** - * Set username - **/ + * Set username + */ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "username") @@ -132,10 +134,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "firstName") @@ -144,8 +146,8 @@ public class User { } /** - * Set firstName - **/ + * Set firstName + */ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "firstName") @@ -158,10 +160,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "lastName") @@ -170,8 +172,8 @@ public class User { } /** - * Set lastName - **/ + * Set lastName + */ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "lastName") @@ -184,10 +186,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "email") @@ -196,8 +198,8 @@ public class User { } /** - * Set email - **/ + * Set email + */ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "email") @@ -210,10 +212,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "password") @@ -222,8 +224,8 @@ public class User { } /** - * Set password - **/ + * Set password + */ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "password") @@ -236,10 +238,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "phone") @@ -248,8 +250,8 @@ public class User { } /** - * Set phone - **/ + * Set phone + */ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "phone") @@ -262,10 +264,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "userStatus") @@ -274,8 +276,8 @@ public class User { } /** - * Set userStatus - **/ + * Set userStatus + */ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JacksonXmlProperty(localName = "userStatus") @@ -290,8 +292,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Category.java index f90df1d1bf3..e08314ab682 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Category.java @@ -26,7 +26,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A category for a pet - **/ + */ public class Category { @@ -38,10 +38,10 @@ public class Category { private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -49,8 +49,8 @@ public class Category { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -62,10 +62,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getName() { @@ -73,8 +73,8 @@ public class Category { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setName(String name) { @@ -88,8 +88,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java index d66986b5478..75df05dfaef 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -28,7 +28,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; @JsonTypeName("ApiResponse") /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { @@ -44,10 +44,10 @@ public class ModelApiResponse { private String message; - /** + /** * Get code * @return code - **/ + **/ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getCode() { @@ -55,8 +55,8 @@ public class ModelApiResponse { } /** - * Set code - **/ + * Set code + */ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCode(Integer code) { @@ -68,10 +68,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getType() { @@ -79,8 +79,8 @@ public class ModelApiResponse { } /** - * Set type - **/ + * Set type + */ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setType(String type) { @@ -92,10 +92,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getMessage() { @@ -103,8 +103,8 @@ public class ModelApiResponse { } /** - * Set message - **/ + * Set message + */ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setMessage(String message) { @@ -118,8 +118,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Order.java index b6c0aec0c23..eb683221585 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Order.java @@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * An order for a pets from the pet store - **/ + */ public class Order { @@ -85,8 +85,8 @@ public class Order { public static final String JSON_PROPERTY_STATUS = "status"; /** - * Order Status - **/ + * Order Status + */ private StatusEnum status; @@ -94,10 +94,10 @@ public class Order { private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -105,8 +105,8 @@ public class Order { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -118,10 +118,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getPetId() { @@ -129,8 +129,8 @@ public class Order { } /** - * Set petId - **/ + * Set petId + */ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPetId(Long petId) { @@ -142,10 +142,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getQuantity() { @@ -153,8 +153,8 @@ public class Order { } /** - * Set quantity - **/ + * Set quantity + */ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setQuantity(Integer quantity) { @@ -166,10 +166,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Date getShipDate() { @@ -177,8 +177,8 @@ public class Order { } /** - * Set shipDate - **/ + * Set shipDate + */ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setShipDate(Date shipDate) { @@ -190,10 +190,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public StatusEnum getStatus() { @@ -201,8 +201,8 @@ public class Order { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setStatus(StatusEnum status) { @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Boolean getComplete() { @@ -225,8 +225,8 @@ public class Order { } /** - * Set complete - **/ + * Set complete + */ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setComplete(Boolean complete) { @@ -240,8 +240,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Pet.java index defd4504bc7..0e0720b7714 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Pet.java @@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A pet for sale in the pet store - **/ + */ public class Pet { @@ -93,15 +93,15 @@ public class Pet { public static final String JSON_PROPERTY_STATUS = "status"; /** - * pet status in the store - **/ + * pet status in the store + */ private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -109,8 +109,8 @@ public class Pet { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -122,10 +122,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Category getCategory() { @@ -133,8 +133,8 @@ public class Pet { } /** - * Set category - **/ + * Set category + */ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCategory(Category category) { @@ -146,10 +146,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) public String getName() { @@ -157,8 +157,8 @@ public class Pet { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) public void setName(String name) { @@ -170,10 +170,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) public List getPhotoUrls() { @@ -181,8 +181,8 @@ public class Pet { } /** - * Set photoUrls - **/ + * Set photoUrls + */ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) public void setPhotoUrls(List photoUrls) { @@ -202,10 +202,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getTags() { @@ -213,8 +213,8 @@ public class Pet { } /** - * Set tags - **/ + * Set tags + */ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setTags(List tags) { @@ -234,11 +234,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,8 +247,8 @@ public class Pet { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setStatus(StatusEnum status) { @@ -262,8 +262,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Tag.java index 283def00e3e..b6f69349785 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/Tag.java @@ -26,7 +26,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A tag for a pet - **/ + */ public class Tag { @@ -38,10 +38,10 @@ public class Tag { private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -49,8 +49,8 @@ public class Tag { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -62,10 +62,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getName() { @@ -73,8 +73,8 @@ public class Tag { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setName(String name) { @@ -88,8 +88,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/User.java index 26490077dd3..fda9ee53d14 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0-jackson/src/main/java/org/openapitools/client/model/User.java @@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A User who is purchasing from the pet store - **/ + */ public class User { @@ -66,15 +66,15 @@ public class User { public static final String JSON_PROPERTY_USER_STATUS = "userStatus"; /** - * User Status - **/ + * User Status + */ private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -82,8 +82,8 @@ public class User { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -95,10 +95,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getUsername() { @@ -106,8 +106,8 @@ public class User { } /** - * Set username - **/ + * Set username + */ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setUsername(String username) { @@ -119,10 +119,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getFirstName() { @@ -130,8 +130,8 @@ public class User { } /** - * Set firstName - **/ + * Set firstName + */ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setFirstName(String firstName) { @@ -143,10 +143,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getLastName() { @@ -154,8 +154,8 @@ public class User { } /** - * Set lastName - **/ + * Set lastName + */ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setLastName(String lastName) { @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getEmail() { @@ -178,8 +178,8 @@ public class User { } /** - * Set email - **/ + * Set email + */ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setEmail(String email) { @@ -191,10 +191,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getPassword() { @@ -202,8 +202,8 @@ public class User { } /** - * Set password - **/ + * Set password + */ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPassword(String password) { @@ -215,10 +215,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getPhone() { @@ -226,8 +226,8 @@ public class User { } /** - * Set phone - **/ + * Set phone + */ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPhone(String phone) { @@ -239,10 +239,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getUserStatus() { @@ -250,8 +250,8 @@ public class User { } /** - * Set userStatus - **/ + * Set userStatus + */ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setUserStatus(Integer userStatus) { @@ -265,8 +265,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Category.java index aa7007ad5d5..121589eaeb6 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Category.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A category for a pet - **/ + */ public class Category { @@ -35,17 +35,17 @@ public class Category { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 44eea59b3ee..c1df0dd408a 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { @@ -38,17 +38,17 @@ public class ModelApiResponse { @JsonbProperty("message") private String message; - /** + /** * Get code * @return code - **/ + **/ public Integer getCode() { return code; } /** - * Set code - **/ + * Set code + */ public void setCode(Integer code) { this.code = code; } @@ -58,17 +58,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ public String getType() { return type; } /** - * Set type - **/ + * Set type + */ public void setType(String type) { this.type = type; } @@ -78,17 +78,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ public String getMessage() { return message; } /** - * Set message - **/ + * Set message + */ public void setMessage(String message) { this.message = message; } @@ -100,8 +100,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Order.java index d378038fc30..489c7fc73c5 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Order.java @@ -26,7 +26,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * An order for a pets from the pet store - **/ + */ public class Order { @@ -85,25 +85,25 @@ public class Order { } /** - * Order Status - **/ + * Order Status + */ @JsonbProperty("status") private StatusEnum status; @JsonbProperty("complete") private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -113,17 +113,17 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ public Long getPetId() { return petId; } /** - * Set petId - **/ + * Set petId + */ public void setPetId(Long petId) { this.petId = petId; } @@ -133,17 +133,17 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ public Integer getQuantity() { return quantity; } /** - * Set quantity - **/ + * Set quantity + */ public void setQuantity(Integer quantity) { this.quantity = quantity; } @@ -153,17 +153,17 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ public Date getShipDate() { return shipDate; } /** - * Set shipDate - **/ + * Set shipDate + */ public void setShipDate(Date shipDate) { this.shipDate = shipDate; } @@ -173,17 +173,17 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -193,17 +193,17 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ public Boolean getComplete() { return complete; } /** - * Set complete - **/ + * Set complete + */ public void setComplete(Boolean complete) { this.complete = complete; } @@ -215,8 +215,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Pet.java index 822179523dc..5761ee105f1 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Pet.java @@ -30,7 +30,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A pet for sale in the pet store - **/ + */ public class Pet { @@ -92,22 +92,22 @@ public class Pet { } /** - * pet status in the store - **/ + * pet status in the store + */ @JsonbProperty("status") private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -117,17 +117,17 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ public Category getCategory() { return category; } /** - * Set category - **/ + * Set category + */ public void setCategory(Category category) { this.category = category; } @@ -137,17 +137,17 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -157,17 +157,17 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ public List getPhotoUrls() { return photoUrls; } /** - * Set photoUrls - **/ + * Set photoUrls + */ public void setPhotoUrls(List photoUrls) { this.photoUrls = photoUrls; } @@ -185,17 +185,17 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ public List getTags() { return tags; } /** - * Set tags - **/ + * Set tags + */ public void setTags(List tags) { this.tags = tags; } @@ -213,19 +213,19 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -237,8 +237,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Tag.java index fecc6943bff..28985a1f069 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/Tag.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A tag for a pet - **/ + */ public class Tag { @@ -35,17 +35,17 @@ public class Tag { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/User.java index e4f99ba38d3..d9ebaeb284d 100644 --- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/model/User.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A User who is purchasing from the pet store - **/ + */ public class User { @@ -51,22 +51,22 @@ public class User { private String phone; /** - * User Status - **/ + * User Status + */ @JsonbProperty("userStatus") private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -76,17 +76,17 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ public String getUsername() { return username; } /** - * Set username - **/ + * Set username + */ public void setUsername(String username) { this.username = username; } @@ -96,17 +96,17 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ public String getFirstName() { return firstName; } /** - * Set firstName - **/ + * Set firstName + */ public void setFirstName(String firstName) { this.firstName = firstName; } @@ -116,17 +116,17 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ public String getLastName() { return lastName; } /** - * Set lastName - **/ + * Set lastName + */ public void setLastName(String lastName) { this.lastName = lastName; } @@ -136,17 +136,17 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ public String getEmail() { return email; } /** - * Set email - **/ + * Set email + */ public void setEmail(String email) { this.email = email; } @@ -156,17 +156,17 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ public String getPassword() { return password; } /** - * Set password - **/ + * Set password + */ public void setPassword(String password) { this.password = password; } @@ -176,17 +176,17 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ public String getPhone() { return phone; } /** - * Set phone - **/ + * Set phone + */ public void setPhone(String phone) { this.phone = phone; } @@ -196,17 +196,17 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ public Integer getUserStatus() { return userStatus; } /** - * Set userStatus - **/ + * Set userStatus + */ public void setUserStatus(Integer userStatus) { this.userStatus = userStatus; } @@ -218,8 +218,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Category.java index aa7007ad5d5..121589eaeb6 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Category.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A category for a pet - **/ + */ public class Category { @@ -35,17 +35,17 @@ public class Category { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 44eea59b3ee..c1df0dd408a 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { @@ -38,17 +38,17 @@ public class ModelApiResponse { @JsonbProperty("message") private String message; - /** + /** * Get code * @return code - **/ + **/ public Integer getCode() { return code; } /** - * Set code - **/ + * Set code + */ public void setCode(Integer code) { this.code = code; } @@ -58,17 +58,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ public String getType() { return type; } /** - * Set type - **/ + * Set type + */ public void setType(String type) { this.type = type; } @@ -78,17 +78,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ public String getMessage() { return message; } /** - * Set message - **/ + * Set message + */ public void setMessage(String message) { this.message = message; } @@ -100,8 +100,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Order.java index d378038fc30..489c7fc73c5 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Order.java @@ -26,7 +26,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * An order for a pets from the pet store - **/ + */ public class Order { @@ -85,25 +85,25 @@ public class Order { } /** - * Order Status - **/ + * Order Status + */ @JsonbProperty("status") private StatusEnum status; @JsonbProperty("complete") private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -113,17 +113,17 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ public Long getPetId() { return petId; } /** - * Set petId - **/ + * Set petId + */ public void setPetId(Long petId) { this.petId = petId; } @@ -133,17 +133,17 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ public Integer getQuantity() { return quantity; } /** - * Set quantity - **/ + * Set quantity + */ public void setQuantity(Integer quantity) { this.quantity = quantity; } @@ -153,17 +153,17 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ public Date getShipDate() { return shipDate; } /** - * Set shipDate - **/ + * Set shipDate + */ public void setShipDate(Date shipDate) { this.shipDate = shipDate; } @@ -173,17 +173,17 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -193,17 +193,17 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ public Boolean getComplete() { return complete; } /** - * Set complete - **/ + * Set complete + */ public void setComplete(Boolean complete) { this.complete = complete; } @@ -215,8 +215,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Pet.java index 822179523dc..5761ee105f1 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Pet.java @@ -30,7 +30,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A pet for sale in the pet store - **/ + */ public class Pet { @@ -92,22 +92,22 @@ public class Pet { } /** - * pet status in the store - **/ + * pet status in the store + */ @JsonbProperty("status") private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -117,17 +117,17 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ public Category getCategory() { return category; } /** - * Set category - **/ + * Set category + */ public void setCategory(Category category) { this.category = category; } @@ -137,17 +137,17 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -157,17 +157,17 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ public List getPhotoUrls() { return photoUrls; } /** - * Set photoUrls - **/ + * Set photoUrls + */ public void setPhotoUrls(List photoUrls) { this.photoUrls = photoUrls; } @@ -185,17 +185,17 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ public List getTags() { return tags; } /** - * Set tags - **/ + * Set tags + */ public void setTags(List tags) { this.tags = tags; } @@ -213,19 +213,19 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -237,8 +237,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Tag.java index fecc6943bff..28985a1f069 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/Tag.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A tag for a pet - **/ + */ public class Tag { @@ -35,17 +35,17 @@ public class Tag { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/User.java index e4f99ba38d3..d9ebaeb284d 100644 --- a/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/microprofile-rest-client-with-useSingleRequestParameter/src/main/java/org/openapitools/client/model/User.java @@ -25,7 +25,7 @@ import jakarta.json.bind.annotation.JsonbProperty; /** * A User who is purchasing from the pet store - **/ + */ public class User { @@ -51,22 +51,22 @@ public class User { private String phone; /** - * User Status - **/ + * User Status + */ @JsonbProperty("userStatus") private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -76,17 +76,17 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ public String getUsername() { return username; } /** - * Set username - **/ + * Set username + */ public void setUsername(String username) { this.username = username; } @@ -96,17 +96,17 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ public String getFirstName() { return firstName; } /** - * Set firstName - **/ + * Set firstName + */ public void setFirstName(String firstName) { this.firstName = firstName; } @@ -116,17 +116,17 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ public String getLastName() { return lastName; } /** - * Set lastName - **/ + * Set lastName + */ public void setLastName(String lastName) { this.lastName = lastName; } @@ -136,17 +136,17 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ public String getEmail() { return email; } /** - * Set email - **/ + * Set email + */ public void setEmail(String email) { this.email = email; } @@ -156,17 +156,17 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ public String getPassword() { return password; } /** - * Set password - **/ + * Set password + */ public void setPassword(String password) { this.password = password; } @@ -176,17 +176,17 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ public String getPhone() { return phone; } /** - * Set phone - **/ + * Set phone + */ public void setPhone(String phone) { this.phone = phone; } @@ -196,17 +196,17 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ public Integer getUserStatus() { return userStatus; } /** - * Set userStatus - **/ + * Set userStatus + */ public void setUserStatus(Integer userStatus) { this.userStatus = userStatus; } @@ -218,8 +218,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Category.java index d34db0dec2e..9b8e0cd7205 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Category.java @@ -25,7 +25,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * A category for a pet - **/ + */ public class Category { @@ -35,17 +35,17 @@ public class Category { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java index bb7520afb0b..6afa6830d98 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -25,7 +25,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { @@ -38,17 +38,17 @@ public class ModelApiResponse { @JsonbProperty("message") private String message; - /** + /** * Get code * @return code - **/ + **/ public Integer getCode() { return code; } /** - * Set code - **/ + * Set code + */ public void setCode(Integer code) { this.code = code; } @@ -58,17 +58,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ public String getType() { return type; } /** - * Set type - **/ + * Set type + */ public void setType(String type) { this.type = type; } @@ -78,17 +78,17 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ public String getMessage() { return message; } /** - * Set message - **/ + * Set message + */ public void setMessage(String message) { this.message = message; } @@ -100,8 +100,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Order.java index 204dc0ceb79..a111215c674 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Order.java @@ -26,7 +26,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * An order for a pets from the pet store - **/ + */ public class Order { @@ -85,25 +85,25 @@ public class Order { } /** - * Order Status - **/ + * Order Status + */ @JsonbProperty("status") private StatusEnum status; @JsonbProperty("complete") private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -113,17 +113,17 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ public Long getPetId() { return petId; } /** - * Set petId - **/ + * Set petId + */ public void setPetId(Long petId) { this.petId = petId; } @@ -133,17 +133,17 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ public Integer getQuantity() { return quantity; } /** - * Set quantity - **/ + * Set quantity + */ public void setQuantity(Integer quantity) { this.quantity = quantity; } @@ -153,17 +153,17 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ public Date getShipDate() { return shipDate; } /** - * Set shipDate - **/ + * Set shipDate + */ public void setShipDate(Date shipDate) { this.shipDate = shipDate; } @@ -173,17 +173,17 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -193,17 +193,17 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ public Boolean getComplete() { return complete; } /** - * Set complete - **/ + * Set complete + */ public void setComplete(Boolean complete) { this.complete = complete; } @@ -215,8 +215,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Pet.java index 3efc500eec7..4da8d4dc763 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Pet.java @@ -30,7 +30,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * A pet for sale in the pet store - **/ + */ public class Pet { @@ -92,22 +92,22 @@ public class Pet { } /** - * pet status in the store - **/ + * pet status in the store + */ @JsonbProperty("status") private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -117,17 +117,17 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ public Category getCategory() { return category; } /** - * Set category - **/ + * Set category + */ public void setCategory(Category category) { this.category = category; } @@ -137,17 +137,17 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -157,17 +157,17 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ public List getPhotoUrls() { return photoUrls; } /** - * Set photoUrls - **/ + * Set photoUrls + */ public void setPhotoUrls(List photoUrls) { this.photoUrls = photoUrls; } @@ -185,17 +185,17 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ public List getTags() { return tags; } /** - * Set tags - **/ + * Set tags + */ public void setTags(List tags) { this.tags = tags; } @@ -213,19 +213,19 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated public StatusEnum getStatus() { return status; } /** - * Set status - **/ + * Set status + */ public void setStatus(StatusEnum status) { this.status = status; } @@ -237,8 +237,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Tag.java index 31b19492308..29afe967b74 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/Tag.java @@ -25,7 +25,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * A tag for a pet - **/ + */ public class Tag { @@ -35,17 +35,17 @@ public class Tag { @JsonbProperty("name") private String name; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -55,17 +55,17 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ public String getName() { return name; } /** - * Set name - **/ + * Set name + */ public void setName(String name) { this.name = name; } @@ -77,8 +77,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/User.java index da9326887b1..67aba438db6 100644 --- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/model/User.java @@ -25,7 +25,7 @@ import javax.json.bind.annotation.JsonbProperty; /** * A User who is purchasing from the pet store - **/ + */ public class User { @@ -51,22 +51,22 @@ public class User { private String phone; /** - * User Status - **/ + * User Status + */ @JsonbProperty("userStatus") private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ public Long getId() { return id; } /** - * Set id - **/ + * Set id + */ public void setId(Long id) { this.id = id; } @@ -76,17 +76,17 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ public String getUsername() { return username; } /** - * Set username - **/ + * Set username + */ public void setUsername(String username) { this.username = username; } @@ -96,17 +96,17 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ public String getFirstName() { return firstName; } /** - * Set firstName - **/ + * Set firstName + */ public void setFirstName(String firstName) { this.firstName = firstName; } @@ -116,17 +116,17 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ public String getLastName() { return lastName; } /** - * Set lastName - **/ + * Set lastName + */ public void setLastName(String lastName) { this.lastName = lastName; } @@ -136,17 +136,17 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ public String getEmail() { return email; } /** - * Set email - **/ + * Set email + */ public void setEmail(String email) { this.email = email; } @@ -156,17 +156,17 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ public String getPassword() { return password; } /** - * Set password - **/ + * Set password + */ public void setPassword(String password) { this.password = password; } @@ -176,17 +176,17 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ public String getPhone() { return phone; } /** - * Set phone - **/ + * Set phone + */ public void setPhone(String phone) { this.phone = phone; } @@ -196,17 +196,17 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ public Integer getUserStatus() { return userStatus; } /** - * Set userStatus - **/ + * Set userStatus + */ public void setUserStatus(Integer userStatus) { this.userStatus = userStatus; } @@ -218,8 +218,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 3422bfa21e7..7c6423c4961 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -90,14 +90,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapProperty() { return mapProperty; } @@ -123,14 +122,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map> getMapOfMapProperty() { return mapOfMapProperty; } @@ -148,13 +146,12 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Object getAnytype1() { return anytype1.orElse(null); } @@ -181,14 +178,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype1 * @return mapWithUndeclaredPropertiesAnytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getMapWithUndeclaredPropertiesAnytype1() { return mapWithUndeclaredPropertiesAnytype1; } @@ -206,14 +202,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype2 * @return mapWithUndeclaredPropertiesAnytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getMapWithUndeclaredPropertiesAnytype2() { return mapWithUndeclaredPropertiesAnytype2; } @@ -239,14 +234,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype3 * @return mapWithUndeclaredPropertiesAnytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE3) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapWithUndeclaredPropertiesAnytype3() { return mapWithUndeclaredPropertiesAnytype3; } @@ -264,14 +258,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * an object with no declared properties and no undeclared properties, hence it's an empty map. * @return emptyMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMPTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getEmptyMap() { return emptyMap; } @@ -297,14 +290,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesString * @return mapWithUndeclaredPropertiesString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapWithUndeclaredPropertiesString() { return mapWithUndeclaredPropertiesString; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Animal.java index 7cc3bb0fd95..a3702c273b0 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Animal.java @@ -66,14 +66,13 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } @@ -91,14 +90,13 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getColor() { return color; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Apple.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Apple.java index 0b841d2cda6..612aaa859f9 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Apple.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Apple.java @@ -52,14 +52,13 @@ public class Apple { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCultivar() { return cultivar; } @@ -77,14 +76,13 @@ public class Apple { return this; } - /** + /** * Get origin * @return origin - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ORIGIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getOrigin() { return origin; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AppleReq.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AppleReq.java index ee00bb89733..eec47338dbe 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AppleReq.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AppleReq.java @@ -52,14 +52,13 @@ public class AppleReq { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getCultivar() { return cultivar; } @@ -77,14 +76,13 @@ public class AppleReq { return this; } - /** + /** * Get mealy * @return mealy - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MEALY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getMealy() { return mealy; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 781d654cc31..973a9eed51b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -59,14 +59,13 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayNumber() { return arrayArrayNumber; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 5ce6272649f..1c663453395 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -59,14 +59,13 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayNumber() { return arrayNumber; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayTest.java index 3bcb33a5cfe..e149c67659e 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -67,14 +67,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayOfString() { return arrayOfString; } @@ -100,14 +99,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayOfInteger() { return arrayArrayOfInteger; } @@ -133,14 +131,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayOfModel() { return arrayArrayOfModel; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Banana.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Banana.java index 63beebe1055..48238f54649 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Banana.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Banana.java @@ -49,14 +49,13 @@ public class Banana { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getLengthCm() { return lengthCm; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BananaReq.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BananaReq.java index e8ee1977b6d..8bd85e1f636 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BananaReq.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BananaReq.java @@ -53,14 +53,13 @@ public class BananaReq { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public BigDecimal getLengthCm() { return lengthCm; } @@ -78,14 +77,13 @@ public class BananaReq { return this; } - /** + /** * Get sweet * @return sweet - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SWEET) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getSweet() { return sweet; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BasquePig.java index 60cdf6b778f..e63fc80a2ab 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BasquePig.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/BasquePig.java @@ -48,14 +48,13 @@ public class BasquePig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Capitalization.java index 5a4a72a3741..9c30176ba37 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Capitalization.java @@ -68,14 +68,13 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSmallCamel() { return smallCamel; } @@ -93,14 +92,13 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCapitalCamel() { return capitalCamel; } @@ -118,14 +116,13 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSmallSnake() { return smallSnake; } @@ -143,14 +140,13 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCapitalSnake() { return capitalSnake; } @@ -168,14 +164,13 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getScAETHFlowPoints() { return scAETHFlowPoints; } @@ -193,14 +188,13 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getATTNAME() { return ATT_NAME; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Cat.java index 2e864543d12..b62d1a02664 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Cat.java @@ -60,14 +60,13 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getDeclawed() { return declawed; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Category.java index 79f6d45f463..fb22fa92d05 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Category.java @@ -52,14 +52,13 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ChildCat.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ChildCat.java index 0f7a12db154..e213b0ab3ad 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ChildCat.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ChildCat.java @@ -65,14 +65,13 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } @@ -98,14 +97,13 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPetType() { return petType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ClassModel.java index 16061aa437f..0befb5d4d37 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ClassModel.java @@ -48,14 +48,13 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPropertyClass() { return propertyClass; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Client.java index addebdc9f8f..372fe845c0b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Client.java @@ -48,14 +48,13 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getClient() { return client; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java index 8019326384f..ceae8519529 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java @@ -52,14 +52,13 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DanishPig.java index ae622b263e8..be80ca1461b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DanishPig.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DanishPig.java @@ -48,14 +48,13 @@ public class DanishPig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 84903b00163..239b1960148 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -50,14 +50,13 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Dog.java index cae50d81502..f3ad5db1e98 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Dog.java @@ -59,14 +59,13 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBreed() { return breed; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Drawing.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Drawing.java index feca125b3f4..bf1eb73ff57 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Drawing.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Drawing.java @@ -76,14 +76,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get mainShape * @return mainShape - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAIN_SHAPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Shape getMainShape() { return mainShape; } @@ -101,14 +100,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get shapeOrNull * @return shapeOrNull - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHAPE_OR_NULL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public ShapeOrNull getShapeOrNull() { return shapeOrNull; } @@ -126,13 +124,12 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get nullableShape * @return nullableShape - **/ + */ @javax.annotation.Nullable @JsonIgnore - public NullableShape getNullableShape() { return nullableShape.orElse(null); } @@ -167,14 +164,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get shapes * @return shapes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHAPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getShapes() { return shapes; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumArrays.java index 6360fb0525b..9ccbf56245c 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -124,14 +124,13 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public JustSymbolEnum getJustSymbol() { return justSymbol; } @@ -157,14 +156,13 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayEnum() { return arrayEnum; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumTest.java index d4fc6cadaea..3cf4fa4a66a 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EnumTest.java @@ -267,14 +267,13 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumStringEnum getEnumString() { return enumString; } @@ -292,14 +291,13 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public EnumStringRequiredEnum getEnumStringRequired() { return enumStringRequired; } @@ -317,14 +315,13 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumIntegerEnum getEnumInteger() { return enumInteger; } @@ -342,14 +339,13 @@ public class EnumTest { return this; } - /** + /** * Get enumIntegerOnly * @return enumIntegerOnly - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER_ONLY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumIntegerOnlyEnum getEnumIntegerOnly() { return enumIntegerOnly; } @@ -367,14 +363,13 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumNumberEnum getEnumNumber() { return enumNumber; } @@ -392,13 +387,12 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore - public OuterEnum getOuterEnum() { return outerEnum.orElse(null); } @@ -425,14 +419,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumInteger getOuterEnumInteger() { return outerEnumInteger; } @@ -450,14 +443,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumDefaultValue getOuterEnumDefaultValue() { return outerEnumDefaultValue; } @@ -475,14 +467,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumIntegerDefaultValue getOuterEnumIntegerDefaultValue() { return outerEnumIntegerDefaultValue; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EquilateralTriangle.java index d61593d711e..e612ef514bd 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EquilateralTriangle.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/EquilateralTriangle.java @@ -52,14 +52,13 @@ public class EquilateralTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class EquilateralTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index 3b906d17a0c..d3f48f3e539 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -55,14 +55,13 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getSomeId() { return someId; } @@ -88,14 +87,13 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getSomeMap() { return someMap; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 8286ab64c82..85c17c8f4d8 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -55,14 +55,13 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public ModelFile getFile() { return _file; } @@ -88,14 +87,13 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getFiles() { return files; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Foo.java index 6b6d5313884..2dbe0e84775 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Foo.java @@ -48,14 +48,13 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index adad4fbfb5a..2fd8a04551e 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -49,14 +49,13 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Foo getString() { return string; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FormatTest.java index 335e9e31eff..63b0be4724d 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/FormatTest.java @@ -113,16 +113,15 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getInteger() { return integer; } @@ -140,16 +139,15 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getInt32() { return int32; } @@ -167,14 +165,13 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getInt64() { return int64; } @@ -192,16 +189,15 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public BigDecimal getNumber() { return number; } @@ -219,16 +215,15 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Float getFloat() { return _float; } @@ -246,16 +241,15 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Double getDouble() { return _double; } @@ -273,14 +267,13 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getDecimal() { return decimal; } @@ -298,14 +291,13 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getString() { return string; } @@ -323,14 +315,13 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public byte[] getByte() { return _byte; } @@ -348,14 +339,13 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public File getBinary() { return binary; } @@ -373,14 +363,13 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public LocalDate getDate() { return date; } @@ -398,14 +387,13 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getDateTime() { return dateTime; } @@ -423,14 +411,13 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public UUID getUuid() { return uuid; } @@ -448,14 +435,13 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getPassword() { return password; } @@ -473,14 +459,13 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPatternWithDigits() { return patternWithDigits; } @@ -498,14 +483,13 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPatternWithDigitsAndDelimiter() { return patternWithDigitsAndDelimiter; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/GrandparentAnimal.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/GrandparentAnimal.java index 978e139e58f..7f5b266b892 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/GrandparentAnimal.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/GrandparentAnimal.java @@ -62,14 +62,13 @@ public class GrandparentAnimal { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getPetType() { return petType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 147bab1ec60..98820cd2046 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -57,14 +57,13 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } @@ -72,14 +71,13 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getFoo() { return foo; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 7af7a9cf3b8..a028321bf4b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -52,13 +52,12 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore - public String getNullableMessage() { return nullableMessage.orElse(null); } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java index 08daaf932ba..e11c92bf9fd 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java @@ -52,14 +52,13 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MapTest.java index 1e47edc6a1d..99e7f78d479 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MapTest.java @@ -105,14 +105,13 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map> getMapMapOfString() { return mapMapOfString; } @@ -138,14 +137,13 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapOfEnumString() { return mapOfEnumString; } @@ -171,14 +169,13 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getDirectMap() { return directMap; } @@ -204,14 +201,13 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getIndirectMap() { return indirectMap; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index a7dce3b7454..e698f33a2b8 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -61,14 +61,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public UUID getUuid() { return uuid; } @@ -86,14 +85,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getDateTime() { return dateTime; } @@ -119,14 +117,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMap() { return map; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Model200Response.java index b3451d48b55..587e3682e3b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Model200Response.java @@ -52,14 +52,13 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getName() { return name; } @@ -77,14 +76,13 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPropertyClass() { return propertyClass; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 24f5219d19c..8ff4c489515 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -56,14 +56,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getCode() { return code; } @@ -81,14 +80,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getType() { return type; } @@ -106,14 +104,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getMessage() { return message; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelFile.java index f687543faf0..502044aa447 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelFile.java @@ -48,14 +48,13 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSourceURI() { return sourceURI; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelList.java index 90998395ec2..d7f75c62cba 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelList.java @@ -48,14 +48,13 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String get123list() { return _123list; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelReturn.java index efcb0bdf0b6..142b61d586d 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -48,14 +48,13 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getReturn() { return _return; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Name.java index 67885182db1..366fa4df279 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Name.java @@ -70,14 +70,13 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public Integer getName() { return name; } @@ -90,14 +89,13 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getSnakeCase() { return snakeCase; } @@ -110,14 +108,13 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getProperty() { return property; } @@ -130,14 +127,13 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer get123number() { return _123number; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NullableClass.java index aa0e2791c16..1b4e531c738 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NullableClass.java @@ -107,13 +107,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Integer getIntegerProp() { return integerProp.orElse(null); } @@ -140,13 +139,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public BigDecimal getNumberProp() { return numberProp.orElse(null); } @@ -173,13 +171,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Boolean getBooleanProp() { return booleanProp.orElse(null); } @@ -206,13 +203,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public String getStringProp() { return stringProp.orElse(null); } @@ -239,13 +235,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public LocalDate getDateProp() { return dateProp.orElse(null); } @@ -272,13 +267,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public OffsetDateTime getDatetimeProp() { return datetimeProp.orElse(null); } @@ -317,13 +311,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayNullableProp() { return arrayNullableProp.orElse(null); } @@ -362,13 +355,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayAndItemsNullableProp() { return arrayAndItemsNullableProp.orElse(null); } @@ -403,14 +395,13 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayItemsNullable() { return arrayItemsNullable; } @@ -440,13 +431,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Map getObjectNullableProp() { return objectNullableProp.orElse(null); } @@ -485,13 +475,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Map getObjectAndItemsNullableProp() { return objectAndItemsNullableProp.orElse(null); } @@ -526,14 +515,13 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) - public Map getObjectItemsNullable() { return objectItemsNullable; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NumberOnly.java index ab57aa21327..009b1563bc4 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -49,14 +49,13 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getJustNumber() { return justNumber; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 589328d9b59..703a2b02066 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -64,14 +64,13 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getUuid() { return uuid; } @@ -89,16 +88,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getId() { return id; } @@ -116,16 +114,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public DeprecatedObject getDeprecatedRef() { return deprecatedRef; } @@ -151,16 +148,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getBars() { return bars; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Order.java index 8e82b7c362a..78e5ed478cd 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Order.java @@ -106,14 +106,13 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -131,14 +130,13 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getPetId() { return petId; } @@ -156,14 +154,13 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getQuantity() { return quantity; } @@ -181,14 +178,13 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getShipDate() { return shipDate; } @@ -206,14 +202,13 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } @@ -231,14 +226,13 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getComplete() { return complete; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/OuterComposite.java index 71c635222e8..2b096913df1 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -57,14 +57,13 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getMyNumber() { return myNumber; } @@ -82,14 +81,13 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getMyString() { return myString; } @@ -107,14 +105,13 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getMyBoolean() { return myBoolean; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Pet.java index b6d82d5e382..c863d1f8326 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Pet.java @@ -109,14 +109,13 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -134,14 +133,13 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Category getCategory() { return category; } @@ -159,14 +157,13 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } @@ -192,14 +189,13 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public List getPhotoUrls() { return photoUrls; } @@ -225,14 +221,13 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getTags() { return tags; } @@ -250,14 +245,13 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java index af070c76bb4..4d8fae8ea94 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java @@ -48,14 +48,13 @@ public class QuadrilateralInterface { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 63b6b5b629a..5b49f0c1795 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -55,14 +55,13 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } @@ -75,14 +74,13 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBaz() { return baz; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ScaleneTriangle.java index 6bce242d097..a924033ef2b 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ScaleneTriangle.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ScaleneTriangle.java @@ -52,14 +52,13 @@ public class ScaleneTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class ScaleneTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ShapeInterface.java index ec1d70b0178..b6f64f9ec15 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ShapeInterface.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/ShapeInterface.java @@ -48,14 +48,13 @@ public class ShapeInterface { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java index 226f8fa21e9..d27187c99b9 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java @@ -52,14 +52,13 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SpecialModelName.java index 8cdcb52f641..c9423411da0 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -52,14 +52,13 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long get$SpecialPropertyName() { return $specialPropertyName; } @@ -77,14 +76,13 @@ public class SpecialModelName { return this; } - /** + /** * Get specialModelName * @return specialModelName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SPECIAL_MODEL_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSpecialModelName() { return specialModelName; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Tag.java index 84ac9e813c3..400b4676a37 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/Tag.java @@ -52,14 +52,13 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index 6c8770f1fbf..5137f705804 100644 --- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -54,14 +54,13 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public TypeEnum getType() { return type; } @@ -120,14 +119,13 @@ public class Zebra extends HashMap { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Category.java index f95377e03aa..6f65ea384a2 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Category.java @@ -52,14 +52,13 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/ModelApiResponse.java index d8e2cef264f..1d772b9f351 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -56,14 +56,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getCode() { return code; } @@ -81,14 +80,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getType() { return type; } @@ -106,14 +104,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getMessage() { return message; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Order.java index 01ce02aefb1..918c82b5fc3 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Order.java @@ -106,14 +106,13 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -131,14 +130,13 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getPetId() { return petId; } @@ -156,14 +154,13 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getQuantity() { return quantity; } @@ -181,14 +178,13 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getShipDate() { return shipDate; } @@ -206,14 +202,13 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } @@ -231,14 +226,13 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getComplete() { return complete; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Pet.java index 03d29c5ebd2..8611e23dcf0 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Pet.java @@ -109,14 +109,13 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -134,14 +133,13 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Category getCategory() { return category; } @@ -159,14 +157,13 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } @@ -192,14 +189,13 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public List getPhotoUrls() { return photoUrls; } @@ -225,14 +221,13 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getTags() { return tags; } @@ -250,16 +245,15 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Tag.java index 694b9f3643c..a22d191092a 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/Tag.java @@ -52,14 +52,13 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/User.java index 31c9aefd557..2d4a40eb4c4 100644 --- a/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/native-jakarta/src/main/java/org/openapitools/client/model/User.java @@ -76,14 +76,13 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -101,14 +100,13 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getUsername() { return username; } @@ -126,14 +124,13 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getFirstName() { return firstName; } @@ -151,14 +148,13 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getLastName() { return lastName; } @@ -176,14 +172,13 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getEmail() { return email; } @@ -201,14 +196,13 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPassword() { return password; } @@ -226,14 +220,13 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPhone() { return phone; } @@ -251,14 +244,13 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getUserStatus() { return userStatus; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 156e833b68f..3e3ab863829 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -90,14 +90,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapProperty() { return mapProperty; } @@ -123,14 +122,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map> getMapOfMapProperty() { return mapOfMapProperty; } @@ -148,13 +146,12 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Object getAnytype1() { return anytype1.orElse(null); } @@ -181,14 +178,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype1 * @return mapWithUndeclaredPropertiesAnytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getMapWithUndeclaredPropertiesAnytype1() { return mapWithUndeclaredPropertiesAnytype1; } @@ -206,14 +202,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype2 * @return mapWithUndeclaredPropertiesAnytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getMapWithUndeclaredPropertiesAnytype2() { return mapWithUndeclaredPropertiesAnytype2; } @@ -239,14 +234,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype3 * @return mapWithUndeclaredPropertiesAnytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE3) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapWithUndeclaredPropertiesAnytype3() { return mapWithUndeclaredPropertiesAnytype3; } @@ -264,14 +258,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * an object with no declared properties and no undeclared properties, hence it's an empty map. * @return emptyMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMPTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getEmptyMap() { return emptyMap; } @@ -297,14 +290,13 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesString * @return mapWithUndeclaredPropertiesString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapWithUndeclaredPropertiesString() { return mapWithUndeclaredPropertiesString; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Animal.java index 9c915040578..da381ee6a22 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Animal.java @@ -66,14 +66,13 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } @@ -91,14 +90,13 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getColor() { return color; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Apple.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Apple.java index 2b347a813e6..1e783d13211 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Apple.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Apple.java @@ -52,14 +52,13 @@ public class Apple { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCultivar() { return cultivar; } @@ -77,14 +76,13 @@ public class Apple { return this; } - /** + /** * Get origin * @return origin - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ORIGIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getOrigin() { return origin; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AppleReq.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AppleReq.java index 36c5a1239ca..e19c24e5713 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AppleReq.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AppleReq.java @@ -52,14 +52,13 @@ public class AppleReq { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getCultivar() { return cultivar; } @@ -77,14 +76,13 @@ public class AppleReq { return this; } - /** + /** * Get mealy * @return mealy - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MEALY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getMealy() { return mealy; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 3f9bcb76004..0e07f8caaa1 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -59,14 +59,13 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayNumber() { return arrayArrayNumber; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 2497ce10cfe..69e6d70b538 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -59,14 +59,13 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayNumber() { return arrayNumber; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayTest.java index c3c1ac9e9af..ceca4dbe4c0 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -67,14 +67,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayOfString() { return arrayOfString; } @@ -100,14 +99,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayOfInteger() { return arrayArrayOfInteger; } @@ -133,14 +131,13 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List> getArrayArrayOfModel() { return arrayArrayOfModel; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Banana.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Banana.java index 46668a213f6..e45e928a75b 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Banana.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Banana.java @@ -49,14 +49,13 @@ public class Banana { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getLengthCm() { return lengthCm; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BananaReq.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BananaReq.java index a963fd4df11..b4a0d779c74 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BananaReq.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BananaReq.java @@ -53,14 +53,13 @@ public class BananaReq { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public BigDecimal getLengthCm() { return lengthCm; } @@ -78,14 +77,13 @@ public class BananaReq { return this; } - /** + /** * Get sweet * @return sweet - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SWEET) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getSweet() { return sweet; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BasquePig.java index d1fea74004c..857683a4839 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BasquePig.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/BasquePig.java @@ -48,14 +48,13 @@ public class BasquePig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Capitalization.java index 0c9584cd5ca..118efddda89 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Capitalization.java @@ -68,14 +68,13 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSmallCamel() { return smallCamel; } @@ -93,14 +92,13 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCapitalCamel() { return capitalCamel; } @@ -118,14 +116,13 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSmallSnake() { return smallSnake; } @@ -143,14 +140,13 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getCapitalSnake() { return capitalSnake; } @@ -168,14 +164,13 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getScAETHFlowPoints() { return scAETHFlowPoints; } @@ -193,14 +188,13 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getATTNAME() { return ATT_NAME; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Cat.java index 87882ac9e63..fdf0ce9830b 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Cat.java @@ -60,14 +60,13 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getDeclawed() { return declawed; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Category.java index 1fa8481a8cd..8df8a369eba 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Category.java @@ -52,14 +52,13 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ChildCat.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ChildCat.java index 4c58be5abc7..730924ddabb 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ChildCat.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ChildCat.java @@ -65,14 +65,13 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } @@ -98,14 +97,13 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPetType() { return petType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ClassModel.java index 1bed990abe2..a68198e2e48 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ClassModel.java @@ -48,14 +48,13 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPropertyClass() { return propertyClass; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Client.java index 2423467a342..b4f305d13d7 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Client.java @@ -48,14 +48,13 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getClient() { return client; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java index 95ffa9905ee..262f3cc1f80 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java @@ -52,14 +52,13 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DanishPig.java index bb5694874ac..f642b350736 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DanishPig.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DanishPig.java @@ -48,14 +48,13 @@ public class DanishPig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DeprecatedObject.java index ed552fda57d..208e47e7e19 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -50,14 +50,13 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Dog.java index 89879e50c46..5c2c6a1407e 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Dog.java @@ -59,14 +59,13 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBreed() { return breed; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Drawing.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Drawing.java index f91f60b96f9..6fe7f3a3f67 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Drawing.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Drawing.java @@ -76,14 +76,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get mainShape * @return mainShape - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAIN_SHAPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Shape getMainShape() { return mainShape; } @@ -101,14 +100,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get shapeOrNull * @return shapeOrNull - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHAPE_OR_NULL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public ShapeOrNull getShapeOrNull() { return shapeOrNull; } @@ -126,13 +124,12 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get nullableShape * @return nullableShape - **/ + */ @javax.annotation.Nullable @JsonIgnore - public NullableShape getNullableShape() { return nullableShape.orElse(null); } @@ -167,14 +164,13 @@ public class Drawing extends HashMap { return this; } - /** + /** * Get shapes * @return shapes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHAPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getShapes() { return shapes; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumArrays.java index c1ecf705a97..b571239b318 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -124,14 +124,13 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public JustSymbolEnum getJustSymbol() { return justSymbol; } @@ -157,14 +156,13 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayEnum() { return arrayEnum; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumTest.java index 00f7564e53e..5d05f7967a6 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EnumTest.java @@ -267,14 +267,13 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumStringEnum getEnumString() { return enumString; } @@ -292,14 +291,13 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public EnumStringRequiredEnum getEnumStringRequired() { return enumStringRequired; } @@ -317,14 +315,13 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumIntegerEnum getEnumInteger() { return enumInteger; } @@ -342,14 +339,13 @@ public class EnumTest { return this; } - /** + /** * Get enumIntegerOnly * @return enumIntegerOnly - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER_ONLY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumIntegerOnlyEnum getEnumIntegerOnly() { return enumIntegerOnly; } @@ -367,14 +363,13 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public EnumNumberEnum getEnumNumber() { return enumNumber; } @@ -392,13 +387,12 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore - public OuterEnum getOuterEnum() { return outerEnum.orElse(null); } @@ -425,14 +419,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumInteger getOuterEnumInteger() { return outerEnumInteger; } @@ -450,14 +443,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumDefaultValue getOuterEnumDefaultValue() { return outerEnumDefaultValue; } @@ -475,14 +467,13 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OuterEnumIntegerDefaultValue getOuterEnumIntegerDefaultValue() { return outerEnumIntegerDefaultValue; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EquilateralTriangle.java index 5ee54360fa2..242037af82d 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EquilateralTriangle.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/EquilateralTriangle.java @@ -52,14 +52,13 @@ public class EquilateralTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class EquilateralTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index 0c54f2550b0..b05fc257d58 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -55,14 +55,13 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getSomeId() { return someId; } @@ -88,14 +87,13 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getSomeMap() { return someMap; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 04e7ddad698..75168b37b1d 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -55,14 +55,13 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public ModelFile getFile() { return _file; } @@ -88,14 +87,13 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getFiles() { return files; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Foo.java index 8404e0c51b6..4ccdb6bbb23 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Foo.java @@ -48,14 +48,13 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index a457967c58b..dfa14fa6bbc 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -49,14 +49,13 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Foo getString() { return string; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FormatTest.java index 3774c4fe710..364ffcb87b4 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/FormatTest.java @@ -113,16 +113,15 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getInteger() { return integer; } @@ -140,16 +139,15 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getInt32() { return int32; } @@ -167,14 +165,13 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getInt64() { return int64; } @@ -192,16 +189,15 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public BigDecimal getNumber() { return number; } @@ -219,16 +215,15 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Float getFloat() { return _float; } @@ -246,16 +241,15 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Double getDouble() { return _double; } @@ -273,14 +267,13 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getDecimal() { return decimal; } @@ -298,14 +291,13 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getString() { return string; } @@ -323,14 +315,13 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public byte[] getByte() { return _byte; } @@ -348,14 +339,13 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public File getBinary() { return binary; } @@ -373,14 +363,13 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public LocalDate getDate() { return date; } @@ -398,14 +387,13 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getDateTime() { return dateTime; } @@ -423,14 +411,13 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public UUID getUuid() { return uuid; } @@ -448,14 +435,13 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getPassword() { return password; } @@ -473,14 +459,13 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPatternWithDigits() { return patternWithDigits; } @@ -498,14 +483,13 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPatternWithDigitsAndDelimiter() { return patternWithDigitsAndDelimiter; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/GrandparentAnimal.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/GrandparentAnimal.java index 77b2c1aca22..25921f739fb 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/GrandparentAnimal.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/GrandparentAnimal.java @@ -62,14 +62,13 @@ public class GrandparentAnimal { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getPetType() { return petType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index c297606be7d..5274dd8aa6d 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -57,14 +57,13 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } @@ -72,14 +71,13 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getFoo() { return foo; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 7ee718a461e..5f0c4990958 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -52,13 +52,12 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore - public String getNullableMessage() { return nullableMessage.orElse(null); } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java index be0d5525792..118d19cb7ba 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java @@ -52,14 +52,13 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MapTest.java index a904f8483e8..8772450981e 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MapTest.java @@ -105,14 +105,13 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map> getMapMapOfString() { return mapMapOfString; } @@ -138,14 +137,13 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMapOfEnumString() { return mapOfEnumString; } @@ -171,14 +169,13 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getDirectMap() { return directMap; } @@ -204,14 +201,13 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getIndirectMap() { return indirectMap; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 9c15bbf1bd2..b5df1680067 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -61,14 +61,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public UUID getUuid() { return uuid; } @@ -86,14 +85,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getDateTime() { return dateTime; } @@ -119,14 +117,13 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Map getMap() { return map; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Model200Response.java index b1a77447054..07181fcedc9 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Model200Response.java @@ -52,14 +52,13 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getName() { return name; } @@ -77,14 +76,13 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getPropertyClass() { return propertyClass; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 1a553b98667..6822df2c2f3 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -56,14 +56,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getCode() { return code; } @@ -81,14 +80,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getType() { return type; } @@ -106,14 +104,13 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getMessage() { return message; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelFile.java index 9df68eab309..6a444a44d95 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelFile.java @@ -48,14 +48,13 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSourceURI() { return sourceURI; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelList.java index 8a375e98ff2..9e159d761cc 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelList.java @@ -48,14 +48,13 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String get123list() { return _123list; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelReturn.java index 42e7e420175..94d4b3b8283 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -48,14 +48,13 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getReturn() { return _return; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Name.java index da3a59b01b2..4e8892fd448 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Name.java @@ -70,14 +70,13 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public Integer getName() { return name; } @@ -90,14 +89,13 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getSnakeCase() { return snakeCase; } @@ -110,14 +108,13 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getProperty() { return property; } @@ -130,14 +127,13 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer get123number() { return _123number; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NullableClass.java index a568d2b48a0..3a0fcf85679 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NullableClass.java @@ -107,13 +107,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Integer getIntegerProp() { return integerProp.orElse(null); } @@ -140,13 +139,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public BigDecimal getNumberProp() { return numberProp.orElse(null); } @@ -173,13 +171,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Boolean getBooleanProp() { return booleanProp.orElse(null); } @@ -206,13 +203,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public String getStringProp() { return stringProp.orElse(null); } @@ -239,13 +235,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public LocalDate getDateProp() { return dateProp.orElse(null); } @@ -272,13 +267,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public OffsetDateTime getDatetimeProp() { return datetimeProp.orElse(null); } @@ -317,13 +311,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayNullableProp() { return arrayNullableProp.orElse(null); } @@ -362,13 +355,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public List getArrayAndItemsNullableProp() { return arrayAndItemsNullableProp.orElse(null); } @@ -403,14 +395,13 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getArrayItemsNullable() { return arrayItemsNullable; } @@ -440,13 +431,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Map getObjectNullableProp() { return objectNullableProp.orElse(null); } @@ -485,13 +475,12 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore - public Map getObjectAndItemsNullableProp() { return objectAndItemsNullableProp.orElse(null); } @@ -526,14 +515,13 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) - public Map getObjectItemsNullable() { return objectItemsNullable; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NumberOnly.java index 121fb9b74cf..c5826eff529 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -49,14 +49,13 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getJustNumber() { return justNumber; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 06c7298c78d..ad15dc8d484 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -64,14 +64,13 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getUuid() { return uuid; } @@ -89,16 +88,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getId() { return id; } @@ -116,16 +114,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public DeprecatedObject getDeprecatedRef() { return deprecatedRef; } @@ -151,16 +148,15 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getBars() { return bars; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Order.java index 152d9fd2033..93e2aa5c083 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Order.java @@ -106,14 +106,13 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -131,14 +130,13 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getPetId() { return petId; } @@ -156,14 +154,13 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Integer getQuantity() { return quantity; } @@ -181,14 +178,13 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public OffsetDateTime getShipDate() { return shipDate; } @@ -206,14 +202,13 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } @@ -231,14 +226,13 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getComplete() { return complete; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/OuterComposite.java index c78c4e813ea..7a4f1a950f8 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -57,14 +57,13 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public BigDecimal getMyNumber() { return myNumber; } @@ -82,14 +81,13 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getMyString() { return myString; } @@ -107,14 +105,13 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Boolean getMyBoolean() { return myBoolean; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Pet.java index 0393f5f4de4..34f167faba0 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Pet.java @@ -109,14 +109,13 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -134,14 +133,13 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Category getCategory() { return category; } @@ -159,14 +157,13 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { return name; } @@ -192,14 +189,13 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public List getPhotoUrls() { return photoUrls; } @@ -225,14 +221,13 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getTags() { return tags; } @@ -250,14 +245,13 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public StatusEnum getStatus() { return status; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java index bd03d5cd6f0..1b937afb6d0 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java @@ -48,14 +48,13 @@ public class QuadrilateralInterface { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index dc5ff8182c5..46e9cfb09a5 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -55,14 +55,13 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBar() { return bar; } @@ -75,14 +74,13 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getBaz() { return baz; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ScaleneTriangle.java index 28d1f933f6d..daa09027431 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ScaleneTriangle.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ScaleneTriangle.java @@ -52,14 +52,13 @@ public class ScaleneTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class ScaleneTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getTriangleType() { return triangleType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ShapeInterface.java index afab07f765a..67561fc4c84 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ShapeInterface.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/ShapeInterface.java @@ -48,14 +48,13 @@ public class ShapeInterface { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java index 9d08a07b099..a3eb8422313 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java @@ -52,14 +52,13 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getShapeType() { return shapeType; } @@ -77,14 +76,13 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getQuadrilateralType() { return quadrilateralType; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SpecialModelName.java index c0bbda3f894..036d1093bab 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -52,14 +52,13 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long get$SpecialPropertyName() { return $specialPropertyName; } @@ -77,14 +76,13 @@ public class SpecialModelName { return this; } - /** + /** * Get specialModelName * @return specialModelName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SPECIAL_MODEL_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getSpecialModelName() { return specialModelName; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Tag.java index fce946808a9..254ad80812a 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/Tag.java @@ -52,14 +52,13 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Long getId() { return id; } @@ -77,14 +76,13 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public String getName() { return name; } diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index bbd7e8f66fb..6a6ad21a8ee 100644 --- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -54,14 +54,13 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public TypeEnum getType() { return type; } @@ -120,14 +119,13 @@ public class Zebra extends HashMap { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getClassName() { return className; } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AllOfSimpleModel.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AllOfSimpleModel.java index 646fb83384c..7bafc997448 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AllOfSimpleModel.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AllOfSimpleModel.java @@ -73,10 +73,10 @@ public class AllOfSimpleModel { return this; } - /** + /** * Get arrayOfStrings * @return arrayOfStrings - **/ + */ @javax.annotation.Nonnull public List getArrayOfStrings() { return arrayOfStrings; @@ -185,12 +185,12 @@ public class AllOfSimpleModel { openapiRequiredFields.add("arrayOfStrings"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AllOfSimpleModel - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AllOfSimpleModel + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AllOfSimpleModel.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -285,22 +285,22 @@ public class AllOfSimpleModel { } } - /** - * Create an instance of AllOfSimpleModel given an JSON string - * - * @param jsonString JSON string - * @return An instance of AllOfSimpleModel - * @throws IOException if the JSON string is invalid with respect to AllOfSimpleModel - */ + /** + * Create an instance of AllOfSimpleModel given an JSON string + * + * @param jsonString JSON string + * @return An instance of AllOfSimpleModel + * @throws IOException if the JSON string is invalid with respect to AllOfSimpleModel + */ public static AllOfSimpleModel fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AllOfSimpleModel.class); } - /** - * Convert an instance of AllOfSimpleModel to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AllOfSimpleModel to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Animal.java index 03ff144d267..a8e3301c75e 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Animal.java @@ -68,10 +68,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -87,10 +87,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -202,12 +202,12 @@ public class Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Animal - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Animal + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Animal.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -229,22 +229,22 @@ public class Animal { } - /** - * Create an instance of Animal given an JSON string - * - * @param jsonString JSON string - * @return An instance of Animal - * @throws IOException if the JSON string is invalid with respect to Animal - */ + /** + * Create an instance of Animal given an JSON string + * + * @param jsonString JSON string + * @return An instance of Animal + * @throws IOException if the JSON string is invalid with respect to Animal + */ public static Animal fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Animal.class); } - /** - * Convert an instance of Animal to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Animal to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AnyTypeTest.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AnyTypeTest.java index 2364d0a0bf4..ae76ee50e4a 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AnyTypeTest.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/AnyTypeTest.java @@ -74,10 +74,10 @@ public class AnyTypeTest { return this; } - /** + /** * Get anyTypeProperty * @return anyTypeProperty - **/ + */ @javax.annotation.Nullable public Object getAnyTypeProperty() { return anyTypeProperty; @@ -101,10 +101,10 @@ public class AnyTypeTest { return this; } - /** + /** * test array in 3.1 spec * @return arrayProp - **/ + */ @javax.annotation.Nullable public List getArrayProp() { return arrayProp; @@ -128,10 +128,10 @@ public class AnyTypeTest { return this; } - /** + /** * An item that was added to the queue. * @return refArrayPrefixItems - **/ + */ @javax.annotation.Nullable public List getRefArrayPrefixItems() { return refArrayPrefixItems; @@ -256,12 +256,12 @@ public class AnyTypeTest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AnyTypeTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AnyTypeTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AnyTypeTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -351,22 +351,22 @@ public class AnyTypeTest { } } - /** - * Create an instance of AnyTypeTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of AnyTypeTest - * @throws IOException if the JSON string is invalid with respect to AnyTypeTest - */ + /** + * Create an instance of AnyTypeTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of AnyTypeTest + * @throws IOException if the JSON string is invalid with respect to AnyTypeTest + */ public static AnyTypeTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AnyTypeTest.class); } - /** - * Convert an instance of AnyTypeTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AnyTypeTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ArrayOfSameRef.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ArrayOfSameRef.java index 014103fdacd..4eb7f3f7a76 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ArrayOfSameRef.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ArrayOfSameRef.java @@ -82,10 +82,10 @@ public class ArrayOfSameRef { return this; } - /** + /** * Get arrayFooOne * @return arrayFooOne - **/ + */ @javax.annotation.Nullable public List getArrayFooOne() { return arrayFooOne; @@ -109,10 +109,10 @@ public class ArrayOfSameRef { return this; } - /** + /** * Get arrayFooTwo * @return arrayFooTwo - **/ + */ @javax.annotation.Nullable public List getArrayFooTwo() { return arrayFooTwo; @@ -136,10 +136,10 @@ public class ArrayOfSameRef { return this; } - /** + /** * Get arrayFooThree * @return arrayFooThree - **/ + */ @javax.annotation.Nullable public List getArrayFooThree() { return arrayFooThree; @@ -253,12 +253,12 @@ public class ArrayOfSameRef { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfSameRef - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfSameRef + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfSameRef.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -382,22 +382,22 @@ public class ArrayOfSameRef { } } - /** - * Create an instance of ArrayOfSameRef given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfSameRef - * @throws IOException if the JSON string is invalid with respect to ArrayOfSameRef - */ + /** + * Create an instance of ArrayOfSameRef given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfSameRef + * @throws IOException if the JSON string is invalid with respect to ArrayOfSameRef + */ public static ArrayOfSameRef fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfSameRef.class); } - /** - * Convert an instance of ArrayOfSameRef to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfSameRef to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Cat.java index fda8821bb7d..c567118b69f 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Cat.java @@ -65,10 +65,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { return declawed; @@ -181,12 +181,12 @@ public class Cat extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Cat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Cat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Cat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -274,22 +274,22 @@ public class Cat extends Animal { } } - /** - * Create an instance of Cat given an JSON string - * - * @param jsonString JSON string - * @return An instance of Cat - * @throws IOException if the JSON string is invalid with respect to Cat - */ + /** + * Create an instance of Cat given an JSON string + * + * @param jsonString JSON string + * @return An instance of Cat + * @throws IOException if the JSON string is invalid with respect to Cat + */ public static Cat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Cat.class); } - /** - * Convert an instance of Cat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Cat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Category.java index d44eef955c1..88be2276920 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference1.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference1.java index ed814128840..c2596c969cf 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference1.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference1.java @@ -64,10 +64,10 @@ public class CircularReference1 { return this; } - /** + /** * Get prop1 * @return prop1 - **/ + */ @javax.annotation.Nullable public CircularReference2 getProp1() { return prop1; @@ -175,12 +175,12 @@ public class CircularReference1 { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to CircularReference1 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to CircularReference1 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!CircularReference1.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class CircularReference1 { } } - /** - * Create an instance of CircularReference1 given an JSON string - * - * @param jsonString JSON string - * @return An instance of CircularReference1 - * @throws IOException if the JSON string is invalid with respect to CircularReference1 - */ + /** + * Create an instance of CircularReference1 given an JSON string + * + * @param jsonString JSON string + * @return An instance of CircularReference1 + * @throws IOException if the JSON string is invalid with respect to CircularReference1 + */ public static CircularReference1 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, CircularReference1.class); } - /** - * Convert an instance of CircularReference1 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of CircularReference1 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference2.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference2.java index 0b7f348693a..c6d96f39918 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference2.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference2.java @@ -64,10 +64,10 @@ public class CircularReference2 { return this; } - /** + /** * Get prop1 * @return prop1 - **/ + */ @javax.annotation.Nullable public CircularReference3 getProp1() { return prop1; @@ -175,12 +175,12 @@ public class CircularReference2 { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to CircularReference2 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to CircularReference2 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!CircularReference2.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class CircularReference2 { } } - /** - * Create an instance of CircularReference2 given an JSON string - * - * @param jsonString JSON string - * @return An instance of CircularReference2 - * @throws IOException if the JSON string is invalid with respect to CircularReference2 - */ + /** + * Create an instance of CircularReference2 given an JSON string + * + * @param jsonString JSON string + * @return An instance of CircularReference2 + * @throws IOException if the JSON string is invalid with respect to CircularReference2 + */ public static CircularReference2 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, CircularReference2.class); } - /** - * Convert an instance of CircularReference2 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of CircularReference2 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference3.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference3.java index 97731939cbc..9f2399442ec 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference3.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/CircularReference3.java @@ -64,10 +64,10 @@ public class CircularReference3 { return this; } - /** + /** * Get prop1 * @return prop1 - **/ + */ @javax.annotation.Nullable public CircularReference1 getProp1() { return prop1; @@ -175,12 +175,12 @@ public class CircularReference3 { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to CircularReference3 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to CircularReference3 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!CircularReference3.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class CircularReference3 { } } - /** - * Create an instance of CircularReference3 given an JSON string - * - * @param jsonString JSON string - * @return An instance of CircularReference3 - * @throws IOException if the JSON string is invalid with respect to CircularReference3 - */ + /** + * Create an instance of CircularReference3 given an JSON string + * + * @param jsonString JSON string + * @return An instance of CircularReference3 + * @throws IOException if the JSON string is invalid with respect to CircularReference3 + */ public static CircularReference3 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, CircularReference3.class); } - /** - * Convert an instance of CircularReference3 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of CircularReference3 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Dog.java index b7b6ae912cc..ac0c6f6c267 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Dog.java @@ -65,10 +65,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { return breed; @@ -181,12 +181,12 @@ public class Dog extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Dog - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Dog + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Dog.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -274,22 +274,22 @@ public class Dog extends Animal { } } - /** - * Create an instance of Dog given an JSON string - * - * @param jsonString JSON string - * @return An instance of Dog - * @throws IOException if the JSON string is invalid with respect to Dog - */ + /** + * Create an instance of Dog given an JSON string + * + * @param jsonString JSON string + * @return An instance of Dog + * @throws IOException if the JSON string is invalid with respect to Dog + */ public static Dog fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Dog.class); } - /** - * Convert an instance of Dog to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Dog to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 4ea1bf010a4..4c14d2d89b8 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -226,12 +226,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -319,22 +319,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Order.java index 42e5eb284a6..bd8d219dcc7 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -359,12 +359,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -453,22 +453,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Pet.java index d841f322fda..71e425deb93 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Pet.java @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -385,12 +385,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -513,22 +513,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/SimpleModelWithArrayProperty.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/SimpleModelWithArrayProperty.java index 06c92a5f08c..4ad6a2c2b1e 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/SimpleModelWithArrayProperty.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/SimpleModelWithArrayProperty.java @@ -73,10 +73,10 @@ public class SimpleModelWithArrayProperty { return this; } - /** + /** * Get arrayOfStrings * @return arrayOfStrings - **/ + */ @javax.annotation.Nonnull public List getArrayOfStrings() { return arrayOfStrings; @@ -185,12 +185,12 @@ public class SimpleModelWithArrayProperty { openapiRequiredFields.add("arrayOfStrings"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SimpleModelWithArrayProperty - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SimpleModelWithArrayProperty + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SimpleModelWithArrayProperty.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -285,22 +285,22 @@ public class SimpleModelWithArrayProperty { } } - /** - * Create an instance of SimpleModelWithArrayProperty given an JSON string - * - * @param jsonString JSON string - * @return An instance of SimpleModelWithArrayProperty - * @throws IOException if the JSON string is invalid with respect to SimpleModelWithArrayProperty - */ + /** + * Create an instance of SimpleModelWithArrayProperty given an JSON string + * + * @param jsonString JSON string + * @return An instance of SimpleModelWithArrayProperty + * @throws IOException if the JSON string is invalid with respect to SimpleModelWithArrayProperty + */ public static SimpleModelWithArrayProperty fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SimpleModelWithArrayProperty.class); } - /** - * Convert an instance of SimpleModelWithArrayProperty to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SimpleModelWithArrayProperty to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Tag.java index 01f321916d5..3e04f184a3d 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/User.java index d3c9d69da4b..68c8321d11b 100644 --- a/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-3.1/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -356,12 +356,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -461,22 +461,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Category.java index d44eef955c1..88be2276920 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 4ea1bf010a4..4c14d2d89b8 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -226,12 +226,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -319,22 +319,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Order.java index 42e5eb284a6..bd8d219dcc7 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -359,12 +359,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -453,22 +453,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Pet.java index d841f322fda..71e425deb93 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Pet.java @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -385,12 +385,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -513,22 +513,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Tag.java index 01f321916d5..3e04f184a3d 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/User.java index d3c9d69da4b..68c8321d11b 100644 --- a/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-awsv4signature/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -356,12 +356,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -461,22 +461,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index 9ec03c8e97a..33c079cd71d 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -63,10 +63,10 @@ public class AdditionalPropertiesAnyType { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -174,12 +174,12 @@ public class AdditionalPropertiesAnyType { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesAnyType - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesAnyType + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesAnyType.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class AdditionalPropertiesAnyType { } } - /** - * Create an instance of AdditionalPropertiesAnyType given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesAnyType - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesAnyType - */ + /** + * Create an instance of AdditionalPropertiesAnyType given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesAnyType + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesAnyType + */ public static AdditionalPropertiesAnyType fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesAnyType.class); } - /** - * Convert an instance of AdditionalPropertiesAnyType to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesAnyType to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index cc08c00c246..95a5245e5b2 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -64,10 +64,10 @@ public class AdditionalPropertiesArray { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -175,12 +175,12 @@ public class AdditionalPropertiesArray { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesArray - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesArray + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesArray.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -265,22 +265,22 @@ public class AdditionalPropertiesArray { } } - /** - * Create an instance of AdditionalPropertiesArray given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesArray - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesArray - */ + /** + * Create an instance of AdditionalPropertiesArray given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesArray + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesArray + */ public static AdditionalPropertiesArray fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesArray.class); } - /** - * Convert an instance of AdditionalPropertiesArray to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesArray to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 5ac973bd791..bec21f7dc5b 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -63,10 +63,10 @@ public class AdditionalPropertiesBoolean { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -174,12 +174,12 @@ public class AdditionalPropertiesBoolean { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesBoolean - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesBoolean + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesBoolean.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class AdditionalPropertiesBoolean { } } - /** - * Create an instance of AdditionalPropertiesBoolean given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesBoolean - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesBoolean - */ + /** + * Create an instance of AdditionalPropertiesBoolean given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesBoolean + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesBoolean + */ public static AdditionalPropertiesBoolean fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesBoolean.class); } - /** - * Convert an instance of AdditionalPropertiesBoolean to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesBoolean to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 488b46c7fa5..58f785f25ae 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -115,10 +115,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable public Map getMapString() { return mapString; @@ -142,10 +142,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable public Map getMapNumber() { return mapNumber; @@ -169,10 +169,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable public Map getMapInteger() { return mapInteger; @@ -196,10 +196,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable public Map getMapBoolean() { return mapBoolean; @@ -223,10 +223,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable public Map> getMapArrayInteger() { return mapArrayInteger; @@ -250,10 +250,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapArrayAnytype() { return mapArrayAnytype; @@ -277,10 +277,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable public Map> getMapMapString() { return mapMapString; @@ -304,10 +304,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapMapAnytype() { return mapMapAnytype; @@ -323,10 +323,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { return anytype1; @@ -342,10 +342,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable public Object getAnytype2() { return anytype2; @@ -361,10 +361,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable public Object getAnytype3() { return anytype3; @@ -456,12 +456,12 @@ public class AdditionalPropertiesClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -508,22 +508,22 @@ public class AdditionalPropertiesClass { } } - /** - * Create an instance of AdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass - */ + /** + * Create an instance of AdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass + */ public static AdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesClass.class); } - /** - * Convert an instance of AdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 24c9c1dab0c..b9c6648f3f7 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -63,10 +63,10 @@ public class AdditionalPropertiesInteger { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -174,12 +174,12 @@ public class AdditionalPropertiesInteger { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesInteger - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesInteger + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesInteger.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class AdditionalPropertiesInteger { } } - /** - * Create an instance of AdditionalPropertiesInteger given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesInteger - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesInteger - */ + /** + * Create an instance of AdditionalPropertiesInteger given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesInteger + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesInteger + */ public static AdditionalPropertiesInteger fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesInteger.class); } - /** - * Convert an instance of AdditionalPropertiesInteger to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesInteger to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index a347327e6a1..358be419611 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -64,10 +64,10 @@ public class AdditionalPropertiesNumber { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -175,12 +175,12 @@ public class AdditionalPropertiesNumber { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesNumber - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesNumber + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesNumber.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -265,22 +265,22 @@ public class AdditionalPropertiesNumber { } } - /** - * Create an instance of AdditionalPropertiesNumber given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesNumber - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesNumber - */ + /** + * Create an instance of AdditionalPropertiesNumber given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesNumber + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesNumber + */ public static AdditionalPropertiesNumber fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesNumber.class); } - /** - * Convert an instance of AdditionalPropertiesNumber to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesNumber to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 4e3b6fad50c..9f7948eef7f 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -64,10 +64,10 @@ public class AdditionalPropertiesObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -175,12 +175,12 @@ public class AdditionalPropertiesObject { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesObject - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesObject + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesObject.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -265,22 +265,22 @@ public class AdditionalPropertiesObject { } } - /** - * Create an instance of AdditionalPropertiesObject given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesObject - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesObject - */ + /** + * Create an instance of AdditionalPropertiesObject given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesObject + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesObject + */ public static AdditionalPropertiesObject fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesObject.class); } - /** - * Convert an instance of AdditionalPropertiesObject to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesObject to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 573df50dd14..e51142db5a8 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -63,10 +63,10 @@ public class AdditionalPropertiesString { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -174,12 +174,12 @@ public class AdditionalPropertiesString { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesString - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesString + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesString.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class AdditionalPropertiesString { } } - /** - * Create an instance of AdditionalPropertiesString given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesString - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesString - */ + /** + * Create an instance of AdditionalPropertiesString given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesString + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesString + */ public static AdditionalPropertiesString fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesString.class); } - /** - * Convert an instance of AdditionalPropertiesString to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesString to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Animal.java index 11c01ed73f5..7b32fc9d636 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Animal.java @@ -68,10 +68,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -87,10 +87,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -156,12 +156,12 @@ public class Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Animal - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Animal + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Animal.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -186,22 +186,22 @@ public class Animal { } - /** - * Create an instance of Animal given an JSON string - * - * @param jsonString JSON string - * @return An instance of Animal - * @throws IOException if the JSON string is invalid with respect to Animal - */ + /** + * Create an instance of Animal given an JSON string + * + * @param jsonString JSON string + * @return An instance of Animal + * @throws IOException if the JSON string is invalid with respect to Animal + */ public static Animal fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Animal.class); } - /** - * Convert an instance of Animal to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Animal to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index e9c9f46dfca..44a1443bca4 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -74,10 +74,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { return arrayArrayNumber; @@ -139,12 +139,12 @@ public class ArrayOfArrayOfNumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -195,22 +195,22 @@ public class ArrayOfArrayOfNumberOnly { } } - /** - * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static ArrayOfArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 04acc855c8b..214db5beec1 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -74,10 +74,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { return arrayNumber; @@ -139,12 +139,12 @@ public class ArrayOfNumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -195,22 +195,22 @@ public class ArrayOfNumberOnly { } } - /** - * Create an instance of ArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly + */ public static ArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayTest.java index ad20f7916cc..4e70c39850b 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -82,10 +82,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { return arrayOfString; @@ -109,10 +109,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { return arrayArrayOfInteger; @@ -136,10 +136,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { return arrayArrayOfModel; @@ -207,12 +207,12 @@ public class ArrayTest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -271,22 +271,22 @@ public class ArrayTest { } } - /** - * Create an instance of ArrayTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayTest - * @throws IOException if the JSON string is invalid with respect to ArrayTest - */ + /** + * Create an instance of ArrayTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayTest + * @throws IOException if the JSON string is invalid with respect to ArrayTest + */ public static ArrayTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayTest.class); } - /** - * Convert an instance of ArrayTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/BigCat.java index 4805c8b9d10..082ee74ee0f 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/BigCat.java @@ -121,10 +121,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable public KindEnum getKind() { return kind; @@ -192,12 +192,12 @@ public class BigCat extends Cat { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to BigCat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to BigCat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!BigCat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -250,22 +250,22 @@ public class BigCat extends Cat { } } - /** - * Create an instance of BigCat given an JSON string - * - * @param jsonString JSON string - * @return An instance of BigCat - * @throws IOException if the JSON string is invalid with respect to BigCat - */ + /** + * Create an instance of BigCat given an JSON string + * + * @param jsonString JSON string + * @return An instance of BigCat + * @throws IOException if the JSON string is invalid with respect to BigCat + */ public static BigCat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, BigCat.class); } - /** - * Convert an instance of BigCat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of BigCat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Capitalization.java index 911f2f02e19..6e73225d193 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Capitalization.java @@ -83,10 +83,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { return smallCamel; @@ -102,10 +102,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { return capitalCamel; @@ -121,10 +121,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { return smallSnake; @@ -140,10 +140,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { return capitalSnake; @@ -159,10 +159,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { return scAETHFlowPoints; @@ -178,10 +178,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { return ATT_NAME; @@ -258,12 +258,12 @@ public class Capitalization { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Capitalization - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Capitalization + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Capitalization.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -328,22 +328,22 @@ public class Capitalization { } } - /** - * Create an instance of Capitalization given an JSON string - * - * @param jsonString JSON string - * @return An instance of Capitalization - * @throws IOException if the JSON string is invalid with respect to Capitalization - */ + /** + * Create an instance of Capitalization given an JSON string + * + * @param jsonString JSON string + * @return An instance of Capitalization + * @throws IOException if the JSON string is invalid with respect to Capitalization + */ public static Capitalization fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Capitalization.class); } - /** - * Convert an instance of Capitalization to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Capitalization to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Cat.java index 47aad2816df..d4f859d96a5 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Cat.java @@ -65,10 +65,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { return declawed; @@ -135,12 +135,12 @@ public class Cat extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Cat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Cat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Cat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -159,22 +159,22 @@ public class Cat extends Animal { } - /** - * Create an instance of Cat given an JSON string - * - * @param jsonString JSON string - * @return An instance of Cat - * @throws IOException if the JSON string is invalid with respect to Cat - */ + /** + * Create an instance of Cat given an JSON string + * + * @param jsonString JSON string + * @return An instance of Cat + * @throws IOException if the JSON string is invalid with respect to Cat + */ public static Cat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Cat.class); } - /** - * Convert an instance of Cat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Cat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Category.java index 3596e3706f7..4b1d62cb690 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -155,12 +155,12 @@ public class Category { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -217,22 +217,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ClassModel.java index 598d6e8f512..014668b607d 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ClassModel.java @@ -63,10 +63,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -128,12 +128,12 @@ public class ClassModel { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ClassModel - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ClassModel + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ClassModel.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -183,22 +183,22 @@ public class ClassModel { } } - /** - * Create an instance of ClassModel given an JSON string - * - * @param jsonString JSON string - * @return An instance of ClassModel - * @throws IOException if the JSON string is invalid with respect to ClassModel - */ + /** + * Create an instance of ClassModel given an JSON string + * + * @param jsonString JSON string + * @return An instance of ClassModel + * @throws IOException if the JSON string is invalid with respect to ClassModel + */ public static ClassModel fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ClassModel.class); } - /** - * Convert an instance of ClassModel to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ClassModel to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Client.java index 279b74c612f..2e7522a81bc 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Client.java @@ -63,10 +63,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { return client; @@ -128,12 +128,12 @@ public class Client { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Client - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Client + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Client.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -183,22 +183,22 @@ public class Client { } } - /** - * Create an instance of Client given an JSON string - * - * @param jsonString JSON string - * @return An instance of Client - * @throws IOException if the JSON string is invalid with respect to Client - */ + /** + * Create an instance of Client given an JSON string + * + * @param jsonString JSON string + * @return An instance of Client + * @throws IOException if the JSON string is invalid with respect to Client + */ public static Client fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Client.class); } - /** - * Convert an instance of Client to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Client to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Dog.java index c462910f5a3..1ddc41dafc6 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Dog.java @@ -65,10 +65,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { return breed; @@ -135,12 +135,12 @@ public class Dog extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Dog - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Dog + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Dog.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -193,22 +193,22 @@ public class Dog extends Animal { } } - /** - * Create an instance of Dog given an JSON string - * - * @param jsonString JSON string - * @return An instance of Dog - * @throws IOException if the JSON string is invalid with respect to Dog - */ + /** + * Create an instance of Dog given an JSON string + * + * @param jsonString JSON string + * @return An instance of Dog + * @throws IOException if the JSON string is invalid with respect to Dog + */ public static Dog fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Dog.class); } - /** - * Convert an instance of Dog to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Dog to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumArrays.java index 780b2bc7b18..23d594105ae 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -173,10 +173,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { return justSymbol; @@ -200,10 +200,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { return arrayEnum; @@ -268,12 +268,12 @@ public class EnumArrays { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumArrays - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumArrays + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumArrays.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -331,22 +331,22 @@ public class EnumArrays { } } - /** - * Create an instance of EnumArrays given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumArrays - * @throws IOException if the JSON string is invalid with respect to EnumArrays - */ + /** + * Create an instance of EnumArrays given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumArrays + * @throws IOException if the JSON string is invalid with respect to EnumArrays + */ public static EnumArrays fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumArrays.class); } - /** - * Convert an instance of EnumArrays to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumArrays to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumTest.java index eebd92e7a77..ec4a14ebfca 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/EnumTest.java @@ -292,10 +292,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { return enumString; @@ -311,10 +311,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { return enumStringRequired; @@ -330,10 +330,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { return enumInteger; @@ -349,10 +349,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { return enumNumber; @@ -368,10 +368,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { return outerEnum; @@ -446,12 +446,12 @@ public class EnumTest { openapiRequiredFields.add("enum_string_required"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -529,22 +529,22 @@ public class EnumTest { } } - /** - * Create an instance of EnumTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumTest - * @throws IOException if the JSON string is invalid with respect to EnumTest - */ + /** + * Create an instance of EnumTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumTest + * @throws IOException if the JSON string is invalid with respect to EnumTest + */ public static EnumTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumTest.class); } - /** - * Convert an instance of EnumTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 505fd92e74d..864aab7928a 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -70,10 +70,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { return _file; @@ -97,10 +97,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { return files; @@ -165,12 +165,12 @@ public class FileSchemaTestClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FileSchemaTestClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -235,22 +235,22 @@ public class FileSchemaTestClass { } } - /** - * Create an instance of FileSchemaTestClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of FileSchemaTestClass - * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass - */ + /** + * Create an instance of FileSchemaTestClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of FileSchemaTestClass + * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass + */ public static FileSchemaTestClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FileSchemaTestClass.class); } - /** - * Convert an instance of FileSchemaTestClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FileSchemaTestClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FormatTest.java index 7b6880b4f2a..39b9609511c 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/FormatTest.java @@ -120,12 +120,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { return integer; @@ -141,12 +141,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { return int32; @@ -162,10 +162,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { return int64; @@ -181,12 +181,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { return number; @@ -202,12 +202,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { return _float; @@ -223,12 +223,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { return _double; @@ -244,10 +244,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { return string; @@ -263,10 +263,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { return _byte; @@ -282,10 +282,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { return binary; @@ -301,10 +301,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { return date; @@ -320,10 +320,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -339,10 +339,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -358,10 +358,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { return password; @@ -377,10 +377,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable public BigDecimal getBigDecimal() { return bigDecimal; @@ -485,12 +485,12 @@ public class FormatTest { openapiRequiredFields.add("password"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FormatTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FormatTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FormatTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -553,22 +553,22 @@ public class FormatTest { } } - /** - * Create an instance of FormatTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of FormatTest - * @throws IOException if the JSON string is invalid with respect to FormatTest - */ + /** + * Create an instance of FormatTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of FormatTest + * @throws IOException if the JSON string is invalid with respect to FormatTest + */ public static FormatTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FormatTest.class); } - /** - * Convert an instance of FormatTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FormatTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 9e44aafe21f..0d8c8496914 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -71,10 +71,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -82,10 +82,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { return foo; @@ -147,12 +147,12 @@ public class HasOnlyReadOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!HasOnlyReadOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -205,22 +205,22 @@ public class HasOnlyReadOnly { } } - /** - * Create an instance of HasOnlyReadOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of HasOnlyReadOnly - * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly - */ + /** + * Create an instance of HasOnlyReadOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of HasOnlyReadOnly + * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly + */ public static HasOnlyReadOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, HasOnlyReadOnly.class); } - /** - * Convert an instance of HasOnlyReadOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of HasOnlyReadOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MapTest.java index 82741dab072..b452cb027b0 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MapTest.java @@ -137,10 +137,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { return mapMapOfString; @@ -164,10 +164,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { return mapOfEnumString; @@ -191,10 +191,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { return directMap; @@ -218,10 +218,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { return indirectMap; @@ -292,12 +292,12 @@ public class MapTest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MapTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MapTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MapTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -344,22 +344,22 @@ public class MapTest { } } - /** - * Create an instance of MapTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of MapTest - * @throws IOException if the JSON string is invalid with respect to MapTest - */ + /** + * Create an instance of MapTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of MapTest + * @throws IOException if the JSON string is invalid with respect to MapTest + */ public static MapTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MapTest.class); } - /** - * Convert an instance of MapTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MapTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 2ed185103f6..266ce6914f3 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -76,10 +76,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -95,10 +95,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -122,10 +122,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { return map; @@ -193,12 +193,12 @@ public class MixedPropertiesAndAdditionalPropertiesClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MixedPropertiesAndAdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -248,22 +248,22 @@ public class MixedPropertiesAndAdditionalPropertiesClass { } } - /** - * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of MixedPropertiesAndAdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of MixedPropertiesAndAdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static MixedPropertiesAndAdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MixedPropertiesAndAdditionalPropertiesClass.class); } - /** - * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Model200Response.java index 75856d73164..6f40e1c1c19 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Model200Response.java @@ -67,10 +67,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { return name; @@ -86,10 +86,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -154,12 +154,12 @@ public class Model200Response { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Model200Response - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Model200Response + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Model200Response.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Model200Response { } } - /** - * Create an instance of Model200Response given an JSON string - * - * @param jsonString JSON string - * @return An instance of Model200Response - * @throws IOException if the JSON string is invalid with respect to Model200Response - */ + /** + * Create an instance of Model200Response given an JSON string + * + * @param jsonString JSON string + * @return An instance of Model200Response + * @throws IOException if the JSON string is invalid with respect to Model200Response + */ public static Model200Response fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Model200Response.class); } - /** - * Convert an instance of Model200Response to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Model200Response to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 6f7dca456f7..e0c58a22679 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -180,12 +180,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -238,22 +238,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelFile.java index f7ab0854d4f..1a9e735099a 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelFile.java @@ -63,10 +63,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { return sourceURI; @@ -128,12 +128,12 @@ public class ModelFile { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelFile - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelFile + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelFile.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -183,22 +183,22 @@ public class ModelFile { } } - /** - * Create an instance of ModelFile given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelFile - * @throws IOException if the JSON string is invalid with respect to ModelFile - */ + /** + * Create an instance of ModelFile given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelFile + * @throws IOException if the JSON string is invalid with respect to ModelFile + */ public static ModelFile fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelFile.class); } - /** - * Convert an instance of ModelFile to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelFile to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelList.java index ec7d70354dc..c3f578317a4 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelList.java @@ -63,10 +63,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { return _123list; @@ -128,12 +128,12 @@ public class ModelList { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelList - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelList + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelList.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -183,22 +183,22 @@ public class ModelList { } } - /** - * Create an instance of ModelList given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelList - * @throws IOException if the JSON string is invalid with respect to ModelList - */ + /** + * Create an instance of ModelList given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelList + * @throws IOException if the JSON string is invalid with respect to ModelList + */ public static ModelList fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelList.class); } - /** - * Convert an instance of ModelList to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelList to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelReturn.java index 90b87307494..020866cbb70 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -63,10 +63,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { return _return; @@ -128,12 +128,12 @@ public class ModelReturn { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelReturn - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelReturn + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelReturn.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -180,22 +180,22 @@ public class ModelReturn { } } - /** - * Create an instance of ModelReturn given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelReturn - * @throws IOException if the JSON string is invalid with respect to ModelReturn - */ + /** + * Create an instance of ModelReturn given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelReturn + * @throws IOException if the JSON string is invalid with respect to ModelReturn + */ public static ModelReturn fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelReturn.class); } - /** - * Convert an instance of ModelReturn to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelReturn to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Name.java index 2dd4b93bba0..735865162b2 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Name.java @@ -84,10 +84,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { return name; @@ -98,10 +98,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { return snakeCase; @@ -114,10 +114,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { return property; @@ -128,10 +128,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { return _123number; @@ -200,12 +200,12 @@ public class Name { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Name - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Name + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Name.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -262,22 +262,22 @@ public class Name { } } - /** - * Create an instance of Name given an JSON string - * - * @param jsonString JSON string - * @return An instance of Name - * @throws IOException if the JSON string is invalid with respect to Name - */ + /** + * Create an instance of Name given an JSON string + * + * @param jsonString JSON string + * @return An instance of Name + * @throws IOException if the JSON string is invalid with respect to Name + */ public static Name fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Name.class); } - /** - * Convert an instance of Name to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Name to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/NumberOnly.java index 58b6fedae80..227fb2e3514 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -64,10 +64,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { return justNumber; @@ -129,12 +129,12 @@ public class NumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -181,22 +181,22 @@ public class NumberOnly { } } - /** - * Create an instance of NumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of NumberOnly - * @throws IOException if the JSON string is invalid with respect to NumberOnly - */ + /** + * Create an instance of NumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of NumberOnly + * @throws IOException if the JSON string is invalid with respect to NumberOnly + */ public static NumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NumberOnly.class); } - /** - * Convert an instance of NumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Order.java index f10654523bd..0aaa4cc9099 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -313,12 +313,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -372,22 +372,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/OuterComposite.java index c2fbb50eda7..3871c2c6840 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -72,10 +72,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { return myNumber; @@ -91,10 +91,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { return myString; @@ -110,10 +110,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { return myBoolean; @@ -181,12 +181,12 @@ public class OuterComposite { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to OuterComposite - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to OuterComposite + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!OuterComposite.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -236,22 +236,22 @@ public class OuterComposite { } } - /** - * Create an instance of OuterComposite given an JSON string - * - * @param jsonString JSON string - * @return An instance of OuterComposite - * @throws IOException if the JSON string is invalid with respect to OuterComposite - */ + /** + * Create an instance of OuterComposite given an JSON string + * + * @param jsonString JSON string + * @return An instance of OuterComposite + * @throws IOException if the JSON string is invalid with respect to OuterComposite + */ public static OuterComposite fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, OuterComposite.class); } - /** - * Convert an instance of OuterComposite to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of OuterComposite to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Pet.java index ab4ecb42220..32e22f377d7 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Pet.java @@ -143,10 +143,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -162,10 +162,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -181,10 +181,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -208,10 +208,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public Set getPhotoUrls() { return photoUrls; @@ -235,10 +235,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,10 +254,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -336,12 +336,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -429,22 +429,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index fc86546fbce..c4460bb6dfe 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -69,10 +69,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -85,10 +85,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { return baz; @@ -153,12 +153,12 @@ public class ReadOnlyFirst { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ReadOnlyFirst.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -211,22 +211,22 @@ public class ReadOnlyFirst { } } - /** - * Create an instance of ReadOnlyFirst given an JSON string - * - * @param jsonString JSON string - * @return An instance of ReadOnlyFirst - * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst - */ + /** + * Create an instance of ReadOnlyFirst given an JSON string + * + * @param jsonString JSON string + * @return An instance of ReadOnlyFirst + * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst + */ public static ReadOnlyFirst fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ReadOnlyFirst.class); } - /** - * Convert an instance of ReadOnlyFirst to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ReadOnlyFirst to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/SpecialModelName.java index 24c9fb4156c..3839bf48d86 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -63,10 +63,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { return $specialPropertyName; @@ -128,12 +128,12 @@ public class SpecialModelName { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SpecialModelName - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SpecialModelName + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SpecialModelName.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -180,22 +180,22 @@ public class SpecialModelName { } } - /** - * Create an instance of SpecialModelName given an JSON string - * - * @param jsonString JSON string - * @return An instance of SpecialModelName - * @throws IOException if the JSON string is invalid with respect to SpecialModelName - */ + /** + * Create an instance of SpecialModelName given an JSON string + * + * @param jsonString JSON string + * @return An instance of SpecialModelName + * @throws IOException if the JSON string is invalid with respect to SpecialModelName + */ public static SpecialModelName fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SpecialModelName.class); } - /** - * Convert an instance of SpecialModelName to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SpecialModelName to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Tag.java index 9a499f2af36..bef05e8d4a8 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -154,12 +154,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -209,22 +209,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 24d068b3233..6fbe54e82be 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -82,10 +82,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { return stringItem; @@ -101,10 +101,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { return numberItem; @@ -120,10 +120,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { return integerItem; @@ -139,10 +139,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { return boolItem; @@ -166,10 +166,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { return arrayItem; @@ -248,12 +248,12 @@ public class TypeHolderDefault { openapiRequiredFields.add("array_item"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TypeHolderDefault - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TypeHolderDefault + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TypeHolderDefault.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -316,22 +316,22 @@ public class TypeHolderDefault { } } - /** - * Create an instance of TypeHolderDefault given an JSON string - * - * @param jsonString JSON string - * @return An instance of TypeHolderDefault - * @throws IOException if the JSON string is invalid with respect to TypeHolderDefault - */ + /** + * Create an instance of TypeHolderDefault given an JSON string + * + * @param jsonString JSON string + * @return An instance of TypeHolderDefault + * @throws IOException if the JSON string is invalid with respect to TypeHolderDefault + */ public static TypeHolderDefault fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TypeHolderDefault.class); } - /** - * Convert an instance of TypeHolderDefault to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TypeHolderDefault to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderExample.java index d13245433e5..5ef3d57f766 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -86,10 +86,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { return stringItem; @@ -105,10 +105,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { return numberItem; @@ -124,10 +124,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull public Float getFloatItem() { return floatItem; @@ -143,10 +143,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { return integerItem; @@ -162,10 +162,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { return boolItem; @@ -189,10 +189,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { return arrayItem; @@ -275,12 +275,12 @@ public class TypeHolderExample { openapiRequiredFields.add("array_item"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TypeHolderExample - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TypeHolderExample + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TypeHolderExample.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -343,22 +343,22 @@ public class TypeHolderExample { } } - /** - * Create an instance of TypeHolderExample given an JSON string - * - * @param jsonString JSON string - * @return An instance of TypeHolderExample - * @throws IOException if the JSON string is invalid with respect to TypeHolderExample - */ + /** + * Create an instance of TypeHolderExample given an JSON string + * + * @param jsonString JSON string + * @return An instance of TypeHolderExample + * @throws IOException if the JSON string is invalid with respect to TypeHolderExample + */ public static TypeHolderExample fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TypeHolderExample.class); } - /** - * Convert an instance of TypeHolderExample to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TypeHolderExample to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/User.java index 2e7801f6986..24c92c675df 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -310,12 +310,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -380,22 +380,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/XmlItem.java index 4f6e7c1c669..e7c723352f2 100644 --- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/model/XmlItem.java @@ -178,10 +178,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable public String getAttributeString() { return attributeString; @@ -197,10 +197,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getAttributeNumber() { return attributeNumber; @@ -216,10 +216,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable public Integer getAttributeInteger() { return attributeInteger; @@ -235,10 +235,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable public Boolean getAttributeBoolean() { return attributeBoolean; @@ -262,10 +262,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable public List getWrappedArray() { return wrappedArray; @@ -281,10 +281,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable public String getNameString() { return nameString; @@ -300,10 +300,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNameNumber() { return nameNumber; @@ -319,10 +319,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable public Integer getNameInteger() { return nameInteger; @@ -338,10 +338,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNameBoolean() { return nameBoolean; @@ -365,10 +365,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable public List getNameArray() { return nameArray; @@ -392,10 +392,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable public List getNameWrappedArray() { return nameWrappedArray; @@ -411,10 +411,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable public String getPrefixString() { return prefixString; @@ -430,10 +430,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNumber() { return prefixNumber; @@ -449,10 +449,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixInteger() { return prefixInteger; @@ -468,10 +468,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixBoolean() { return prefixBoolean; @@ -495,10 +495,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable public List getPrefixArray() { return prefixArray; @@ -522,10 +522,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixWrappedArray() { return prefixWrappedArray; @@ -541,10 +541,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable public String getNamespaceString() { return namespaceString; @@ -560,10 +560,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNamespaceNumber() { return namespaceNumber; @@ -579,10 +579,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable public Integer getNamespaceInteger() { return namespaceInteger; @@ -598,10 +598,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNamespaceBoolean() { return namespaceBoolean; @@ -625,10 +625,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable public List getNamespaceArray() { return namespaceArray; @@ -652,10 +652,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable public List getNamespaceWrappedArray() { return namespaceWrappedArray; @@ -671,10 +671,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable public String getPrefixNsString() { return prefixNsString; @@ -690,10 +690,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNsNumber() { return prefixNsNumber; @@ -709,10 +709,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixNsInteger() { return prefixNsInteger; @@ -728,10 +728,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixNsBoolean() { return prefixNsBoolean; @@ -755,10 +755,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsArray() { return prefixNsArray; @@ -782,10 +782,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsWrappedArray() { return prefixNsWrappedArray; @@ -931,12 +931,12 @@ public class XmlItem { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to XmlItem - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to XmlItem + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!XmlItem.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -1034,22 +1034,22 @@ public class XmlItem { } } - /** - * Create an instance of XmlItem given an JSON string - * - * @param jsonString JSON string - * @return An instance of XmlItem - * @throws IOException if the JSON string is invalid with respect to XmlItem - */ + /** + * Create an instance of XmlItem given an JSON string + * + * @param jsonString JSON string + * @return An instance of XmlItem + * @throws IOException if the JSON string is invalid with respect to XmlItem + */ public static XmlItem fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, XmlItem.class); } - /** - * Convert an instance of XmlItem to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of XmlItem to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java index d44eef955c1..88be2276920 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 4ea1bf010a4..4c14d2d89b8 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -226,12 +226,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -319,22 +319,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java index 42e5eb284a6..bd8d219dcc7 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -359,12 +359,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -453,22 +453,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java index d841f322fda..71e425deb93 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -385,12 +385,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -513,22 +513,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java index 01f321916d5..3e04f184a3d 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java index d3c9d69da4b..68c8321d11b 100644 --- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -356,12 +356,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -461,22 +461,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Category.java index d44eef955c1..88be2276920 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 4ea1bf010a4..4c14d2d89b8 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -226,12 +226,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -319,22 +319,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Order.java index 42e5eb284a6..bd8d219dcc7 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -359,12 +359,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -453,22 +453,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Pet.java index d841f322fda..71e425deb93 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Pet.java @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -385,12 +385,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -513,22 +513,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases1.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases1.java index a2af2ba9750..efa119dd23a 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases1.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases1.java @@ -143,10 +143,10 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -162,10 +162,10 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -181,10 +181,10 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -208,10 +208,10 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nullable public List getPhotoUrls() { return photoUrls; @@ -235,10 +235,10 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -255,11 +255,11 @@ public class PetWithRequiredNullableCases1 { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -397,12 +397,12 @@ public class PetWithRequiredNullableCases1 { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredNullableCases1 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredNullableCases1 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetWithRequiredNullableCases1.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -525,22 +525,22 @@ public class PetWithRequiredNullableCases1 { } } - /** - * Create an instance of PetWithRequiredNullableCases1 given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetWithRequiredNullableCases1 - * @throws IOException if the JSON string is invalid with respect to PetWithRequiredNullableCases1 - */ + /** + * Create an instance of PetWithRequiredNullableCases1 given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetWithRequiredNullableCases1 + * @throws IOException if the JSON string is invalid with respect to PetWithRequiredNullableCases1 + */ public static PetWithRequiredNullableCases1 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetWithRequiredNullableCases1.class); } - /** - * Convert an instance of PetWithRequiredNullableCases1 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetWithRequiredNullableCases1 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases2.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases2.java index a236e1af033..7d2ee7a697a 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases2.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/PetWithRequiredNullableCases2.java @@ -142,10 +142,10 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -161,10 +161,10 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -180,10 +180,10 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -207,10 +207,10 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -234,10 +234,10 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -254,11 +254,11 @@ public class PetWithRequiredNullableCases2 { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public StatusEnum getStatus() { @@ -385,12 +385,12 @@ public class PetWithRequiredNullableCases2 { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredNullableCases2 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredNullableCases2 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetWithRequiredNullableCases2.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -513,22 +513,22 @@ public class PetWithRequiredNullableCases2 { } } - /** - * Create an instance of PetWithRequiredNullableCases2 given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetWithRequiredNullableCases2 - * @throws IOException if the JSON string is invalid with respect to PetWithRequiredNullableCases2 - */ + /** + * Create an instance of PetWithRequiredNullableCases2 given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetWithRequiredNullableCases2 + * @throws IOException if the JSON string is invalid with respect to PetWithRequiredNullableCases2 + */ public static PetWithRequiredNullableCases2 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetWithRequiredNullableCases2.class); } - /** - * Convert an instance of PetWithRequiredNullableCases2 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetWithRequiredNullableCases2 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Tag.java index 01f321916d5..3e04f184a3d 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/User.java index d3c9d69da4b..68c8321d11b 100644 --- a/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-nullable-required/src/main/java/org/openapitools/client/model/User.java @@ -91,10 +91,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -129,10 +129,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -148,10 +148,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -186,10 +186,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -224,10 +224,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -356,12 +356,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -461,22 +461,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index 6ba77362255..4189b0bfc91 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -65,10 +65,10 @@ public class AdditionalPropertiesAnyType implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -197,12 +197,12 @@ public class AdditionalPropertiesAnyType implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesAnyType - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesAnyType + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesAnyType.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -287,22 +287,22 @@ public class AdditionalPropertiesAnyType implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesAnyType given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesAnyType - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesAnyType - */ + /** + * Create an instance of AdditionalPropertiesAnyType given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesAnyType + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesAnyType + */ public static AdditionalPropertiesAnyType fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesAnyType.class); } - /** - * Convert an instance of AdditionalPropertiesAnyType to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesAnyType to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index fec097d04ee..82647af3452 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -66,10 +66,10 @@ public class AdditionalPropertiesArray implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -198,12 +198,12 @@ public class AdditionalPropertiesArray implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesArray - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesArray + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesArray.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -288,22 +288,22 @@ public class AdditionalPropertiesArray implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesArray given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesArray - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesArray - */ + /** + * Create an instance of AdditionalPropertiesArray given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesArray + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesArray + */ public static AdditionalPropertiesArray fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesArray.class); } - /** - * Convert an instance of AdditionalPropertiesArray to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesArray to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 7a754fe5c59..7a6aec572ed 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -65,10 +65,10 @@ public class AdditionalPropertiesBoolean implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -197,12 +197,12 @@ public class AdditionalPropertiesBoolean implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesBoolean - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesBoolean + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesBoolean.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -287,22 +287,22 @@ public class AdditionalPropertiesBoolean implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesBoolean given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesBoolean - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesBoolean - */ + /** + * Create an instance of AdditionalPropertiesBoolean given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesBoolean + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesBoolean + */ public static AdditionalPropertiesBoolean fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesBoolean.class); } - /** - * Convert an instance of AdditionalPropertiesBoolean to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesBoolean to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 6425d484650..1f2420b9571 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -117,10 +117,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable public Map getMapString() { return mapString; @@ -144,10 +144,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable public Map getMapNumber() { return mapNumber; @@ -171,10 +171,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable public Map getMapInteger() { return mapInteger; @@ -198,10 +198,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable public Map getMapBoolean() { return mapBoolean; @@ -225,10 +225,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable public Map> getMapArrayInteger() { return mapArrayInteger; @@ -252,10 +252,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapArrayAnytype() { return mapArrayAnytype; @@ -279,10 +279,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable public Map> getMapMapString() { return mapMapString; @@ -306,10 +306,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapMapAnytype() { return mapMapAnytype; @@ -325,10 +325,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { return anytype1; @@ -344,10 +344,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable public Object getAnytype2() { return anytype2; @@ -363,10 +363,10 @@ public class AdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable public Object getAnytype3() { return anytype3; @@ -499,12 +499,12 @@ public class AdditionalPropertiesClass implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -551,22 +551,22 @@ public class AdditionalPropertiesClass implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass - */ + /** + * Create an instance of AdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass + */ public static AdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesClass.class); } - /** - * Convert an instance of AdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 1332a9a57b9..cf8cca1b57a 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -65,10 +65,10 @@ public class AdditionalPropertiesInteger implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -197,12 +197,12 @@ public class AdditionalPropertiesInteger implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesInteger - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesInteger + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesInteger.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -287,22 +287,22 @@ public class AdditionalPropertiesInteger implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesInteger given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesInteger - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesInteger - */ + /** + * Create an instance of AdditionalPropertiesInteger given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesInteger + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesInteger + */ public static AdditionalPropertiesInteger fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesInteger.class); } - /** - * Convert an instance of AdditionalPropertiesInteger to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesInteger to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 2b689473d46..ab53b61ad6d 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -66,10 +66,10 @@ public class AdditionalPropertiesNumber implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -198,12 +198,12 @@ public class AdditionalPropertiesNumber implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesNumber - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesNumber + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesNumber.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -288,22 +288,22 @@ public class AdditionalPropertiesNumber implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesNumber given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesNumber - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesNumber - */ + /** + * Create an instance of AdditionalPropertiesNumber given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesNumber + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesNumber + */ public static AdditionalPropertiesNumber fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesNumber.class); } - /** - * Convert an instance of AdditionalPropertiesNumber to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesNumber to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 99ba2bce20d..ee11b833eeb 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -66,10 +66,10 @@ public class AdditionalPropertiesObject implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -198,12 +198,12 @@ public class AdditionalPropertiesObject implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesObject - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesObject + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesObject.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -288,22 +288,22 @@ public class AdditionalPropertiesObject implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesObject given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesObject - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesObject - */ + /** + * Create an instance of AdditionalPropertiesObject given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesObject + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesObject + */ public static AdditionalPropertiesObject fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesObject.class); } - /** - * Convert an instance of AdditionalPropertiesObject to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesObject to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index d66a78c1fdc..918532d27ff 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -65,10 +65,10 @@ public class AdditionalPropertiesString implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -197,12 +197,12 @@ public class AdditionalPropertiesString implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesString - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesString + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesString.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -287,22 +287,22 @@ public class AdditionalPropertiesString implements Parcelable { } } - /** - * Create an instance of AdditionalPropertiesString given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesString - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesString - */ + /** + * Create an instance of AdditionalPropertiesString given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesString + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesString + */ public static AdditionalPropertiesString fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesString.class); } - /** - * Convert an instance of AdditionalPropertiesString to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesString to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Animal.java index fb054336f87..5c0fb78a2e6 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Animal.java @@ -70,10 +70,10 @@ public class Animal implements Parcelable { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -89,10 +89,10 @@ public class Animal implements Parcelable { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -181,12 +181,12 @@ public class Animal implements Parcelable { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Animal - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Animal + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Animal.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -211,22 +211,22 @@ public class Animal implements Parcelable { } - /** - * Create an instance of Animal given an JSON string - * - * @param jsonString JSON string - * @return An instance of Animal - * @throws IOException if the JSON string is invalid with respect to Animal - */ + /** + * Create an instance of Animal given an JSON string + * + * @param jsonString JSON string + * @return An instance of Animal + * @throws IOException if the JSON string is invalid with respect to Animal + */ public static Animal fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Animal.class); } - /** - * Convert an instance of Animal to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Animal to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 46acffee968..85cbc7ee00d 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -76,10 +76,10 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { return arrayArrayNumber; @@ -162,12 +162,12 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -218,22 +218,22 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable { } } - /** - * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static ArrayOfArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 4cd8394ce4c..82d22a3a136 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -76,10 +76,10 @@ public class ArrayOfNumberOnly implements Parcelable { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { return arrayNumber; @@ -162,12 +162,12 @@ public class ArrayOfNumberOnly implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -218,22 +218,22 @@ public class ArrayOfNumberOnly implements Parcelable { } } - /** - * Create an instance of ArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly + */ public static ArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayTest.java index e6e71a7880d..a6ee476dd0d 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -84,10 +84,10 @@ public class ArrayTest implements Parcelable { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { return arrayOfString; @@ -111,10 +111,10 @@ public class ArrayTest implements Parcelable { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { return arrayArrayOfInteger; @@ -138,10 +138,10 @@ public class ArrayTest implements Parcelable { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { return arrayArrayOfModel; @@ -234,12 +234,12 @@ public class ArrayTest implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -298,22 +298,22 @@ public class ArrayTest implements Parcelable { } } - /** - * Create an instance of ArrayTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayTest - * @throws IOException if the JSON string is invalid with respect to ArrayTest - */ + /** + * Create an instance of ArrayTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayTest + * @throws IOException if the JSON string is invalid with respect to ArrayTest + */ public static ArrayTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayTest.class); } - /** - * Convert an instance of ArrayTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/BigCat.java index 8673287af95..1fd4dce6b67 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/BigCat.java @@ -124,10 +124,10 @@ public class BigCat extends Cat implements Parcelable { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable public KindEnum getKind() { return kind; @@ -218,12 +218,12 @@ public class BigCat extends Cat implements Parcelable { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to BigCat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to BigCat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!BigCat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -276,22 +276,22 @@ public class BigCat extends Cat implements Parcelable { } } - /** - * Create an instance of BigCat given an JSON string - * - * @param jsonString JSON string - * @return An instance of BigCat - * @throws IOException if the JSON string is invalid with respect to BigCat - */ + /** + * Create an instance of BigCat given an JSON string + * + * @param jsonString JSON string + * @return An instance of BigCat + * @throws IOException if the JSON string is invalid with respect to BigCat + */ public static BigCat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, BigCat.class); } - /** - * Convert an instance of BigCat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of BigCat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Capitalization.java index 39875e5ea6b..6064c9946eb 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Capitalization.java @@ -85,10 +85,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { return smallCamel; @@ -104,10 +104,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { return capitalCamel; @@ -123,10 +123,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { return smallSnake; @@ -142,10 +142,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { return capitalSnake; @@ -161,10 +161,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { return scAETHFlowPoints; @@ -180,10 +180,10 @@ public class Capitalization implements Parcelable { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { return ATT_NAME; @@ -291,12 +291,12 @@ public class Capitalization implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Capitalization - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Capitalization + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Capitalization.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -361,22 +361,22 @@ public class Capitalization implements Parcelable { } } - /** - * Create an instance of Capitalization given an JSON string - * - * @param jsonString JSON string - * @return An instance of Capitalization - * @throws IOException if the JSON string is invalid with respect to Capitalization - */ + /** + * Create an instance of Capitalization given an JSON string + * + * @param jsonString JSON string + * @return An instance of Capitalization + * @throws IOException if the JSON string is invalid with respect to Capitalization + */ public static Capitalization fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Capitalization.class); } - /** - * Convert an instance of Capitalization to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Capitalization to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Cat.java index a58bd2da902..44cbb2cc895 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Cat.java @@ -68,10 +68,10 @@ public class Cat extends Animal implements Parcelable { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { return declawed; @@ -161,12 +161,12 @@ public class Cat extends Animal implements Parcelable { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Cat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Cat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Cat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -185,22 +185,22 @@ public class Cat extends Animal implements Parcelable { } - /** - * Create an instance of Cat given an JSON string - * - * @param jsonString JSON string - * @return An instance of Cat - * @throws IOException if the JSON string is invalid with respect to Cat - */ + /** + * Create an instance of Cat given an JSON string + * + * @param jsonString JSON string + * @return An instance of Cat + * @throws IOException if the JSON string is invalid with respect to Cat + */ public static Cat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Cat.class); } - /** - * Convert an instance of Cat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Cat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Category.java index ec289727c08..c46c05a72e6 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Category.java @@ -69,10 +69,10 @@ public class Category implements Parcelable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -88,10 +88,10 @@ public class Category implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -180,12 +180,12 @@ public class Category implements Parcelable { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -242,22 +242,22 @@ public class Category implements Parcelable { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ClassModel.java index 3a5efa56031..aa5c2ff7fbe 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ClassModel.java @@ -65,10 +65,10 @@ public class ClassModel implements Parcelable { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -151,12 +151,12 @@ public class ClassModel implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ClassModel - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ClassModel + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ClassModel.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -206,22 +206,22 @@ public class ClassModel implements Parcelable { } } - /** - * Create an instance of ClassModel given an JSON string - * - * @param jsonString JSON string - * @return An instance of ClassModel - * @throws IOException if the JSON string is invalid with respect to ClassModel - */ + /** + * Create an instance of ClassModel given an JSON string + * + * @param jsonString JSON string + * @return An instance of ClassModel + * @throws IOException if the JSON string is invalid with respect to ClassModel + */ public static ClassModel fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ClassModel.class); } - /** - * Convert an instance of ClassModel to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ClassModel to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Client.java index 3bc29616b75..917c79d8165 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Client.java @@ -65,10 +65,10 @@ public class Client implements Parcelable { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { return client; @@ -151,12 +151,12 @@ public class Client implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Client - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Client + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Client.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -206,22 +206,22 @@ public class Client implements Parcelable { } } - /** - * Create an instance of Client given an JSON string - * - * @param jsonString JSON string - * @return An instance of Client - * @throws IOException if the JSON string is invalid with respect to Client - */ + /** + * Create an instance of Client given an JSON string + * + * @param jsonString JSON string + * @return An instance of Client + * @throws IOException if the JSON string is invalid with respect to Client + */ public static Client fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Client.class); } - /** - * Convert an instance of Client to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Client to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Dog.java index 6b1b8d10284..de609eeaa18 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Dog.java @@ -68,10 +68,10 @@ public class Dog extends Animal implements Parcelable { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { return breed; @@ -161,12 +161,12 @@ public class Dog extends Animal implements Parcelable { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Dog - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Dog + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Dog.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -219,22 +219,22 @@ public class Dog extends Animal implements Parcelable { } } - /** - * Create an instance of Dog given an JSON string - * - * @param jsonString JSON string - * @return An instance of Dog - * @throws IOException if the JSON string is invalid with respect to Dog - */ + /** + * Create an instance of Dog given an JSON string + * + * @param jsonString JSON string + * @return An instance of Dog + * @throws IOException if the JSON string is invalid with respect to Dog + */ public static Dog fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Dog.class); } - /** - * Convert an instance of Dog to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Dog to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumArrays.java index 546d3cdbce7..a2c83e4c415 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -175,10 +175,10 @@ public class EnumArrays implements Parcelable { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { return justSymbol; @@ -202,10 +202,10 @@ public class EnumArrays implements Parcelable { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { return arrayEnum; @@ -293,12 +293,12 @@ public class EnumArrays implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumArrays - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumArrays + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumArrays.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -356,22 +356,22 @@ public class EnumArrays implements Parcelable { } } - /** - * Create an instance of EnumArrays given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumArrays - * @throws IOException if the JSON string is invalid with respect to EnumArrays - */ + /** + * Create an instance of EnumArrays given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumArrays + * @throws IOException if the JSON string is invalid with respect to EnumArrays + */ public static EnumArrays fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumArrays.class); } - /** - * Convert an instance of EnumArrays to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumArrays to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumTest.java index 7c4b27fbfc3..8fa98c633d8 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/EnumTest.java @@ -294,10 +294,10 @@ public class EnumTest implements Parcelable { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { return enumString; @@ -313,10 +313,10 @@ public class EnumTest implements Parcelable { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { return enumStringRequired; @@ -332,10 +332,10 @@ public class EnumTest implements Parcelable { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { return enumInteger; @@ -351,10 +351,10 @@ public class EnumTest implements Parcelable { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { return enumNumber; @@ -370,10 +370,10 @@ public class EnumTest implements Parcelable { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { return outerEnum; @@ -477,12 +477,12 @@ public class EnumTest implements Parcelable { openapiRequiredFields.add("enum_string_required"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -560,22 +560,22 @@ public class EnumTest implements Parcelable { } } - /** - * Create an instance of EnumTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumTest - * @throws IOException if the JSON string is invalid with respect to EnumTest - */ + /** + * Create an instance of EnumTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumTest + * @throws IOException if the JSON string is invalid with respect to EnumTest + */ public static EnumTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumTest.class); } - /** - * Convert an instance of EnumTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 583fd6c45e7..541a5eb4c81 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -72,10 +72,10 @@ public class FileSchemaTestClass implements Parcelable { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { return _file; @@ -99,10 +99,10 @@ public class FileSchemaTestClass implements Parcelable { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { return files; @@ -190,12 +190,12 @@ public class FileSchemaTestClass implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FileSchemaTestClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -260,22 +260,22 @@ public class FileSchemaTestClass implements Parcelable { } } - /** - * Create an instance of FileSchemaTestClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of FileSchemaTestClass - * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass - */ + /** + * Create an instance of FileSchemaTestClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of FileSchemaTestClass + * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass + */ public static FileSchemaTestClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FileSchemaTestClass.class); } - /** - * Convert an instance of FileSchemaTestClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FileSchemaTestClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FormatTest.java index 06fe0d7a95d..73533eea10a 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FormatTest.java @@ -122,12 +122,12 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { return integer; @@ -143,12 +143,12 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { return int32; @@ -164,10 +164,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { return int64; @@ -183,12 +183,12 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { return number; @@ -204,12 +204,12 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { return _float; @@ -225,12 +225,12 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { return _double; @@ -246,10 +246,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { return string; @@ -265,10 +265,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { return _byte; @@ -284,10 +284,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { return binary; @@ -303,10 +303,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { return date; @@ -322,10 +322,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -341,10 +341,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -360,10 +360,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { return password; @@ -379,10 +379,10 @@ public class FormatTest implements Parcelable { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable public BigDecimal getBigDecimal() { return bigDecimal; @@ -534,12 +534,12 @@ public class FormatTest implements Parcelable { openapiRequiredFields.add("password"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FormatTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FormatTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FormatTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -602,22 +602,22 @@ public class FormatTest implements Parcelable { } } - /** - * Create an instance of FormatTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of FormatTest - * @throws IOException if the JSON string is invalid with respect to FormatTest - */ + /** + * Create an instance of FormatTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of FormatTest + * @throws IOException if the JSON string is invalid with respect to FormatTest + */ public static FormatTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FormatTest.class); } - /** - * Convert an instance of FormatTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FormatTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index ce425f99287..32b88cc8f9b 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -73,10 +73,10 @@ public class HasOnlyReadOnly implements Parcelable { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -84,10 +84,10 @@ public class HasOnlyReadOnly implements Parcelable { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { return foo; @@ -172,12 +172,12 @@ public class HasOnlyReadOnly implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!HasOnlyReadOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -230,22 +230,22 @@ public class HasOnlyReadOnly implements Parcelable { } } - /** - * Create an instance of HasOnlyReadOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of HasOnlyReadOnly - * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly - */ + /** + * Create an instance of HasOnlyReadOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of HasOnlyReadOnly + * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly + */ public static HasOnlyReadOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, HasOnlyReadOnly.class); } - /** - * Convert an instance of HasOnlyReadOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of HasOnlyReadOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MapTest.java index 34224138c1e..27a66337130 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MapTest.java @@ -139,10 +139,10 @@ public class MapTest implements Parcelable { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { return mapMapOfString; @@ -166,10 +166,10 @@ public class MapTest implements Parcelable { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { return mapOfEnumString; @@ -193,10 +193,10 @@ public class MapTest implements Parcelable { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { return directMap; @@ -220,10 +220,10 @@ public class MapTest implements Parcelable { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { return indirectMap; @@ -321,12 +321,12 @@ public class MapTest implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MapTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MapTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MapTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -373,22 +373,22 @@ public class MapTest implements Parcelable { } } - /** - * Create an instance of MapTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of MapTest - * @throws IOException if the JSON string is invalid with respect to MapTest - */ + /** + * Create an instance of MapTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of MapTest + * @throws IOException if the JSON string is invalid with respect to MapTest + */ public static MapTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MapTest.class); } - /** - * Convert an instance of MapTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MapTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 5e02b9a6337..729296cb481 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -78,10 +78,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -97,10 +97,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -124,10 +124,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { return map; @@ -220,12 +220,12 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MixedPropertiesAndAdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -275,22 +275,22 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable { } } - /** - * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of MixedPropertiesAndAdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of MixedPropertiesAndAdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static MixedPropertiesAndAdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MixedPropertiesAndAdditionalPropertiesClass.class); } - /** - * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Model200Response.java index 3cd79927c64..fa4eacbcdc1 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Model200Response.java @@ -69,10 +69,10 @@ public class Model200Response implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { return name; @@ -88,10 +88,10 @@ public class Model200Response implements Parcelable { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -179,12 +179,12 @@ public class Model200Response implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Model200Response - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Model200Response + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Model200Response.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -234,22 +234,22 @@ public class Model200Response implements Parcelable { } } - /** - * Create an instance of Model200Response given an JSON string - * - * @param jsonString JSON string - * @return An instance of Model200Response - * @throws IOException if the JSON string is invalid with respect to Model200Response - */ + /** + * Create an instance of Model200Response given an JSON string + * + * @param jsonString JSON string + * @return An instance of Model200Response + * @throws IOException if the JSON string is invalid with respect to Model200Response + */ public static Model200Response fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Model200Response.class); } - /** - * Convert an instance of Model200Response to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Model200Response to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelApiResponse.java index dd530a242a3..b2e64b6acaa 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -73,10 +73,10 @@ public class ModelApiResponse implements Parcelable { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -92,10 +92,10 @@ public class ModelApiResponse implements Parcelable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -111,10 +111,10 @@ public class ModelApiResponse implements Parcelable { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -207,12 +207,12 @@ public class ModelApiResponse implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -265,22 +265,22 @@ public class ModelApiResponse implements Parcelable { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelFile.java index f413247d640..67749eb45f6 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelFile.java @@ -65,10 +65,10 @@ public class ModelFile implements Parcelable { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { return sourceURI; @@ -151,12 +151,12 @@ public class ModelFile implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelFile - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelFile + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelFile.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -206,22 +206,22 @@ public class ModelFile implements Parcelable { } } - /** - * Create an instance of ModelFile given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelFile - * @throws IOException if the JSON string is invalid with respect to ModelFile - */ + /** + * Create an instance of ModelFile given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelFile + * @throws IOException if the JSON string is invalid with respect to ModelFile + */ public static ModelFile fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelFile.class); } - /** - * Convert an instance of ModelFile to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelFile to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelList.java index f68e4924576..7646fc842ed 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelList.java @@ -65,10 +65,10 @@ public class ModelList implements Parcelable { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { return _123list; @@ -151,12 +151,12 @@ public class ModelList implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelList - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelList + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelList.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -206,22 +206,22 @@ public class ModelList implements Parcelable { } } - /** - * Create an instance of ModelList given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelList - * @throws IOException if the JSON string is invalid with respect to ModelList - */ + /** + * Create an instance of ModelList given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelList + * @throws IOException if the JSON string is invalid with respect to ModelList + */ public static ModelList fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelList.class); } - /** - * Convert an instance of ModelList to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelList to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelReturn.java index ef02b8cdc5e..106d07ddcbc 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -65,10 +65,10 @@ public class ModelReturn implements Parcelable { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { return _return; @@ -151,12 +151,12 @@ public class ModelReturn implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelReturn - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelReturn + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelReturn.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -203,22 +203,22 @@ public class ModelReturn implements Parcelable { } } - /** - * Create an instance of ModelReturn given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelReturn - * @throws IOException if the JSON string is invalid with respect to ModelReturn - */ + /** + * Create an instance of ModelReturn given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelReturn + * @throws IOException if the JSON string is invalid with respect to ModelReturn + */ public static ModelReturn fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelReturn.class); } - /** - * Convert an instance of ModelReturn to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelReturn to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Name.java index 13fb5b52d10..0e8952ce1d9 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Name.java @@ -86,10 +86,10 @@ public class Name implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { return name; @@ -100,10 +100,10 @@ public class Name implements Parcelable { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { return snakeCase; @@ -116,10 +116,10 @@ public class Name implements Parcelable { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { return property; @@ -130,10 +130,10 @@ public class Name implements Parcelable { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { return _123number; @@ -229,12 +229,12 @@ public class Name implements Parcelable { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Name - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Name + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Name.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -291,22 +291,22 @@ public class Name implements Parcelable { } } - /** - * Create an instance of Name given an JSON string - * - * @param jsonString JSON string - * @return An instance of Name - * @throws IOException if the JSON string is invalid with respect to Name - */ + /** + * Create an instance of Name given an JSON string + * + * @param jsonString JSON string + * @return An instance of Name + * @throws IOException if the JSON string is invalid with respect to Name + */ public static Name fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Name.class); } - /** - * Convert an instance of Name to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Name to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/NumberOnly.java index 16b91f5711c..27e17b864c6 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -66,10 +66,10 @@ public class NumberOnly implements Parcelable { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { return justNumber; @@ -152,12 +152,12 @@ public class NumberOnly implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -204,22 +204,22 @@ public class NumberOnly implements Parcelable { } } - /** - * Create an instance of NumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of NumberOnly - * @throws IOException if the JSON string is invalid with respect to NumberOnly - */ + /** + * Create an instance of NumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of NumberOnly + * @throws IOException if the JSON string is invalid with respect to NumberOnly + */ public static NumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NumberOnly.class); } - /** - * Convert an instance of NumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Order.java index 805f0cab5e2..03d493a2f3f 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Order.java @@ -140,10 +140,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -159,10 +159,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -178,10 +178,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -197,10 +197,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -216,10 +216,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -235,10 +235,10 @@ public class Order implements Parcelable { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -346,12 +346,12 @@ public class Order implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -405,22 +405,22 @@ public class Order implements Parcelable { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/OuterComposite.java index b23955a2195..5c749222ae1 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -74,10 +74,10 @@ public class OuterComposite implements Parcelable { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { return myNumber; @@ -93,10 +93,10 @@ public class OuterComposite implements Parcelable { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { return myString; @@ -112,10 +112,10 @@ public class OuterComposite implements Parcelable { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { return myBoolean; @@ -208,12 +208,12 @@ public class OuterComposite implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to OuterComposite - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to OuterComposite + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!OuterComposite.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -263,22 +263,22 @@ public class OuterComposite implements Parcelable { } } - /** - * Create an instance of OuterComposite given an JSON string - * - * @param jsonString JSON string - * @return An instance of OuterComposite - * @throws IOException if the JSON string is invalid with respect to OuterComposite - */ + /** + * Create an instance of OuterComposite given an JSON string + * + * @param jsonString JSON string + * @return An instance of OuterComposite + * @throws IOException if the JSON string is invalid with respect to OuterComposite + */ public static OuterComposite fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, OuterComposite.class); } - /** - * Convert an instance of OuterComposite to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of OuterComposite to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Pet.java index 96dadca79b3..5514b63bdd5 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Pet.java @@ -145,10 +145,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -164,10 +164,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -183,10 +183,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -210,10 +210,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public Set getPhotoUrls() { return photoUrls; @@ -237,10 +237,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -256,10 +256,10 @@ public class Pet implements Parcelable { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -369,12 +369,12 @@ public class Pet implements Parcelable { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -462,22 +462,22 @@ public class Pet implements Parcelable { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index bd6eb58afc8..5f59f8801f3 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -71,10 +71,10 @@ public class ReadOnlyFirst implements Parcelable { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -87,10 +87,10 @@ public class ReadOnlyFirst implements Parcelable { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { return baz; @@ -178,12 +178,12 @@ public class ReadOnlyFirst implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ReadOnlyFirst.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -236,22 +236,22 @@ public class ReadOnlyFirst implements Parcelable { } } - /** - * Create an instance of ReadOnlyFirst given an JSON string - * - * @param jsonString JSON string - * @return An instance of ReadOnlyFirst - * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst - */ + /** + * Create an instance of ReadOnlyFirst given an JSON string + * + * @param jsonString JSON string + * @return An instance of ReadOnlyFirst + * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst + */ public static ReadOnlyFirst fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ReadOnlyFirst.class); } - /** - * Convert an instance of ReadOnlyFirst to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ReadOnlyFirst to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/SpecialModelName.java index acd377e252d..f530301c09d 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -65,10 +65,10 @@ public class SpecialModelName implements Parcelable { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { return $specialPropertyName; @@ -151,12 +151,12 @@ public class SpecialModelName implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SpecialModelName - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SpecialModelName + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SpecialModelName.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -203,22 +203,22 @@ public class SpecialModelName implements Parcelable { } } - /** - * Create an instance of SpecialModelName given an JSON string - * - * @param jsonString JSON string - * @return An instance of SpecialModelName - * @throws IOException if the JSON string is invalid with respect to SpecialModelName - */ + /** + * Create an instance of SpecialModelName given an JSON string + * + * @param jsonString JSON string + * @return An instance of SpecialModelName + * @throws IOException if the JSON string is invalid with respect to SpecialModelName + */ public static SpecialModelName fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SpecialModelName.class); } - /** - * Convert an instance of SpecialModelName to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SpecialModelName to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Tag.java index 84f67d9f658..33650bd1a4b 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/Tag.java @@ -69,10 +69,10 @@ public class Tag implements Parcelable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -88,10 +88,10 @@ public class Tag implements Parcelable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -179,12 +179,12 @@ public class Tag implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -234,22 +234,22 @@ public class Tag implements Parcelable { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 95a4af703f3..e24f87e76f9 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -84,10 +84,10 @@ public class TypeHolderDefault implements Parcelable { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { return stringItem; @@ -103,10 +103,10 @@ public class TypeHolderDefault implements Parcelable { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { return numberItem; @@ -122,10 +122,10 @@ public class TypeHolderDefault implements Parcelable { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { return integerItem; @@ -141,10 +141,10 @@ public class TypeHolderDefault implements Parcelable { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { return boolItem; @@ -168,10 +168,10 @@ public class TypeHolderDefault implements Parcelable { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { return arrayItem; @@ -279,12 +279,12 @@ public class TypeHolderDefault implements Parcelable { openapiRequiredFields.add("array_item"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TypeHolderDefault - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TypeHolderDefault + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TypeHolderDefault.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -347,22 +347,22 @@ public class TypeHolderDefault implements Parcelable { } } - /** - * Create an instance of TypeHolderDefault given an JSON string - * - * @param jsonString JSON string - * @return An instance of TypeHolderDefault - * @throws IOException if the JSON string is invalid with respect to TypeHolderDefault - */ + /** + * Create an instance of TypeHolderDefault given an JSON string + * + * @param jsonString JSON string + * @return An instance of TypeHolderDefault + * @throws IOException if the JSON string is invalid with respect to TypeHolderDefault + */ public static TypeHolderDefault fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TypeHolderDefault.class); } - /** - * Convert an instance of TypeHolderDefault to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TypeHolderDefault to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 27660be82d6..bb58d748e39 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -88,10 +88,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { return stringItem; @@ -107,10 +107,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { return numberItem; @@ -126,10 +126,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull public Float getFloatItem() { return floatItem; @@ -145,10 +145,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { return integerItem; @@ -164,10 +164,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { return boolItem; @@ -191,10 +191,10 @@ public class TypeHolderExample implements Parcelable { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { return arrayItem; @@ -308,12 +308,12 @@ public class TypeHolderExample implements Parcelable { openapiRequiredFields.add("array_item"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TypeHolderExample - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TypeHolderExample + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TypeHolderExample.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -376,22 +376,22 @@ public class TypeHolderExample implements Parcelable { } } - /** - * Create an instance of TypeHolderExample given an JSON string - * - * @param jsonString JSON string - * @return An instance of TypeHolderExample - * @throws IOException if the JSON string is invalid with respect to TypeHolderExample - */ + /** + * Create an instance of TypeHolderExample given an JSON string + * + * @param jsonString JSON string + * @return An instance of TypeHolderExample + * @throws IOException if the JSON string is invalid with respect to TypeHolderExample + */ public static TypeHolderExample fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TypeHolderExample.class); } - /** - * Convert an instance of TypeHolderExample to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TypeHolderExample to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/User.java index f23464c6f19..952372f1003 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/User.java @@ -93,10 +93,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -112,10 +112,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -131,10 +131,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -150,10 +150,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -169,10 +169,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -188,10 +188,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -207,10 +207,10 @@ public class User implements Parcelable { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -226,10 +226,10 @@ public class User implements Parcelable { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -347,12 +347,12 @@ public class User implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -417,22 +417,22 @@ public class User implements Parcelable { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/XmlItem.java index 88ef16069fe..6424ebb7f6b 100644 --- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/XmlItem.java @@ -180,10 +180,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable public String getAttributeString() { return attributeString; @@ -199,10 +199,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getAttributeNumber() { return attributeNumber; @@ -218,10 +218,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable public Integer getAttributeInteger() { return attributeInteger; @@ -237,10 +237,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable public Boolean getAttributeBoolean() { return attributeBoolean; @@ -264,10 +264,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable public List getWrappedArray() { return wrappedArray; @@ -283,10 +283,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable public String getNameString() { return nameString; @@ -302,10 +302,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNameNumber() { return nameNumber; @@ -321,10 +321,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable public Integer getNameInteger() { return nameInteger; @@ -340,10 +340,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNameBoolean() { return nameBoolean; @@ -367,10 +367,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable public List getNameArray() { return nameArray; @@ -394,10 +394,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable public List getNameWrappedArray() { return nameWrappedArray; @@ -413,10 +413,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable public String getPrefixString() { return prefixString; @@ -432,10 +432,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNumber() { return prefixNumber; @@ -451,10 +451,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixInteger() { return prefixInteger; @@ -470,10 +470,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixBoolean() { return prefixBoolean; @@ -497,10 +497,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable public List getPrefixArray() { return prefixArray; @@ -524,10 +524,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixWrappedArray() { return prefixWrappedArray; @@ -543,10 +543,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable public String getNamespaceString() { return namespaceString; @@ -562,10 +562,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNamespaceNumber() { return namespaceNumber; @@ -581,10 +581,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable public Integer getNamespaceInteger() { return namespaceInteger; @@ -600,10 +600,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNamespaceBoolean() { return namespaceBoolean; @@ -627,10 +627,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable public List getNamespaceArray() { return namespaceArray; @@ -654,10 +654,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable public List getNamespaceWrappedArray() { return namespaceWrappedArray; @@ -673,10 +673,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable public String getPrefixNsString() { return prefixNsString; @@ -692,10 +692,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNsNumber() { return prefixNsNumber; @@ -711,10 +711,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixNsInteger() { return prefixNsInteger; @@ -730,10 +730,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixNsBoolean() { return prefixNsBoolean; @@ -757,10 +757,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsArray() { return prefixNsArray; @@ -784,10 +784,10 @@ public class XmlItem implements Parcelable { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsWrappedArray() { return prefixNsWrappedArray; @@ -1010,12 +1010,12 @@ public class XmlItem implements Parcelable { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to XmlItem - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to XmlItem + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!XmlItem.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -1113,22 +1113,22 @@ public class XmlItem implements Parcelable { } } - /** - * Create an instance of XmlItem given an JSON string - * - * @param jsonString JSON string - * @return An instance of XmlItem - * @throws IOException if the JSON string is invalid with respect to XmlItem - */ + /** + * Create an instance of XmlItem given an JSON string + * + * @param jsonString JSON string + * @return An instance of XmlItem + * @throws IOException if the JSON string is invalid with respect to XmlItem + */ public static XmlItem fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, XmlItem.class); } - /** - * Convert an instance of XmlItem to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of XmlItem to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java index b1cf83aeeed..f3cfde2fc18 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java @@ -70,10 +70,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getId() { @@ -90,10 +90,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getName() { @@ -205,12 +205,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -295,22 +295,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 65959d3706d..73a09f6f2fd 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -74,10 +74,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Integer getCode() { @@ -94,10 +94,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getType() { @@ -114,10 +114,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getMessage() { @@ -232,12 +232,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -325,22 +325,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java index d3b6db62adc..061fa9a4f09 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java @@ -141,10 +141,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getId() { @@ -161,10 +161,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getPetId() { @@ -181,10 +181,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Integer getQuantity() { @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public OffsetDateTime getShipDate() { @@ -221,10 +221,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "Order Status") public StatusEnum getStatus() { @@ -241,10 +241,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Boolean getComplete() { @@ -368,12 +368,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -462,22 +462,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java index 265b701ebfd..70150ecd80d 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java @@ -145,10 +145,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getId() { @@ -165,10 +165,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Category getCategory() { @@ -185,10 +185,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(example = "doggie", required = true, value = "") public String getName() { @@ -213,10 +213,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(required = true, value = "") public List getPhotoUrls() { @@ -241,10 +241,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public List getTags() { @@ -262,11 +262,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @ApiModelProperty(value = "pet status in the store") @@ -394,12 +394,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -522,22 +522,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java index 5ffa4a9bbd3..8c02245c017 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java @@ -70,10 +70,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getId() { @@ -90,10 +90,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getName() { @@ -205,12 +205,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -295,22 +295,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java index 8e03d48a129..91f3d98efb5 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java @@ -94,10 +94,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public Long getId() { @@ -114,10 +114,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getUsername() { @@ -134,10 +134,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getFirstName() { @@ -154,10 +154,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getLastName() { @@ -174,10 +174,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getEmail() { @@ -194,10 +194,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getPassword() { @@ -214,10 +214,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") public String getPhone() { @@ -234,10 +234,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "User Status") public Integer getUserStatus() { @@ -367,12 +367,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -472,22 +472,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Category.java index b0eac56a92e..3e2244bc382 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Category.java @@ -69,10 +69,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getId() { @@ -89,10 +89,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getName() { @@ -204,12 +204,12 @@ public class Category { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -294,22 +294,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 0f0cf49fc00..df2d1aa21da 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -73,10 +73,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Integer getCode() { @@ -93,10 +93,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getType() { @@ -113,10 +113,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getMessage() { @@ -231,12 +231,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -324,22 +324,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Order.java index 8b5bf29d28d..777cc0f0357 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Order.java @@ -140,10 +140,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getId() { @@ -160,10 +160,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getPetId() { @@ -180,10 +180,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Integer getQuantity() { @@ -200,10 +200,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public OffsetDateTime getShipDate() { @@ -220,10 +220,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Order Status") public StatusEnum getStatus() { @@ -240,10 +240,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Boolean getComplete() { @@ -367,12 +367,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -461,22 +461,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Pet.java index 66b5e34ec77..3128ff7b5a5 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Pet.java @@ -144,10 +144,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getId() { @@ -164,10 +164,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Category getCategory() { @@ -184,10 +184,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @Schema(example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED, description = "") public String getName() { @@ -212,10 +212,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") public List getPhotoUrls() { @@ -240,10 +240,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public List getTags() { @@ -261,11 +261,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "pet status in the store") @@ -393,12 +393,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -521,22 +521,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Tag.java index ee24b327b31..b4712adb699 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/Tag.java @@ -69,10 +69,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getId() { @@ -89,10 +89,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getName() { @@ -204,12 +204,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -294,22 +294,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/User.java index 99c75c28354..4853a12694c 100644 --- a/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson-swagger2/src/main/java/org/openapitools/client/model/User.java @@ -93,10 +93,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public Long getId() { @@ -113,10 +113,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getUsername() { @@ -133,10 +133,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getFirstName() { @@ -153,10 +153,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getLastName() { @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getEmail() { @@ -193,10 +193,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getPassword() { @@ -213,10 +213,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") public String getPhone() { @@ -233,10 +233,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "User Status") public Integer getUserStatus() { @@ -366,12 +366,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -471,22 +471,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index bb6813c5c29..93121530e53 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -102,10 +102,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable public Map getMapProperty() { return mapProperty; @@ -129,10 +129,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable public Map> getMapOfMapProperty() { return mapOfMapProperty; @@ -148,10 +148,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { return anytype1; @@ -167,10 +167,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype1 * @return mapWithUndeclaredPropertiesAnytype1 - **/ + */ @javax.annotation.Nullable public Object getMapWithUndeclaredPropertiesAnytype1() { return mapWithUndeclaredPropertiesAnytype1; @@ -186,10 +186,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype2 * @return mapWithUndeclaredPropertiesAnytype2 - **/ + */ @javax.annotation.Nullable public Object getMapWithUndeclaredPropertiesAnytype2() { return mapWithUndeclaredPropertiesAnytype2; @@ -213,10 +213,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype3 * @return mapWithUndeclaredPropertiesAnytype3 - **/ + */ @javax.annotation.Nullable public Map getMapWithUndeclaredPropertiesAnytype3() { return mapWithUndeclaredPropertiesAnytype3; @@ -232,10 +232,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * an object with no declared properties and no undeclared properties, hence it's an empty map. * @return emptyMap - **/ + */ @javax.annotation.Nullable public Object getEmptyMap() { return emptyMap; @@ -259,10 +259,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesString * @return mapWithUndeclaredPropertiesString - **/ + */ @javax.annotation.Nullable public Map getMapWithUndeclaredPropertiesString() { return mapWithUndeclaredPropertiesString; @@ -402,12 +402,12 @@ public class AdditionalPropertiesClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -489,22 +489,22 @@ public class AdditionalPropertiesClass { } } - /** - * Create an instance of AdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of AdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass - */ + /** + * Create an instance of AdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of AdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to AdditionalPropertiesClass + */ public static AdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AdditionalPropertiesClass.class); } - /** - * Convert an instance of AdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOf.java index 0601ad0722b..bdbb45ede43 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOf.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOf.java @@ -77,10 +77,10 @@ public class AllOfModelArrayAnyOf { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -96,10 +96,10 @@ public class AllOfModelArrayAnyOf { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -115,10 +115,10 @@ public class AllOfModelArrayAnyOf { return this; } - /** + /** * Get linkListColumn1 * @return linkListColumn1 - **/ + */ @javax.annotation.Nullable public AllOfModelArrayAnyOfAllOfLinkListColumn1 getLinkListColumn1() { return linkListColumn1; @@ -134,10 +134,10 @@ public class AllOfModelArrayAnyOf { return this; } - /** + /** * Get attributes * @return attributes - **/ + */ @javax.annotation.Nullable public AllOfModelArrayAnyOfAllOfAttributes getAttributes() { return attributes; @@ -255,12 +255,12 @@ public class AllOfModelArrayAnyOf { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOf - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOf + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AllOfModelArrayAnyOf.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -360,22 +360,22 @@ public class AllOfModelArrayAnyOf { } } - /** - * Create an instance of AllOfModelArrayAnyOf given an JSON string - * - * @param jsonString JSON string - * @return An instance of AllOfModelArrayAnyOf - * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOf - */ + /** + * Create an instance of AllOfModelArrayAnyOf given an JSON string + * + * @param jsonString JSON string + * @return An instance of AllOfModelArrayAnyOf + * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOf + */ public static AllOfModelArrayAnyOf fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AllOfModelArrayAnyOf.class); } - /** - * Convert an instance of AllOfModelArrayAnyOf to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AllOfModelArrayAnyOf to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfAttributes.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfAttributes.java index 395c46bf49b..0961268f8aa 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfAttributes.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfAttributes.java @@ -64,10 +64,10 @@ public class AllOfModelArrayAnyOfAllOfAttributes { return this; } - /** + /** * Get C * @return C - **/ + */ @javax.annotation.Nullable public AllOfModelArrayAnyOfAllOfAttributesC getC() { return C; @@ -175,12 +175,12 @@ public class AllOfModelArrayAnyOfAllOfAttributes { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOfAllOfAttributes - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOfAllOfAttributes + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AllOfModelArrayAnyOfAllOfAttributes.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class AllOfModelArrayAnyOfAllOfAttributes { } } - /** - * Create an instance of AllOfModelArrayAnyOfAllOfAttributes given an JSON string - * - * @param jsonString JSON string - * @return An instance of AllOfModelArrayAnyOfAllOfAttributes - * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOfAllOfAttributes - */ + /** + * Create an instance of AllOfModelArrayAnyOfAllOfAttributes given an JSON string + * + * @param jsonString JSON string + * @return An instance of AllOfModelArrayAnyOfAllOfAttributes + * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOfAllOfAttributes + */ public static AllOfModelArrayAnyOfAllOfAttributes fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AllOfModelArrayAnyOfAllOfAttributes.class); } - /** - * Convert an instance of AllOfModelArrayAnyOfAllOfAttributes to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AllOfModelArrayAnyOfAllOfAttributes to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfLinkListColumn1.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfLinkListColumn1.java index 9313097628a..b26321005c2 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfLinkListColumn1.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AllOfModelArrayAnyOfAllOfLinkListColumn1.java @@ -74,10 +74,10 @@ public class AllOfModelArrayAnyOfAllOfLinkListColumn1 { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull public List getValue() { return value; @@ -186,12 +186,12 @@ public class AllOfModelArrayAnyOfAllOfLinkListColumn1 { openapiRequiredFields.add("value"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOfAllOfLinkListColumn1 - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AllOfModelArrayAnyOfAllOfLinkListColumn1 + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AllOfModelArrayAnyOfAllOfLinkListColumn1.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class AllOfModelArrayAnyOfAllOfLinkListColumn1 { } } - /** - * Create an instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 given an JSON string - * - * @param jsonString JSON string - * @return An instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 - * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOfAllOfLinkListColumn1 - */ + /** + * Create an instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 given an JSON string + * + * @param jsonString JSON string + * @return An instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 + * @throws IOException if the JSON string is invalid with respect to AllOfModelArrayAnyOfAllOfLinkListColumn1 + */ public static AllOfModelArrayAnyOfAllOfLinkListColumn1 fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AllOfModelArrayAnyOfAllOfLinkListColumn1.class); } - /** - * Convert an instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AllOfModelArrayAnyOfAllOfLinkListColumn1 to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Animal.java index 4cfd4e4783e..0452182bdcf 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Animal.java @@ -68,10 +68,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -87,10 +87,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -202,12 +202,12 @@ public class Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Animal - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Animal + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Animal.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -229,22 +229,22 @@ public class Animal { } - /** - * Create an instance of Animal given an JSON string - * - * @param jsonString JSON string - * @return An instance of Animal - * @throws IOException if the JSON string is invalid with respect to Animal - */ + /** + * Create an instance of Animal given an JSON string + * + * @param jsonString JSON string + * @return An instance of Animal + * @throws IOException if the JSON string is invalid with respect to Animal + */ public static Animal fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Animal.class); } - /** - * Convert an instance of Animal to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Animal to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java index 790f55fff49..59a6110057e 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java @@ -67,10 +67,10 @@ public class Apple { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nullable public String getCultivar() { return cultivar; @@ -86,10 +86,10 @@ public class Apple { return this; } - /** + /** * Get origin * @return origin - **/ + */ @javax.annotation.Nullable public String getOrigin() { return origin; @@ -200,12 +200,12 @@ public class Apple { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Apple - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Apple + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Apple.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -293,22 +293,22 @@ public class Apple { } } - /** - * Create an instance of Apple given an JSON string - * - * @param jsonString JSON string - * @return An instance of Apple - * @throws IOException if the JSON string is invalid with respect to Apple - */ + /** + * Create an instance of Apple given an JSON string + * + * @param jsonString JSON string + * @return An instance of Apple + * @throws IOException if the JSON string is invalid with respect to Apple + */ public static Apple fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Apple.class); } - /** - * Convert an instance of Apple to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Apple to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AppleReq.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AppleReq.java index 544e55f491d..55461ff09bd 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AppleReq.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AppleReq.java @@ -67,10 +67,10 @@ public class AppleReq { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nonnull public String getCultivar() { return cultivar; @@ -86,10 +86,10 @@ public class AppleReq { return this; } - /** + /** * Get mealy * @return mealy - **/ + */ @javax.annotation.Nullable public Boolean getMealy() { return mealy; @@ -155,12 +155,12 @@ public class AppleReq { openapiRequiredFields.add("cultivar"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to AppleReq - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to AppleReq + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!AppleReq.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -217,22 +217,22 @@ public class AppleReq { } } - /** - * Create an instance of AppleReq given an JSON string - * - * @param jsonString JSON string - * @return An instance of AppleReq - * @throws IOException if the JSON string is invalid with respect to AppleReq - */ + /** + * Create an instance of AppleReq given an JSON string + * + * @param jsonString JSON string + * @return An instance of AppleReq + * @throws IOException if the JSON string is invalid with respect to AppleReq + */ public static AppleReq fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, AppleReq.class); } - /** - * Convert an instance of AppleReq to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of AppleReq to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayDefault.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayDefault.java index fc7887402ae..47e05cbc8f4 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayDefault.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayDefault.java @@ -77,10 +77,10 @@ public class ArrayDefault { return this; } - /** + /** * Get withDefaultEmptyBracket * @return withDefaultEmptyBracket - **/ + */ @javax.annotation.Nullable public List getWithDefaultEmptyBracket() { return withDefaultEmptyBracket; @@ -104,10 +104,10 @@ public class ArrayDefault { return this; } - /** + /** * Get withoutDefault * @return withoutDefault - **/ + */ @javax.annotation.Nullable public List getWithoutDefault() { return withoutDefault; @@ -218,12 +218,12 @@ public class ArrayDefault { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayDefault - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayDefault + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayDefault.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -313,22 +313,22 @@ public class ArrayDefault { } } - /** - * Create an instance of ArrayDefault given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayDefault - * @throws IOException if the JSON string is invalid with respect to ArrayDefault - */ + /** + * Create an instance of ArrayDefault given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayDefault + * @throws IOException if the JSON string is invalid with respect to ArrayDefault + */ public static ArrayDefault fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayDefault.class); } - /** - * Convert an instance of ArrayDefault to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayDefault to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index f5699904e7d..b27cb262af6 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -74,10 +74,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { return arrayArrayNumber; @@ -185,12 +185,12 @@ public class ArrayOfArrayOfNumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -276,22 +276,22 @@ public class ArrayOfArrayOfNumberOnly { } } - /** - * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfArrayOfNumberOnly + */ public static ArrayOfArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java index 384450b416c..2cd1e6454dc 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java @@ -74,10 +74,10 @@ public class ArrayOfInlineAllOf { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -93,10 +93,10 @@ public class ArrayOfInlineAllOf { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -120,10 +120,10 @@ public class ArrayOfInlineAllOf { return this; } - /** + /** * Get arrayAllofDogProperty * @return arrayAllofDogProperty - **/ + */ @javax.annotation.Nullable public List getArrayAllofDogProperty() { return arrayAllofDogProperty; @@ -238,12 +238,12 @@ public class ArrayOfInlineAllOf { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfInlineAllOf - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfInlineAllOf + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfInlineAllOf.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -349,22 +349,22 @@ public class ArrayOfInlineAllOf { } } - /** - * Create an instance of ArrayOfInlineAllOf given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfInlineAllOf - * @throws IOException if the JSON string is invalid with respect to ArrayOfInlineAllOf - */ + /** + * Create an instance of ArrayOfInlineAllOf given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfInlineAllOf + * @throws IOException if the JSON string is invalid with respect to ArrayOfInlineAllOf + */ public static ArrayOfInlineAllOf fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfInlineAllOf.class); } - /** - * Convert an instance of ArrayOfInlineAllOf to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfInlineAllOf to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java index 93677e1ee50..146f9e42c67 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java @@ -67,10 +67,10 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInner { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { return breed; @@ -86,10 +86,10 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInner { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { return color; @@ -200,12 +200,12 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInner { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfInlineAllOfArrayAllofDogPropertyInner - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfInlineAllOfArrayAllofDogPropertyInner + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfInlineAllOfArrayAllofDogPropertyInner.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -293,22 +293,22 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInner { } } - /** - * Create an instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner - * @throws IOException if the JSON string is invalid with respect to ArrayOfInlineAllOfArrayAllofDogPropertyInner - */ + /** + * Create an instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner + * @throws IOException if the JSON string is invalid with respect to ArrayOfInlineAllOfArrayAllofDogPropertyInner + */ public static ArrayOfInlineAllOfArrayAllofDogPropertyInner fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfInlineAllOfArrayAllofDogPropertyInner.class); } - /** - * Convert an instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfInlineAllOfArrayAllofDogPropertyInner to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index cc75f118ea6..ae52bba5e34 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -74,10 +74,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { return arrayNumber; @@ -185,12 +185,12 @@ public class ArrayOfNumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayOfNumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayOfNumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -276,22 +276,22 @@ public class ArrayOfNumberOnly { } } - /** - * Create an instance of ArrayOfNumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayOfNumberOnly - * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly - */ + /** + * Create an instance of ArrayOfNumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayOfNumberOnly + * @throws IOException if the JSON string is invalid with respect to ArrayOfNumberOnly + */ public static ArrayOfNumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayOfNumberOnly.class); } - /** - * Convert an instance of ArrayOfNumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayOfNumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java index 5df37fd7843..162a6aed915 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -82,10 +82,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { return arrayOfString; @@ -109,10 +109,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { return arrayArrayOfInteger; @@ -136,10 +136,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { return arrayArrayOfModel; @@ -253,12 +253,12 @@ public class ArrayTest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ArrayTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ArrayTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ArrayTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -352,22 +352,22 @@ public class ArrayTest { } } - /** - * Create an instance of ArrayTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of ArrayTest - * @throws IOException if the JSON string is invalid with respect to ArrayTest - */ + /** + * Create an instance of ArrayTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of ArrayTest + * @throws IOException if the JSON string is invalid with respect to ArrayTest + */ public static ArrayTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ArrayTest.class); } - /** - * Convert an instance of ArrayTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ArrayTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java index 72f8491b113..9c25542c970 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java @@ -64,10 +64,10 @@ public class Banana { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nullable public BigDecimal getLengthCm() { return lengthCm; @@ -175,12 +175,12 @@ public class Banana { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Banana - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Banana + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Banana.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -262,22 +262,22 @@ public class Banana { } } - /** - * Create an instance of Banana given an JSON string - * - * @param jsonString JSON string - * @return An instance of Banana - * @throws IOException if the JSON string is invalid with respect to Banana - */ + /** + * Create an instance of Banana given an JSON string + * + * @param jsonString JSON string + * @return An instance of Banana + * @throws IOException if the JSON string is invalid with respect to Banana + */ public static Banana fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Banana.class); } - /** - * Convert an instance of Banana to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Banana to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BananaReq.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BananaReq.java index d0cc526b96c..3aa1546d1f3 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BananaReq.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BananaReq.java @@ -68,10 +68,10 @@ public class BananaReq { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nonnull public BigDecimal getLengthCm() { return lengthCm; @@ -87,10 +87,10 @@ public class BananaReq { return this; } - /** + /** * Get sweet * @return sweet - **/ + */ @javax.annotation.Nullable public Boolean getSweet() { return sweet; @@ -156,12 +156,12 @@ public class BananaReq { openapiRequiredFields.add("lengthCm"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to BananaReq - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to BananaReq + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!BananaReq.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -215,22 +215,22 @@ public class BananaReq { } } - /** - * Create an instance of BananaReq given an JSON string - * - * @param jsonString JSON string - * @return An instance of BananaReq - * @throws IOException if the JSON string is invalid with respect to BananaReq - */ + /** + * Create an instance of BananaReq given an JSON string + * + * @param jsonString JSON string + * @return An instance of BananaReq + * @throws IOException if the JSON string is invalid with respect to BananaReq + */ public static BananaReq fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, BananaReq.class); } - /** - * Convert an instance of BananaReq to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of BananaReq to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java index 1cb9c42350f..db35a422e2c 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java @@ -63,10 +63,10 @@ public class BasquePig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -175,12 +175,12 @@ public class BasquePig { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to BasquePig - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to BasquePig + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!BasquePig.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -272,22 +272,22 @@ public class BasquePig { } } - /** - * Create an instance of BasquePig given an JSON string - * - * @param jsonString JSON string - * @return An instance of BasquePig - * @throws IOException if the JSON string is invalid with respect to BasquePig - */ + /** + * Create an instance of BasquePig given an JSON string + * + * @param jsonString JSON string + * @return An instance of BasquePig + * @throws IOException if the JSON string is invalid with respect to BasquePig + */ public static BasquePig fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, BasquePig.class); } - /** - * Convert an instance of BasquePig to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of BasquePig to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java index 36b70c53b41..c08090c8280 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java @@ -83,10 +83,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { return smallCamel; @@ -102,10 +102,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { return capitalCamel; @@ -121,10 +121,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { return smallSnake; @@ -140,10 +140,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { return capitalSnake; @@ -159,10 +159,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { return scAETHFlowPoints; @@ -178,10 +178,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { return ATT_NAME; @@ -304,12 +304,12 @@ public class Capitalization { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Capitalization - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Capitalization + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Capitalization.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -409,22 +409,22 @@ public class Capitalization { } } - /** - * Create an instance of Capitalization given an JSON string - * - * @param jsonString JSON string - * @return An instance of Capitalization - * @throws IOException if the JSON string is invalid with respect to Capitalization - */ + /** + * Create an instance of Capitalization given an JSON string + * + * @param jsonString JSON string + * @return An instance of Capitalization + * @throws IOException if the JSON string is invalid with respect to Capitalization + */ public static Capitalization fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Capitalization.class); } - /** - * Convert an instance of Capitalization to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Capitalization to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java index a08afa3acca..adf02293a89 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java @@ -66,10 +66,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { return declawed; @@ -182,12 +182,12 @@ public class Cat extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Cat - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Cat + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Cat.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -275,22 +275,22 @@ public class Cat extends Animal { } } - /** - * Create an instance of Cat given an JSON string - * - * @param jsonString JSON string - * @return An instance of Cat - * @throws IOException if the JSON string is invalid with respect to Cat - */ + /** + * Create an instance of Cat given an JSON string + * + * @param jsonString JSON string + * @return An instance of Cat + * @throws IOException if the JSON string is invalid with respect to Cat + */ public static Cat fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Cat.class); } - /** - * Convert an instance of Cat to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Cat to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java index 569c709ede3..472fd9e7313 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java @@ -67,10 +67,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -201,12 +201,12 @@ public class Category { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Category - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Category + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Category.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -298,22 +298,22 @@ public class Category { } } - /** - * Create an instance of Category given an JSON string - * - * @param jsonString JSON string - * @return An instance of Category - * @throws IOException if the JSON string is invalid with respect to Category - */ + /** + * Create an instance of Category given an JSON string + * + * @param jsonString JSON string + * @return An instance of Category + * @throws IOException if the JSON string is invalid with respect to Category + */ public static Category fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Category.class); } - /** - * Convert an instance of Category to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Category to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java index 3508ddb27a6..d425b108313 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java @@ -63,10 +63,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -174,12 +174,12 @@ public class ClassModel { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ClassModel - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ClassModel + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ClassModel.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class ClassModel { } } - /** - * Create an instance of ClassModel given an JSON string - * - * @param jsonString JSON string - * @return An instance of ClassModel - * @throws IOException if the JSON string is invalid with respect to ClassModel - */ + /** + * Create an instance of ClassModel given an JSON string + * + * @param jsonString JSON string + * @return An instance of ClassModel + * @throws IOException if the JSON string is invalid with respect to ClassModel + */ public static ClassModel fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ClassModel.class); } - /** - * Convert an instance of ClassModel to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ClassModel to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java index a5c1608aacb..ea156dda490 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java @@ -63,10 +63,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { return client; @@ -174,12 +174,12 @@ public class Client { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Client - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Client + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Client.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class Client { } } - /** - * Create an instance of Client given an JSON string - * - * @param jsonString JSON string - * @return An instance of Client - * @throws IOException if the JSON string is invalid with respect to Client - */ + /** + * Create an instance of Client given an JSON string + * + * @param jsonString JSON string + * @return An instance of Client + * @throws IOException if the JSON string is invalid with respect to Client + */ public static Client fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Client.class); } - /** - * Convert an instance of Client to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Client to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java index 0ed12180c6d..b20b800c1c5 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java @@ -67,10 +67,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -86,10 +86,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull public String getQuadrilateralType() { return quadrilateralType; @@ -202,12 +202,12 @@ public class ComplexQuadrilateral { openapiRequiredFields.add("quadrilateralType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ComplexQuadrilateral - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ComplexQuadrilateral + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ComplexQuadrilateral.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -302,22 +302,22 @@ public class ComplexQuadrilateral { } } - /** - * Create an instance of ComplexQuadrilateral given an JSON string - * - * @param jsonString JSON string - * @return An instance of ComplexQuadrilateral - * @throws IOException if the JSON string is invalid with respect to ComplexQuadrilateral - */ + /** + * Create an instance of ComplexQuadrilateral given an JSON string + * + * @param jsonString JSON string + * @return An instance of ComplexQuadrilateral + * @throws IOException if the JSON string is invalid with respect to ComplexQuadrilateral + */ public static ComplexQuadrilateral fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ComplexQuadrilateral.class); } - /** - * Convert an instance of ComplexQuadrilateral to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ComplexQuadrilateral to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java index 1214f217a1c..f5bd66a937b 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java @@ -63,10 +63,10 @@ public class DanishPig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -175,12 +175,12 @@ public class DanishPig { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to DanishPig - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DanishPig + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!DanishPig.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -272,22 +272,22 @@ public class DanishPig { } } - /** - * Create an instance of DanishPig given an JSON string - * - * @param jsonString JSON string - * @return An instance of DanishPig - * @throws IOException if the JSON string is invalid with respect to DanishPig - */ + /** + * Create an instance of DanishPig given an JSON string + * + * @param jsonString JSON string + * @return An instance of DanishPig + * @throws IOException if the JSON string is invalid with respect to DanishPig + */ public static DanishPig fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, DanishPig.class); } - /** - * Convert an instance of DanishPig to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of DanishPig to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 8e1f8a3d157..d18119b1ca7 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -65,10 +65,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -176,12 +176,12 @@ public class DeprecatedObject { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to DeprecatedObject - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DeprecatedObject + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!DeprecatedObject.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class DeprecatedObject { } } - /** - * Create an instance of DeprecatedObject given an JSON string - * - * @param jsonString JSON string - * @return An instance of DeprecatedObject - * @throws IOException if the JSON string is invalid with respect to DeprecatedObject - */ + /** + * Create an instance of DeprecatedObject given an JSON string + * + * @param jsonString JSON string + * @return An instance of DeprecatedObject + * @throws IOException if the JSON string is invalid with respect to DeprecatedObject + */ public static DeprecatedObject fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, DeprecatedObject.class); } - /** - * Convert an instance of DeprecatedObject to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of DeprecatedObject to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java index 33dc2f11259..5f412eef9b8 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java @@ -65,10 +65,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { return breed; @@ -181,12 +181,12 @@ public class Dog extends Animal { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Dog - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Dog + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Dog.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -274,22 +274,22 @@ public class Dog extends Animal { } } - /** - * Create an instance of Dog given an JSON string - * - * @param jsonString JSON string - * @return An instance of Dog - * @throws IOException if the JSON string is invalid with respect to Dog - */ + /** + * Create an instance of Dog given an JSON string + * + * @param jsonString JSON string + * @return An instance of Dog + * @throws IOException if the JSON string is invalid with respect to Dog + */ public static Dog fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Dog.class); } - /** - * Convert an instance of Dog to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Dog to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Drawing.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Drawing.java index 46cbaa86ebc..a67974c7420 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Drawing.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Drawing.java @@ -82,10 +82,10 @@ public class Drawing { return this; } - /** + /** * Get mainShape * @return mainShape - **/ + */ @javax.annotation.Nullable public Shape getMainShape() { return mainShape; @@ -101,10 +101,10 @@ public class Drawing { return this; } - /** + /** * Get shapeOrNull * @return shapeOrNull - **/ + */ @javax.annotation.Nullable public ShapeOrNull getShapeOrNull() { return shapeOrNull; @@ -120,10 +120,10 @@ public class Drawing { return this; } - /** + /** * Get nullableShape * @return nullableShape - **/ + */ @javax.annotation.Nullable public NullableShape getNullableShape() { return nullableShape; @@ -147,10 +147,10 @@ public class Drawing { return this; } - /** + /** * Get shapes * @return shapes - **/ + */ @javax.annotation.Nullable public List getShapes() { return shapes; @@ -278,12 +278,12 @@ public class Drawing { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Drawing - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Drawing + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Drawing.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -391,22 +391,22 @@ public class Drawing { } } - /** - * Create an instance of Drawing given an JSON string - * - * @param jsonString JSON string - * @return An instance of Drawing - * @throws IOException if the JSON string is invalid with respect to Drawing - */ + /** + * Create an instance of Drawing given an JSON string + * + * @param jsonString JSON string + * @return An instance of Drawing + * @throws IOException if the JSON string is invalid with respect to Drawing + */ public static Drawing fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Drawing.class); } - /** - * Convert an instance of Drawing to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Drawing to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java index 78e57a5f7fa..cf355dd35f6 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -173,10 +173,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { return justSymbol; @@ -200,10 +200,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { return arrayEnum; @@ -314,12 +314,12 @@ public class EnumArrays { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumArrays - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumArrays + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumArrays.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -412,22 +412,22 @@ public class EnumArrays { } } - /** - * Create an instance of EnumArrays given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumArrays - * @throws IOException if the JSON string is invalid with respect to EnumArrays - */ + /** + * Create an instance of EnumArrays given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumArrays + * @throws IOException if the JSON string is invalid with respect to EnumArrays + */ public static EnumArrays fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumArrays.class); } - /** - * Convert an instance of EnumArrays to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumArrays to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java index 0d0a973cdf7..567123225b9 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java @@ -115,10 +115,10 @@ public class EnumStringDiscriminator { return this; } - /** + /** * enum string type * @return enumStrType - **/ + */ @javax.annotation.Nonnull public EnumStrTypeEnum getEnumStrType() { return enumStrType; @@ -227,12 +227,12 @@ public class EnumStringDiscriminator { openapiRequiredFields.add("enum_str_type"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumStringDiscriminator - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumStringDiscriminator + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumStringDiscriminator.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -320,22 +320,22 @@ public class EnumStringDiscriminator { } } - /** - * Create an instance of EnumStringDiscriminator given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumStringDiscriminator - * @throws IOException if the JSON string is invalid with respect to EnumStringDiscriminator - */ + /** + * Create an instance of EnumStringDiscriminator given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumStringDiscriminator + * @throws IOException if the JSON string is invalid with respect to EnumStringDiscriminator + */ public static EnumStringDiscriminator fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumStringDiscriminator.class); } - /** - * Convert an instance of EnumStringDiscriminator to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumStringDiscriminator to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java index 30e8e6d3071..b930c25937d 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java @@ -364,10 +364,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { return enumString; @@ -383,10 +383,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { return enumStringRequired; @@ -402,10 +402,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { return enumInteger; @@ -421,10 +421,10 @@ public class EnumTest { return this; } - /** + /** * Get enumIntegerOnly * @return enumIntegerOnly - **/ + */ @javax.annotation.Nullable public EnumIntegerOnlyEnum getEnumIntegerOnly() { return enumIntegerOnly; @@ -440,10 +440,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { return enumNumber; @@ -459,10 +459,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { return outerEnum; @@ -478,10 +478,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable public OuterEnumInteger getOuterEnumInteger() { return outerEnumInteger; @@ -497,10 +497,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable public OuterEnumDefaultValue getOuterEnumDefaultValue() { return outerEnumDefaultValue; @@ -516,10 +516,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable public OuterEnumIntegerDefaultValue getOuterEnumIntegerDefaultValue() { return outerEnumIntegerDefaultValue; @@ -663,12 +663,12 @@ public class EnumTest { openapiRequiredFields.add("enum_string_required"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EnumTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EnumTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EnumTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -797,22 +797,22 @@ public class EnumTest { } } - /** - * Create an instance of EnumTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of EnumTest - * @throws IOException if the JSON string is invalid with respect to EnumTest - */ + /** + * Create an instance of EnumTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of EnumTest + * @throws IOException if the JSON string is invalid with respect to EnumTest + */ public static EnumTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EnumTest.class); } - /** - * Convert an instance of EnumTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EnumTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java index 8eb7ac786f0..b3654ad2012 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java @@ -67,10 +67,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -86,10 +86,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull public String getTriangleType() { return triangleType; @@ -202,12 +202,12 @@ public class EquilateralTriangle { openapiRequiredFields.add("triangleType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to EquilateralTriangle - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to EquilateralTriangle + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!EquilateralTriangle.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -302,22 +302,22 @@ public class EquilateralTriangle { } } - /** - * Create an instance of EquilateralTriangle given an JSON string - * - * @param jsonString JSON string - * @return An instance of EquilateralTriangle - * @throws IOException if the JSON string is invalid with respect to EquilateralTriangle - */ + /** + * Create an instance of EquilateralTriangle given an JSON string + * + * @param jsonString JSON string + * @return An instance of EquilateralTriangle + * @throws IOException if the JSON string is invalid with respect to EquilateralTriangle + */ public static EquilateralTriangle fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, EquilateralTriangle.class); } - /** - * Convert an instance of EquilateralTriangle to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of EquilateralTriangle to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 11c78d1f071..49e733beb54 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -70,10 +70,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { return _file; @@ -97,10 +97,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { return files; @@ -211,12 +211,12 @@ public class FileSchemaTestClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FileSchemaTestClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FileSchemaTestClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -316,22 +316,22 @@ public class FileSchemaTestClass { } } - /** - * Create an instance of FileSchemaTestClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of FileSchemaTestClass - * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass - */ + /** + * Create an instance of FileSchemaTestClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of FileSchemaTestClass + * @throws IOException if the JSON string is invalid with respect to FileSchemaTestClass + */ public static FileSchemaTestClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FileSchemaTestClass.class); } - /** - * Convert an instance of FileSchemaTestClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FileSchemaTestClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java index 53345a830d8..6af5b6ad494 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java @@ -63,10 +63,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -174,12 +174,12 @@ public class Foo { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Foo - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Foo + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Foo.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class Foo { } } - /** - * Create an instance of Foo given an JSON string - * - * @param jsonString JSON string - * @return An instance of Foo - * @throws IOException if the JSON string is invalid with respect to Foo - */ + /** + * Create an instance of Foo given an JSON string + * + * @param jsonString JSON string + * @return An instance of Foo + * @throws IOException if the JSON string is invalid with respect to Foo + */ public static Foo fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Foo.class); } - /** - * Convert an instance of Foo to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Foo to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 38b8329c70d..8bc2763dbca 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -64,10 +64,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public Foo getString() { return string; @@ -175,12 +175,12 @@ public class FooGetDefaultResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FooGetDefaultResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FooGetDefaultResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FooGetDefaultResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -266,22 +266,22 @@ public class FooGetDefaultResponse { } } - /** - * Create an instance of FooGetDefaultResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of FooGetDefaultResponse - * @throws IOException if the JSON string is invalid with respect to FooGetDefaultResponse - */ + /** + * Create an instance of FooGetDefaultResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of FooGetDefaultResponse + * @throws IOException if the JSON string is invalid with respect to FooGetDefaultResponse + */ public static FooGetDefaultResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FooGetDefaultResponse.class); } - /** - * Convert an instance of FooGetDefaultResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FooGetDefaultResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java index 032aa2f3254..e37531d4948 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java @@ -132,12 +132,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { return integer; @@ -153,12 +153,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { return int32; @@ -174,10 +174,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { return int64; @@ -193,12 +193,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { return number; @@ -214,12 +214,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { return _float; @@ -235,12 +235,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { return _double; @@ -256,10 +256,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable public BigDecimal getDecimal() { return decimal; @@ -275,10 +275,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { return string; @@ -294,10 +294,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { return _byte; @@ -313,10 +313,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { return binary; @@ -332,10 +332,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { return date; @@ -351,10 +351,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -370,10 +370,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -389,10 +389,10 @@ public class FormatTest { return this; } - /** + /** * Get uuidWithDefault * @return uuidWithDefault - **/ + */ @javax.annotation.Nullable public UUID getUuidWithDefault() { return uuidWithDefault; @@ -408,10 +408,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { return password; @@ -427,10 +427,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable public String getPatternWithDigits() { return patternWithDigits; @@ -446,10 +446,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable public String getPatternWithDigitsAndDelimiter() { return patternWithDigitsAndDelimiter; @@ -609,12 +609,12 @@ public class FormatTest { openapiRequiredFields.add("password"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FormatTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FormatTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FormatTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -721,22 +721,22 @@ public class FormatTest { } } - /** - * Create an instance of FormatTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of FormatTest - * @throws IOException if the JSON string is invalid with respect to FormatTest - */ + /** + * Create an instance of FormatTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of FormatTest + * @throws IOException if the JSON string is invalid with respect to FormatTest + */ public static FormatTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FormatTest.class); } - /** - * Convert an instance of FormatTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FormatTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FreeFormObjectTestClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FreeFormObjectTestClass.java index 120ee6463c1..1d003e23249 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FreeFormObjectTestClass.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FreeFormObjectTestClass.java @@ -68,10 +68,10 @@ public class FreeFormObjectTestClass { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -87,10 +87,10 @@ public class FreeFormObjectTestClass { return this; } - /** + /** * Get properties * @return properties - **/ + */ @javax.annotation.Nullable public FreeFormObjectTestClassProperties getProperties() { return properties; @@ -201,12 +201,12 @@ public class FreeFormObjectTestClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to FreeFormObjectTestClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to FreeFormObjectTestClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!FreeFormObjectTestClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -295,22 +295,22 @@ public class FreeFormObjectTestClass { } } - /** - * Create an instance of FreeFormObjectTestClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of FreeFormObjectTestClass - * @throws IOException if the JSON string is invalid with respect to FreeFormObjectTestClass - */ + /** + * Create an instance of FreeFormObjectTestClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of FreeFormObjectTestClass + * @throws IOException if the JSON string is invalid with respect to FreeFormObjectTestClass + */ public static FreeFormObjectTestClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, FreeFormObjectTestClass.class); } - /** - * Convert an instance of FreeFormObjectTestClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of FreeFormObjectTestClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/GrandparentAnimal.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/GrandparentAnimal.java index 4f67fc579f3..bc4d400e5fc 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/GrandparentAnimal.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/GrandparentAnimal.java @@ -64,10 +64,10 @@ public class GrandparentAnimal { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nonnull public String getPetType() { return petType; @@ -176,12 +176,12 @@ public class GrandparentAnimal { openapiRequiredFields.add("pet_type"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to GrandparentAnimal - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to GrandparentAnimal + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!GrandparentAnimal.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -200,22 +200,22 @@ public class GrandparentAnimal { } - /** - * Create an instance of GrandparentAnimal given an JSON string - * - * @param jsonString JSON string - * @return An instance of GrandparentAnimal - * @throws IOException if the JSON string is invalid with respect to GrandparentAnimal - */ + /** + * Create an instance of GrandparentAnimal given an JSON string + * + * @param jsonString JSON string + * @return An instance of GrandparentAnimal + * @throws IOException if the JSON string is invalid with respect to GrandparentAnimal + */ public static GrandparentAnimal fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, GrandparentAnimal.class); } - /** - * Convert an instance of GrandparentAnimal to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of GrandparentAnimal to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index b5df60ae2e5..f643e13bfc1 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -71,10 +71,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -82,10 +82,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { return foo; @@ -193,12 +193,12 @@ public class HasOnlyReadOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to HasOnlyReadOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!HasOnlyReadOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -286,22 +286,22 @@ public class HasOnlyReadOnly { } } - /** - * Create an instance of HasOnlyReadOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of HasOnlyReadOnly - * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly - */ + /** + * Create an instance of HasOnlyReadOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of HasOnlyReadOnly + * @throws IOException if the JSON string is invalid with respect to HasOnlyReadOnly + */ public static HasOnlyReadOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, HasOnlyReadOnly.class); } - /** - * Convert an instance of HasOnlyReadOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of HasOnlyReadOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 1b4cc147575..d8860acf6b6 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -64,10 +64,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable public String getNullableMessage() { return nullableMessage; @@ -186,12 +186,12 @@ public class HealthCheckResult { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to HealthCheckResult - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to HealthCheckResult + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!HealthCheckResult.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -276,22 +276,22 @@ public class HealthCheckResult { } } - /** - * Create an instance of HealthCheckResult given an JSON string - * - * @param jsonString JSON string - * @return An instance of HealthCheckResult - * @throws IOException if the JSON string is invalid with respect to HealthCheckResult - */ + /** + * Create an instance of HealthCheckResult given an JSON string + * + * @param jsonString JSON string + * @return An instance of HealthCheckResult + * @throws IOException if the JSON string is invalid with respect to HealthCheckResult + */ public static HealthCheckResult fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, HealthCheckResult.class); } - /** - * Convert an instance of HealthCheckResult to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of HealthCheckResult to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java index 12b89c448ba..cac20410686 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java @@ -67,10 +67,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -86,10 +86,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull public String getTriangleType() { return triangleType; @@ -156,12 +156,12 @@ public class IsoscelesTriangle { openapiRequiredFields.add("triangleType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to IsoscelesTriangle - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to IsoscelesTriangle + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!IsoscelesTriangle.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -221,22 +221,22 @@ public class IsoscelesTriangle { } } - /** - * Create an instance of IsoscelesTriangle given an JSON string - * - * @param jsonString JSON string - * @return An instance of IsoscelesTriangle - * @throws IOException if the JSON string is invalid with respect to IsoscelesTriangle - */ + /** + * Create an instance of IsoscelesTriangle given an JSON string + * + * @param jsonString JSON string + * @return An instance of IsoscelesTriangle + * @throws IOException if the JSON string is invalid with respect to IsoscelesTriangle + */ public static IsoscelesTriangle fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, IsoscelesTriangle.class); } - /** - * Convert an instance of IsoscelesTriangle to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of IsoscelesTriangle to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java index ccc5c0ab802..3876a32e7ab 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java @@ -137,10 +137,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { return mapMapOfString; @@ -164,10 +164,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { return mapOfEnumString; @@ -191,10 +191,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { return directMap; @@ -218,10 +218,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { return indirectMap; @@ -338,12 +338,12 @@ public class MapTest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MapTest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MapTest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MapTest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -425,22 +425,22 @@ public class MapTest { } } - /** - * Create an instance of MapTest given an JSON string - * - * @param jsonString JSON string - * @return An instance of MapTest - * @throws IOException if the JSON string is invalid with respect to MapTest - */ + /** + * Create an instance of MapTest given an JSON string + * + * @param jsonString JSON string + * @return An instance of MapTest + * @throws IOException if the JSON string is invalid with respect to MapTest + */ public static MapTest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MapTest.class); } - /** - * Convert an instance of MapTest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MapTest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index f673d98753d..d725aaf5632 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -76,10 +76,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { return uuid; @@ -95,10 +95,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { return dateTime; @@ -122,10 +122,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { return map; @@ -239,12 +239,12 @@ public class MixedPropertiesAndAdditionalPropertiesClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!MixedPropertiesAndAdditionalPropertiesClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -329,22 +329,22 @@ public class MixedPropertiesAndAdditionalPropertiesClass { } } - /** - * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of MixedPropertiesAndAdditionalPropertiesClass - * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass - */ + /** + * Create an instance of MixedPropertiesAndAdditionalPropertiesClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of MixedPropertiesAndAdditionalPropertiesClass + * @throws IOException if the JSON string is invalid with respect to MixedPropertiesAndAdditionalPropertiesClass + */ public static MixedPropertiesAndAdditionalPropertiesClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, MixedPropertiesAndAdditionalPropertiesClass.class); } - /** - * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of MixedPropertiesAndAdditionalPropertiesClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java index beed575fd50..635e17341f2 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java @@ -67,10 +67,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { return name; @@ -86,10 +86,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { return propertyClass; @@ -200,12 +200,12 @@ public class Model200Response { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Model200Response - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Model200Response + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Model200Response.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Model200Response { } } - /** - * Create an instance of Model200Response given an JSON string - * - * @param jsonString JSON string - * @return An instance of Model200Response - * @throws IOException if the JSON string is invalid with respect to Model200Response - */ + /** + * Create an instance of Model200Response given an JSON string + * + * @param jsonString JSON string + * @return An instance of Model200Response + * @throws IOException if the JSON string is invalid with respect to Model200Response + */ public static Model200Response fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Model200Response.class); } - /** - * Convert an instance of Model200Response to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Model200Response to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java index ce2197e4a10..d065a555af1 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -71,10 +71,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { return code; @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { return message; @@ -226,12 +226,12 @@ public class ModelApiResponse { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelApiResponse + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelApiResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -319,22 +319,22 @@ public class ModelApiResponse { } } - /** - * Create an instance of ModelApiResponse given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelApiResponse - * @throws IOException if the JSON string is invalid with respect to ModelApiResponse - */ + /** + * Create an instance of ModelApiResponse given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelApiResponse + * @throws IOException if the JSON string is invalid with respect to ModelApiResponse + */ public static ModelApiResponse fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelApiResponse.class); } - /** - * Convert an instance of ModelApiResponse to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelApiResponse to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java index 1957fa70daa..fabfee63655 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java @@ -63,10 +63,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { return sourceURI; @@ -174,12 +174,12 @@ public class ModelFile { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelFile - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelFile + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelFile.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class ModelFile { } } - /** - * Create an instance of ModelFile given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelFile - * @throws IOException if the JSON string is invalid with respect to ModelFile - */ + /** + * Create an instance of ModelFile given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelFile + * @throws IOException if the JSON string is invalid with respect to ModelFile + */ public static ModelFile fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelFile.class); } - /** - * Convert an instance of ModelFile to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelFile to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java index 964107c6915..9c4fc8d1b4c 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java @@ -63,10 +63,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { return _123list; @@ -174,12 +174,12 @@ public class ModelList { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelList - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelList + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelList.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class ModelList { } } - /** - * Create an instance of ModelList given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelList - * @throws IOException if the JSON string is invalid with respect to ModelList - */ + /** + * Create an instance of ModelList given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelList + * @throws IOException if the JSON string is invalid with respect to ModelList + */ public static ModelList fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelList.class); } - /** - * Convert an instance of ModelList to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelList to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java index f1d5a61ef29..7fd0bc41509 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -63,10 +63,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { return _return; @@ -174,12 +174,12 @@ public class ModelReturn { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelReturn - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelReturn + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelReturn.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -261,22 +261,22 @@ public class ModelReturn { } } - /** - * Create an instance of ModelReturn given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelReturn - * @throws IOException if the JSON string is invalid with respect to ModelReturn - */ + /** + * Create an instance of ModelReturn given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelReturn + * @throws IOException if the JSON string is invalid with respect to ModelReturn + */ public static ModelReturn fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelReturn.class); } - /** - * Convert an instance of ModelReturn to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelReturn to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelWithOneOfAnyOfProperties.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelWithOneOfAnyOfProperties.java index bda9aaf9509..c9ff15febb1 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelWithOneOfAnyOfProperties.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelWithOneOfAnyOfProperties.java @@ -69,10 +69,10 @@ public class ModelWithOneOfAnyOfProperties { return this; } - /** + /** * Get oneofProp * @return oneofProp - **/ + */ @javax.annotation.Nullable public ArrayOneOf getOneofProp() { return oneofProp; @@ -88,10 +88,10 @@ public class ModelWithOneOfAnyOfProperties { return this; } - /** + /** * Get anyofProp * @return anyofProp - **/ + */ @javax.annotation.Nullable public ArrayAnyOf getAnyofProp() { return anyofProp; @@ -202,12 +202,12 @@ public class ModelWithOneOfAnyOfProperties { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ModelWithOneOfAnyOfProperties - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ModelWithOneOfAnyOfProperties + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ModelWithOneOfAnyOfProperties.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -297,22 +297,22 @@ public class ModelWithOneOfAnyOfProperties { } } - /** - * Create an instance of ModelWithOneOfAnyOfProperties given an JSON string - * - * @param jsonString JSON string - * @return An instance of ModelWithOneOfAnyOfProperties - * @throws IOException if the JSON string is invalid with respect to ModelWithOneOfAnyOfProperties - */ + /** + * Create an instance of ModelWithOneOfAnyOfProperties given an JSON string + * + * @param jsonString JSON string + * @return An instance of ModelWithOneOfAnyOfProperties + * @throws IOException if the JSON string is invalid with respect to ModelWithOneOfAnyOfProperties + */ public static ModelWithOneOfAnyOfProperties fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ModelWithOneOfAnyOfProperties.class); } - /** - * Convert an instance of ModelWithOneOfAnyOfProperties to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ModelWithOneOfAnyOfProperties to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java index e0ea56393ff..2174cfa7eac 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java @@ -84,10 +84,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { return name; @@ -98,10 +98,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { return snakeCase; @@ -114,10 +114,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { return property; @@ -128,10 +128,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { return _123number; @@ -246,12 +246,12 @@ public class Name { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Name - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Name + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Name.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -343,22 +343,22 @@ public class Name { } } - /** - * Create an instance of Name given an JSON string - * - * @param jsonString JSON string - * @return An instance of Name - * @throws IOException if the JSON string is invalid with respect to Name - */ + /** + * Create an instance of Name given an JSON string + * + * @param jsonString JSON string + * @return An instance of Name + * @throws IOException if the JSON string is invalid with respect to Name + */ public static Name fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Name.class); } - /** - * Convert an instance of Name to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Name to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPet.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPet.java index 40a0a6f8bc8..fa28e27b4b6 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPet.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPet.java @@ -146,10 +146,10 @@ public class NewPet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -165,10 +165,10 @@ public class NewPet { return this; } - /** + /** * Get categoryInlineAllof * @return categoryInlineAllof - **/ + */ @javax.annotation.Nullable public NewPetCategoryInlineAllof getCategoryInlineAllof() { return categoryInlineAllof; @@ -184,10 +184,10 @@ public class NewPet { return this; } - /** + /** * Get categoryAllOfRef * @return categoryAllOfRef - **/ + */ @javax.annotation.Nullable public Category getCategoryAllOfRef() { return categoryAllOfRef; @@ -203,10 +203,10 @@ public class NewPet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -230,10 +230,10 @@ public class NewPet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -257,10 +257,10 @@ public class NewPet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -276,10 +276,10 @@ public class NewPet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -407,12 +407,12 @@ public class NewPet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NewPet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NewPet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NewPet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -539,22 +539,22 @@ public class NewPet { } } - /** - * Create an instance of NewPet given an JSON string - * - * @param jsonString JSON string - * @return An instance of NewPet - * @throws IOException if the JSON string is invalid with respect to NewPet - */ + /** + * Create an instance of NewPet given an JSON string + * + * @param jsonString JSON string + * @return An instance of NewPet + * @throws IOException if the JSON string is invalid with respect to NewPet + */ public static NewPet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NewPet.class); } - /** - * Convert an instance of NewPet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NewPet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllof.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllof.java index f3752027370..ddccc9a51ec 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllof.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllof.java @@ -72,10 +72,10 @@ public class NewPetCategoryInlineAllof { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -91,10 +91,10 @@ public class NewPetCategoryInlineAllof { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -110,10 +110,10 @@ public class NewPetCategoryInlineAllof { return this; } - /** + /** * Get categoryTag * @return categoryTag - **/ + */ @javax.annotation.Nullable public NewPetCategoryInlineAllofAllOfCategoryTag getCategoryTag() { return categoryTag; @@ -228,12 +228,12 @@ public class NewPetCategoryInlineAllof { openapiRequiredFields.add("name"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NewPetCategoryInlineAllof - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NewPetCategoryInlineAllof + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NewPetCategoryInlineAllof.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -329,22 +329,22 @@ public class NewPetCategoryInlineAllof { } } - /** - * Create an instance of NewPetCategoryInlineAllof given an JSON string - * - * @param jsonString JSON string - * @return An instance of NewPetCategoryInlineAllof - * @throws IOException if the JSON string is invalid with respect to NewPetCategoryInlineAllof - */ + /** + * Create an instance of NewPetCategoryInlineAllof given an JSON string + * + * @param jsonString JSON string + * @return An instance of NewPetCategoryInlineAllof + * @throws IOException if the JSON string is invalid with respect to NewPetCategoryInlineAllof + */ public static NewPetCategoryInlineAllof fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NewPetCategoryInlineAllof.class); } - /** - * Convert an instance of NewPetCategoryInlineAllof to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NewPetCategoryInlineAllof to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllofAllOfCategoryTag.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllofAllOfCategoryTag.java index 27e396befdf..ae7f050e836 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllofAllOfCategoryTag.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NewPetCategoryInlineAllofAllOfCategoryTag.java @@ -67,10 +67,10 @@ public class NewPetCategoryInlineAllofAllOfCategoryTag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class NewPetCategoryInlineAllofAllOfCategoryTag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class NewPetCategoryInlineAllofAllOfCategoryTag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NewPetCategoryInlineAllofAllOfCategoryTag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NewPetCategoryInlineAllofAllOfCategoryTag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NewPetCategoryInlineAllofAllOfCategoryTag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class NewPetCategoryInlineAllofAllOfCategoryTag { } } - /** - * Create an instance of NewPetCategoryInlineAllofAllOfCategoryTag given an JSON string - * - * @param jsonString JSON string - * @return An instance of NewPetCategoryInlineAllofAllOfCategoryTag - * @throws IOException if the JSON string is invalid with respect to NewPetCategoryInlineAllofAllOfCategoryTag - */ + /** + * Create an instance of NewPetCategoryInlineAllofAllOfCategoryTag given an JSON string + * + * @param jsonString JSON string + * @return An instance of NewPetCategoryInlineAllofAllOfCategoryTag + * @throws IOException if the JSON string is invalid with respect to NewPetCategoryInlineAllofAllOfCategoryTag + */ public static NewPetCategoryInlineAllofAllOfCategoryTag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NewPetCategoryInlineAllofAllOfCategoryTag.class); } - /** - * Convert an instance of NewPetCategoryInlineAllofAllOfCategoryTag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NewPetCategoryInlineAllofAllOfCategoryTag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NullableClass.java index 6dc916b8265..2e20d23ff22 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NullableClass.java @@ -115,10 +115,10 @@ public class NullableClass { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable public Integer getIntegerProp() { return integerProp; @@ -134,10 +134,10 @@ public class NullableClass { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable public BigDecimal getNumberProp() { return numberProp; @@ -153,10 +153,10 @@ public class NullableClass { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable public Boolean getBooleanProp() { return booleanProp; @@ -172,10 +172,10 @@ public class NullableClass { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable public String getStringProp() { return stringProp; @@ -191,10 +191,10 @@ public class NullableClass { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable public LocalDate getDateProp() { return dateProp; @@ -210,10 +210,10 @@ public class NullableClass { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDatetimeProp() { return datetimeProp; @@ -237,10 +237,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable public List getArrayNullableProp() { return arrayNullableProp; @@ -264,10 +264,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable public List getArrayAndItemsNullableProp() { return arrayAndItemsNullableProp; @@ -291,10 +291,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable public List getArrayItemsNullable() { return arrayItemsNullable; @@ -318,10 +318,10 @@ public class NullableClass { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable public Map getObjectNullableProp() { return objectNullableProp; @@ -345,10 +345,10 @@ public class NullableClass { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable public Map getObjectAndItemsNullableProp() { return objectAndItemsNullableProp; @@ -372,10 +372,10 @@ public class NullableClass { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable public Map getObjectItemsNullable() { return objectItemsNullable; @@ -527,12 +527,12 @@ public class NullableClass { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NullableClass - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NullableClass + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NullableClass.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -629,22 +629,22 @@ public class NullableClass { } } - /** - * Create an instance of NullableClass given an JSON string - * - * @param jsonString JSON string - * @return An instance of NullableClass - * @throws IOException if the JSON string is invalid with respect to NullableClass - */ + /** + * Create an instance of NullableClass given an JSON string + * + * @param jsonString JSON string + * @return An instance of NullableClass + * @throws IOException if the JSON string is invalid with respect to NullableClass + */ public static NullableClass fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NullableClass.class); } - /** - * Convert an instance of NullableClass to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NullableClass to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java index 88eb0c0fae2..ffee76b53c6 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -64,10 +64,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { return justNumber; @@ -175,12 +175,12 @@ public class NumberOnly { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to NumberOnly - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to NumberOnly + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!NumberOnly.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -262,22 +262,22 @@ public class NumberOnly { } } - /** - * Create an instance of NumberOnly given an JSON string - * - * @param jsonString JSON string - * @return An instance of NumberOnly - * @throws IOException if the JSON string is invalid with respect to NumberOnly - */ + /** + * Create an instance of NumberOnly given an JSON string + * + * @param jsonString JSON string + * @return An instance of NumberOnly + * @throws IOException if the JSON string is invalid with respect to NumberOnly + */ public static NumberOnly fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, NumberOnly.class); } - /** - * Convert an instance of NumberOnly to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of NumberOnly to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 24bf6f2f67e..b7c088152b2 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -82,10 +82,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public String getUuid() { return uuid; @@ -102,11 +102,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public BigDecimal getId() { @@ -125,11 +125,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public DeprecatedObject getDeprecatedRef() { @@ -156,11 +156,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable public List getBars() { @@ -279,12 +279,12 @@ public class ObjectWithDeprecatedFields { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ObjectWithDeprecatedFields - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ObjectWithDeprecatedFields + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ObjectWithDeprecatedFields.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -377,22 +377,22 @@ public class ObjectWithDeprecatedFields { } } - /** - * Create an instance of ObjectWithDeprecatedFields given an JSON string - * - * @param jsonString JSON string - * @return An instance of ObjectWithDeprecatedFields - * @throws IOException if the JSON string is invalid with respect to ObjectWithDeprecatedFields - */ + /** + * Create an instance of ObjectWithDeprecatedFields given an JSON string + * + * @param jsonString JSON string + * @return An instance of ObjectWithDeprecatedFields + * @throws IOException if the JSON string is invalid with respect to ObjectWithDeprecatedFields + */ public static ObjectWithDeprecatedFields fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ObjectWithDeprecatedFields.class); } - /** - * Convert an instance of ObjectWithDeprecatedFields to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ObjectWithDeprecatedFields to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java index 0a4685c0632..d6574a26c57 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { return petId; @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { return quantity; @@ -195,10 +195,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { return shipDate; @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { return complete; @@ -359,12 +359,12 @@ public class Order { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Order - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Order + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Order.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -453,22 +453,22 @@ public class Order { } } - /** - * Create an instance of Order given an JSON string - * - * @param jsonString JSON string - * @return An instance of Order - * @throws IOException if the JSON string is invalid with respect to Order - */ + /** + * Create an instance of Order given an JSON string + * + * @param jsonString JSON string + * @return An instance of Order + * @throws IOException if the JSON string is invalid with respect to Order + */ public static Order fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Order.class); } - /** - * Convert an instance of Order to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Order to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java index 6e561abdf94..4129f116f94 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -72,10 +72,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { return myNumber; @@ -91,10 +91,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { return myString; @@ -110,10 +110,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { return myBoolean; @@ -227,12 +227,12 @@ public class OuterComposite { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to OuterComposite - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to OuterComposite + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!OuterComposite.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -317,22 +317,22 @@ public class OuterComposite { } } - /** - * Create an instance of OuterComposite given an JSON string - * - * @param jsonString JSON string - * @return An instance of OuterComposite - * @throws IOException if the JSON string is invalid with respect to OuterComposite - */ + /** + * Create an instance of OuterComposite given an JSON string + * + * @param jsonString JSON string + * @return An instance of OuterComposite + * @throws IOException if the JSON string is invalid with respect to OuterComposite + */ public static OuterComposite fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, OuterComposite.class); } - /** - * Convert an instance of OuterComposite to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of OuterComposite to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java index 7a661b2eb01..3ef6b736cfa 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java @@ -152,12 +152,12 @@ public class ParentPet extends GrandparentAnimal { openapiRequiredFields.add("pet_type"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ParentPet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ParentPet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ParentPet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -245,22 +245,22 @@ public class ParentPet extends GrandparentAnimal { } } - /** - * Create an instance of ParentPet given an JSON string - * - * @param jsonString JSON string - * @return An instance of ParentPet - * @throws IOException if the JSON string is invalid with respect to ParentPet - */ + /** + * Create an instance of ParentPet given an JSON string + * + * @param jsonString JSON string + * @return An instance of ParentPet + * @throws IOException if the JSON string is invalid with respect to ParentPet + */ public static ParentPet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ParentPet.class); } - /** - * Convert an instance of ParentPet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ParentPet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java index 0d42bff17f3..9d81b9be83a 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java @@ -141,10 +141,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -179,10 +179,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -206,10 +206,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -252,10 +252,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -380,12 +380,12 @@ public class Pet { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Pet - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Pet + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Pet.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -508,22 +508,22 @@ public class Pet { } } - /** - * Create an instance of Pet given an JSON string - * - * @param jsonString JSON string - * @return An instance of Pet - * @throws IOException if the JSON string is invalid with respect to Pet - */ + /** + * Create an instance of Pet given an JSON string + * + * @param jsonString JSON string + * @return An instance of Pet + * @throws IOException if the JSON string is invalid with respect to Pet + */ public static Pet fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Pet.class); } - /** - * Convert an instance of Pet to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Pet to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetComposition.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetComposition.java index ec61e2206a9..3f8cdee6f98 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetComposition.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetComposition.java @@ -141,10 +141,10 @@ public class PetComposition { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class PetComposition { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -179,10 +179,10 @@ public class PetComposition { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -206,10 +206,10 @@ public class PetComposition { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class PetComposition { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -252,10 +252,10 @@ public class PetComposition { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -380,12 +380,12 @@ public class PetComposition { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetComposition - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetComposition + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetComposition.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -508,22 +508,22 @@ public class PetComposition { } } - /** - * Create an instance of PetComposition given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetComposition - * @throws IOException if the JSON string is invalid with respect to PetComposition - */ + /** + * Create an instance of PetComposition given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetComposition + * @throws IOException if the JSON string is invalid with respect to PetComposition + */ public static PetComposition fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetComposition.class); } - /** - * Convert an instance of PetComposition to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetComposition to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetRef.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetRef.java index cc566a89f5b..5d972266c93 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetRef.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetRef.java @@ -141,10 +141,10 @@ public class PetRef { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class PetRef { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -179,10 +179,10 @@ public class PetRef { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -206,10 +206,10 @@ public class PetRef { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class PetRef { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -252,10 +252,10 @@ public class PetRef { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -380,12 +380,12 @@ public class PetRef { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetRef - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetRef + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetRef.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -508,22 +508,22 @@ public class PetRef { } } - /** - * Create an instance of PetRef given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetRef - * @throws IOException if the JSON string is invalid with respect to PetRef - */ + /** + * Create an instance of PetRef given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetRef + * @throws IOException if the JSON string is invalid with respect to PetRef + */ public static PetRef fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetRef.class); } - /** - * Convert an instance of PetRef to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetRef to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetUsingAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetUsingAllOf.java index 2b8629e047e..109e1319171 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetUsingAllOf.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetUsingAllOf.java @@ -141,10 +141,10 @@ public class PetUsingAllOf { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class PetUsingAllOf { return this; } - /** + /** * multi line description 2nd line last line * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -179,10 +179,10 @@ public class PetUsingAllOf { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -206,10 +206,10 @@ public class PetUsingAllOf { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class PetUsingAllOf { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { return tags; @@ -252,10 +252,10 @@ public class PetUsingAllOf { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -380,12 +380,12 @@ public class PetUsingAllOf { openapiRequiredFields.add("photoUrls"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetUsingAllOf - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetUsingAllOf + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetUsingAllOf.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -508,22 +508,22 @@ public class PetUsingAllOf { } } - /** - * Create an instance of PetUsingAllOf given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetUsingAllOf - * @throws IOException if the JSON string is invalid with respect to PetUsingAllOf - */ + /** + * Create an instance of PetUsingAllOf given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetUsingAllOf + * @throws IOException if the JSON string is invalid with respect to PetUsingAllOf + */ public static PetUsingAllOf fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetUsingAllOf.class); } - /** - * Convert an instance of PetUsingAllOf to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetUsingAllOf to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java index a5450400a46..45f6682ebaa 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java @@ -141,10 +141,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -160,10 +160,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { return category; @@ -179,10 +179,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -206,10 +206,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public List getPhotoUrls() { return photoUrls; @@ -233,10 +233,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nonnull public List getTags() { return tags; @@ -252,10 +252,10 @@ public class PetWithRequiredTags { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { return status; @@ -381,12 +381,12 @@ public class PetWithRequiredTags { openapiRequiredFields.add("tags"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredTags - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PetWithRequiredTags + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PetWithRequiredTags.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -505,22 +505,22 @@ public class PetWithRequiredTags { } } - /** - * Create an instance of PetWithRequiredTags given an JSON string - * - * @param jsonString JSON string - * @return An instance of PetWithRequiredTags - * @throws IOException if the JSON string is invalid with respect to PetWithRequiredTags - */ + /** + * Create an instance of PetWithRequiredTags given an JSON string + * + * @param jsonString JSON string + * @return An instance of PetWithRequiredTags + * @throws IOException if the JSON string is invalid with respect to PetWithRequiredTags + */ public static PetWithRequiredTags fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PetWithRequiredTags.class); } - /** - * Convert an instance of PetWithRequiredTags to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PetWithRequiredTags to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PropertyNameCollision.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PropertyNameCollision.java index 93990caedb0..c0f6b156477 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PropertyNameCollision.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PropertyNameCollision.java @@ -71,10 +71,10 @@ public class PropertyNameCollision { return this; } - /** + /** * Get underscoreType * @return underscoreType - **/ + */ @javax.annotation.Nullable public String getUnderscoreType() { return underscoreType; @@ -90,10 +90,10 @@ public class PropertyNameCollision { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { return type; @@ -109,10 +109,10 @@ public class PropertyNameCollision { return this; } - /** + /** * Get typeWithUnderscore * @return typeWithUnderscore - **/ + */ @javax.annotation.Nullable public String getTypeWithUnderscore() { return typeWithUnderscore; @@ -226,12 +226,12 @@ public class PropertyNameCollision { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to PropertyNameCollision - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to PropertyNameCollision + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!PropertyNameCollision.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -322,22 +322,22 @@ public class PropertyNameCollision { } } - /** - * Create an instance of PropertyNameCollision given an JSON string - * - * @param jsonString JSON string - * @return An instance of PropertyNameCollision - * @throws IOException if the JSON string is invalid with respect to PropertyNameCollision - */ + /** + * Create an instance of PropertyNameCollision given an JSON string + * + * @param jsonString JSON string + * @return An instance of PropertyNameCollision + * @throws IOException if the JSON string is invalid with respect to PropertyNameCollision + */ public static PropertyNameCollision fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, PropertyNameCollision.class); } - /** - * Convert an instance of PropertyNameCollision to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of PropertyNameCollision to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java index 8407e0e50d9..7fe9dad0c8c 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java @@ -63,10 +63,10 @@ public class QuadrilateralInterface { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull public String getQuadrilateralType() { return quadrilateralType; @@ -175,12 +175,12 @@ public class QuadrilateralInterface { openapiRequiredFields.add("quadrilateralType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to QuadrilateralInterface - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to QuadrilateralInterface + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!QuadrilateralInterface.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -272,22 +272,22 @@ public class QuadrilateralInterface { } } - /** - * Create an instance of QuadrilateralInterface given an JSON string - * - * @param jsonString JSON string - * @return An instance of QuadrilateralInterface - * @throws IOException if the JSON string is invalid with respect to QuadrilateralInterface - */ + /** + * Create an instance of QuadrilateralInterface given an JSON string + * + * @param jsonString JSON string + * @return An instance of QuadrilateralInterface + * @throws IOException if the JSON string is invalid with respect to QuadrilateralInterface + */ public static QuadrilateralInterface fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, QuadrilateralInterface.class); } - /** - * Convert an instance of QuadrilateralInterface to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of QuadrilateralInterface to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index a88b720df7a..5c0a6f4e10a 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -69,10 +69,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { return bar; @@ -85,10 +85,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { return baz; @@ -199,12 +199,12 @@ public class ReadOnlyFirst { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ReadOnlyFirst + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ReadOnlyFirst.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -292,22 +292,22 @@ public class ReadOnlyFirst { } } - /** - * Create an instance of ReadOnlyFirst given an JSON string - * - * @param jsonString JSON string - * @return An instance of ReadOnlyFirst - * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst - */ + /** + * Create an instance of ReadOnlyFirst given an JSON string + * + * @param jsonString JSON string + * @return An instance of ReadOnlyFirst + * @throws IOException if the JSON string is invalid with respect to ReadOnlyFirst + */ public static ReadOnlyFirst fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ReadOnlyFirst.class); } - /** - * Convert an instance of ReadOnlyFirst to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ReadOnlyFirst to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java index a9e3130a98b..90a6fd3aeb9 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java @@ -67,10 +67,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -86,10 +86,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull public String getTriangleType() { return triangleType; @@ -202,12 +202,12 @@ public class ScaleneTriangle { openapiRequiredFields.add("triangleType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ScaleneTriangle - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ScaleneTriangle + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ScaleneTriangle.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -302,22 +302,22 @@ public class ScaleneTriangle { } } - /** - * Create an instance of ScaleneTriangle given an JSON string - * - * @param jsonString JSON string - * @return An instance of ScaleneTriangle - * @throws IOException if the JSON string is invalid with respect to ScaleneTriangle - */ + /** + * Create an instance of ScaleneTriangle given an JSON string + * + * @param jsonString JSON string + * @return An instance of ScaleneTriangle + * @throws IOException if the JSON string is invalid with respect to ScaleneTriangle + */ public static ScaleneTriangle fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ScaleneTriangle.class); } - /** - * Convert an instance of ScaleneTriangle to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ScaleneTriangle to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java index 2ddb3321613..5f9eaa6e6ba 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java @@ -63,10 +63,10 @@ public class ShapeInterface { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -175,12 +175,12 @@ public class ShapeInterface { openapiRequiredFields.add("shapeType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to ShapeInterface - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to ShapeInterface + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!ShapeInterface.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -272,22 +272,22 @@ public class ShapeInterface { } } - /** - * Create an instance of ShapeInterface given an JSON string - * - * @param jsonString JSON string - * @return An instance of ShapeInterface - * @throws IOException if the JSON string is invalid with respect to ShapeInterface - */ + /** + * Create an instance of ShapeInterface given an JSON string + * + * @param jsonString JSON string + * @return An instance of ShapeInterface + * @throws IOException if the JSON string is invalid with respect to ShapeInterface + */ public static ShapeInterface fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, ShapeInterface.class); } - /** - * Convert an instance of ShapeInterface to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of ShapeInterface to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java index 9a432293cb2..597ca87b984 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java @@ -67,10 +67,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull public String getShapeType() { return shapeType; @@ -86,10 +86,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull public String getQuadrilateralType() { return quadrilateralType; @@ -202,12 +202,12 @@ public class SimpleQuadrilateral { openapiRequiredFields.add("quadrilateralType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SimpleQuadrilateral - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SimpleQuadrilateral + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SimpleQuadrilateral.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -302,22 +302,22 @@ public class SimpleQuadrilateral { } } - /** - * Create an instance of SimpleQuadrilateral given an JSON string - * - * @param jsonString JSON string - * @return An instance of SimpleQuadrilateral - * @throws IOException if the JSON string is invalid with respect to SimpleQuadrilateral - */ + /** + * Create an instance of SimpleQuadrilateral given an JSON string + * + * @param jsonString JSON string + * @return An instance of SimpleQuadrilateral + * @throws IOException if the JSON string is invalid with respect to SimpleQuadrilateral + */ public static SimpleQuadrilateral fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SimpleQuadrilateral.class); } - /** - * Convert an instance of SimpleQuadrilateral to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SimpleQuadrilateral to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java index 25379355bbb..06ca8214584 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -67,10 +67,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { return $specialPropertyName; @@ -86,10 +86,10 @@ public class SpecialModelName { return this; } - /** + /** * Get specialModelName * @return specialModelName - **/ + */ @javax.annotation.Nullable public String getSpecialModelName() { return specialModelName; @@ -200,12 +200,12 @@ public class SpecialModelName { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to SpecialModelName - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to SpecialModelName + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!SpecialModelName.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class SpecialModelName { } } - /** - * Create an instance of SpecialModelName given an JSON string - * - * @param jsonString JSON string - * @return An instance of SpecialModelName - * @throws IOException if the JSON string is invalid with respect to SpecialModelName - */ + /** + * Create an instance of SpecialModelName given an JSON string + * + * @param jsonString JSON string + * @return An instance of SpecialModelName + * @throws IOException if the JSON string is invalid with respect to SpecialModelName + */ public static SpecialModelName fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, SpecialModelName.class); } - /** - * Convert an instance of SpecialModelName to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of SpecialModelName to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java index 56a38a94ac1..6079beff25f 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java @@ -67,10 +67,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -86,10 +86,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { return name; @@ -200,12 +200,12 @@ public class Tag { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Tag - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Tag + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Tag.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -290,22 +290,22 @@ public class Tag { } } - /** - * Create an instance of Tag given an JSON string - * - * @param jsonString JSON string - * @return An instance of Tag - * @throws IOException if the JSON string is invalid with respect to Tag - */ + /** + * Create an instance of Tag given an JSON string + * + * @param jsonString JSON string + * @return An instance of Tag + * @throws IOException if the JSON string is invalid with respect to Tag + */ public static Tag fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Tag.class); } - /** - * Convert an instance of Tag to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Tag to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index 9c3fef28140..d8ecf3e595a 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -63,10 +63,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest { return this; } - /** + /** * Get someProperty * @return someProperty - **/ + */ @javax.annotation.Nullable public String getSomeProperty() { return someProperty; @@ -174,12 +174,12 @@ public class TestInlineFreeformAdditionalPropertiesRequest { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TestInlineFreeformAdditionalPropertiesRequest - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TestInlineFreeformAdditionalPropertiesRequest + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TestInlineFreeformAdditionalPropertiesRequest.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -264,22 +264,22 @@ public class TestInlineFreeformAdditionalPropertiesRequest { } } - /** - * Create an instance of TestInlineFreeformAdditionalPropertiesRequest given an JSON string - * - * @param jsonString JSON string - * @return An instance of TestInlineFreeformAdditionalPropertiesRequest - * @throws IOException if the JSON string is invalid with respect to TestInlineFreeformAdditionalPropertiesRequest - */ + /** + * Create an instance of TestInlineFreeformAdditionalPropertiesRequest given an JSON string + * + * @param jsonString JSON string + * @return An instance of TestInlineFreeformAdditionalPropertiesRequest + * @throws IOException if the JSON string is invalid with respect to TestInlineFreeformAdditionalPropertiesRequest + */ public static TestInlineFreeformAdditionalPropertiesRequest fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TestInlineFreeformAdditionalPropertiesRequest.class); } - /** - * Convert an instance of TestInlineFreeformAdditionalPropertiesRequest to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TestInlineFreeformAdditionalPropertiesRequest to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java index 3dc9b7b92ec..57c96e16982 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java @@ -63,10 +63,10 @@ public class TriangleInterface { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull public String getTriangleType() { return triangleType; @@ -175,12 +175,12 @@ public class TriangleInterface { openapiRequiredFields.add("triangleType"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to TriangleInterface - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to TriangleInterface + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!TriangleInterface.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -272,22 +272,22 @@ public class TriangleInterface { } } - /** - * Create an instance of TriangleInterface given an JSON string - * - * @param jsonString JSON string - * @return An instance of TriangleInterface - * @throws IOException if the JSON string is invalid with respect to TriangleInterface - */ + /** + * Create an instance of TriangleInterface given an JSON string + * + * @param jsonString JSON string + * @return An instance of TriangleInterface + * @throws IOException if the JSON string is invalid with respect to TriangleInterface + */ public static TriangleInterface fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, TriangleInterface.class); } - /** - * Convert an instance of TriangleInterface to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of TriangleInterface to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java index 3879185a55f..87fcf2d563f 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java @@ -108,10 +108,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { return id; @@ -127,10 +127,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { return username; @@ -146,10 +146,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { return firstName; @@ -165,10 +165,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { return lastName; @@ -184,10 +184,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { return email; @@ -203,10 +203,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { return password; @@ -222,10 +222,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { return phone; @@ -241,10 +241,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { return userStatus; @@ -260,10 +260,10 @@ public class User { return this; } - /** + /** * test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. * @return objectWithNoDeclaredProps - **/ + */ @javax.annotation.Nullable public Object getObjectWithNoDeclaredProps() { return objectWithNoDeclaredProps; @@ -279,10 +279,10 @@ public class User { return this; } - /** + /** * test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. * @return objectWithNoDeclaredPropsNullable - **/ + */ @javax.annotation.Nullable public Object getObjectWithNoDeclaredPropsNullable() { return objectWithNoDeclaredPropsNullable; @@ -298,10 +298,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 * @return anyTypeProp - **/ + */ @javax.annotation.Nullable public Object getAnyTypeProp() { return anyTypeProp; @@ -317,10 +317,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. * @return anyTypePropNullable - **/ + */ @javax.annotation.Nullable public Object getAnyTypePropNullable() { return anyTypePropNullable; @@ -472,12 +472,12 @@ public class User { openapiRequiredFields = new HashSet(); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to User - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to User + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!User.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -577,22 +577,22 @@ public class User { } } - /** - * Create an instance of User given an JSON string - * - * @param jsonString JSON string - * @return An instance of User - * @throws IOException if the JSON string is invalid with respect to User - */ + /** + * Create an instance of User given an JSON string + * + * @param jsonString JSON string + * @return An instance of User + * @throws IOException if the JSON string is invalid with respect to User + */ public static User fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, User.class); } - /** - * Convert an instance of User to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of User to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Variable.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Variable.java index 68cf8635344..6c1175d1e5e 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Variable.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Variable.java @@ -68,10 +68,10 @@ public class Variable { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { return name; @@ -87,10 +87,10 @@ public class Variable { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull public Value getValue() { return value; @@ -203,12 +203,12 @@ public class Variable { openapiRequiredFields.add("value"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Variable - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Variable + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Variable.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -302,22 +302,22 @@ public class Variable { } } - /** - * Create an instance of Variable given an JSON string - * - * @param jsonString JSON string - * @return An instance of Variable - * @throws IOException if the JSON string is invalid with respect to Variable - */ + /** + * Create an instance of Variable given an JSON string + * + * @param jsonString JSON string + * @return An instance of Variable + * @throws IOException if the JSON string is invalid with respect to Variable + */ public static Variable fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Variable.class); } - /** - * Convert an instance of Variable to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Variable to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java index 0aea7fcaadd..a247a4f982c 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java @@ -71,10 +71,10 @@ public class Whale { return this; } - /** + /** * Get hasBaleen * @return hasBaleen - **/ + */ @javax.annotation.Nullable public Boolean getHasBaleen() { return hasBaleen; @@ -90,10 +90,10 @@ public class Whale { return this; } - /** + /** * Get hasTeeth * @return hasTeeth - **/ + */ @javax.annotation.Nullable public Boolean getHasTeeth() { return hasTeeth; @@ -109,10 +109,10 @@ public class Whale { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -227,12 +227,12 @@ public class Whale { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Whale - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Whale + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Whale.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -324,22 +324,22 @@ public class Whale { } } - /** - * Create an instance of Whale given an JSON string - * - * @param jsonString JSON string - * @return An instance of Whale - * @throws IOException if the JSON string is invalid with respect to Whale - */ + /** + * Create an instance of Whale given an JSON string + * + * @param jsonString JSON string + * @return An instance of Whale + * @throws IOException if the JSON string is invalid with respect to Whale + */ public static Whale fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Whale.class); } - /** - * Convert an instance of Whale to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Whale to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java index 5e39ba61287..95294d19a2e 100644 --- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java +++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java @@ -121,10 +121,10 @@ public class Zebra { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public TypeEnum getType() { return type; @@ -140,10 +140,10 @@ public class Zebra { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { return className; @@ -255,12 +255,12 @@ public class Zebra { openapiRequiredFields.add("className"); } - /** - * Validates the JSON Element and throws an exception if issues found - * - * @param jsonElement JSON Element - * @throws IOException if the JSON Element is invalid with respect to Zebra - */ + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to Zebra + */ public static void validateJsonElement(JsonElement jsonElement) throws IOException { if (jsonElement == null) { if (!Zebra.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null @@ -359,22 +359,22 @@ public class Zebra { } } - /** - * Create an instance of Zebra given an JSON string - * - * @param jsonString JSON string - * @return An instance of Zebra - * @throws IOException if the JSON string is invalid with respect to Zebra - */ + /** + * Create an instance of Zebra given an JSON string + * + * @param jsonString JSON string + * @return An instance of Zebra + * @throws IOException if the JSON string is invalid with respect to Zebra + */ public static Zebra fromJson(String jsonString) throws IOException { return JSON.getGson().fromJson(jsonString, Zebra.class); } - /** - * Convert an instance of Zebra to an JSON string - * - * @return JSON string - */ + /** + * Convert an instance of Zebra to an JSON string + * + * @return JSON string + */ public String toJson() { return JSON.getGson().toJson(this); } diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index c003d64d668..12f9e919539 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index bedf82ac5ed..e898d339fe3 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index a87609c5aae..48fb6575049 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 04f365b3f39..ca9d8ef2b3f 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -98,10 +98,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @@ -132,10 +132,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -167,10 +167,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @@ -201,10 +201,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @@ -235,10 +235,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @Valid @@ -270,10 +270,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @Valid @@ -305,10 +305,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @Valid @@ -340,10 +340,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @Valid @@ -367,10 +367,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @@ -393,10 +393,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @@ -419,10 +419,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index b9658b52482..26953f937c7 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 825a0e4a659..226a40ea79c 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -50,10 +50,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index f565ef09758..585e9aa09b0 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 4b1efc20d75..da97aaf849e 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Animal.java index e7e46ea416a..533870a5d3e 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Animal.java @@ -64,10 +64,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @NotNull @@ -91,10 +91,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 61153c222dc..511c787493a 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index c43c11bf50c..cd7565bd97c 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -58,10 +58,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayTest.java index 7edd8deea67..01c64d05cc6 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -66,10 +66,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @@ -100,10 +100,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @Valid @@ -135,10 +135,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/BigCat.java index 0e6da5b0bd0..52d0611275f 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/BigCat.java @@ -96,10 +96,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Capitalization.java index fba154abce8..b60fc9ace92 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Capitalization.java @@ -66,10 +66,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @@ -92,10 +92,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @@ -118,10 +118,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @@ -144,10 +144,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @@ -170,10 +170,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @@ -196,10 +196,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Cat.java index ec33456a7bb..1b31d515949 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Cat.java @@ -60,10 +60,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Category.java index d9aebfefedb..a94d4574d2c 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Category.java @@ -50,10 +50,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -76,10 +76,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ClassModel.java index 8d0f59bba9f..2741666481e 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ClassModel.java @@ -46,10 +46,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Client.java index faff1be581e..cb521eb7057 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Client.java @@ -46,10 +46,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Dog.java index ae00092459d..d0f772e41b7 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Dog.java @@ -57,10 +57,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumArrays.java index bcbd51ba83a..aafc69878c1 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -123,10 +123,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @@ -157,10 +157,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumTest.java index 56bcd36dc38..d40d022e491 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/EnumTest.java @@ -208,10 +208,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @@ -234,10 +234,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @NotNull @@ -261,10 +261,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @@ -287,10 +287,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @@ -313,10 +313,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index e32235c8955..6145fb136f8 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -54,10 +54,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @Valid @@ -89,10 +89,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FormatTest.java index fb787df49a9..0caecff2703 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/FormatTest.java @@ -104,12 +104,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @Min(10) @Max(100) @JsonProperty(JSON_PROPERTY_INTEGER) @@ -132,12 +132,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @Min(20) @Max(200) @JsonProperty(JSON_PROPERTY_INT32) @@ -160,10 +160,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @@ -186,12 +186,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -216,12 +216,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @DecimalMin("54.3") @DecimalMax("987.6") @JsonProperty(JSON_PROPERTY_FLOAT) @@ -244,12 +244,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @DecimalMin("67.8") @DecimalMax("123.4") @JsonProperty(JSON_PROPERTY_DOUBLE) @@ -272,10 +272,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @Pattern(regexp="/[a-z]/i") @JsonProperty(JSON_PROPERTY_STRING) @@ -298,10 +298,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @NotNull @@ -325,10 +325,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @Valid @@ -352,10 +352,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -380,10 +380,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @Valid @@ -407,10 +407,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @Valid @@ -434,10 +434,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @NotNull @Size(min=10,max=64) @@ -461,10 +461,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 81b8503aa57..720339e87a4 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -45,8 +45,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -57,10 +57,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -72,10 +72,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MapTest.java index 98fe28a5e35..401ebf68879 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MapTest.java @@ -103,10 +103,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @Valid @@ -138,10 +138,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @@ -172,10 +172,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @@ -206,10 +206,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 31a55efeba9..297eecdb05f 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -59,10 +59,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @Valid @@ -86,10 +86,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @Valid @@ -121,10 +121,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Model200Response.java index 5de7fbd433f..7e6e4b5b15d 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Model200Response.java @@ -51,10 +51,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @@ -77,10 +77,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 433e1bcf058..329cbe3fd2f 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -55,10 +55,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @@ -81,10 +81,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @@ -107,10 +107,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelFile.java index c86e61cdeef..76f0b31b677 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelFile.java @@ -47,10 +47,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelList.java index b0a8675e46d..4aa11d7ef85 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelList.java @@ -47,10 +47,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelReturn.java index 5e1eb41842e..127268015ff 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -47,10 +47,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Name.java index 1634411587f..31fe4236fc6 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Name.java @@ -52,8 +52,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -70,10 +70,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull @@ -91,10 +91,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @@ -112,10 +112,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @@ -132,10 +132,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/NumberOnly.java index b0c47b22679..92ad4f821fc 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -47,10 +47,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Order.java index a418220504c..cff34b3d0a0 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Order.java @@ -104,10 +104,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -130,10 +130,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @@ -156,10 +156,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -182,10 +182,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Valid @@ -209,10 +209,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @@ -235,10 +235,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/OuterComposite.java index 6cdfac80c00..4a6ff1010bb 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -55,10 +55,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -82,10 +82,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @@ -108,10 +108,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Pet.java index 09e4cb94364..ca885ceb945 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Pet.java @@ -111,10 +111,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -137,10 +137,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Valid @@ -164,10 +164,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull @@ -199,10 +199,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @NotNull @@ -235,10 +235,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Valid @@ -262,10 +262,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 2882281db58..99bf231e648 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -44,8 +44,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -54,10 +54,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -75,10 +75,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/SpecialModelName.java index d1393399a19..02c8a4a3306 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -47,10 +47,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Tag.java index 61c28a9ddb0..1f889a20a72 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/Tag.java @@ -50,10 +50,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -76,10 +76,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 3191441967c..8ea7d413c50 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -66,10 +66,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -93,10 +93,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -121,10 +121,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -148,10 +148,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -183,10 +183,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 1e6163d8b76..9a4a8614171 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -70,10 +70,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -97,10 +97,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -125,10 +125,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -152,10 +152,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -179,10 +179,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -214,10 +214,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/User.java index b785ecf474a..395d8678624 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/User.java @@ -74,10 +74,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -100,10 +100,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @@ -126,10 +126,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -152,10 +152,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -178,10 +178,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @@ -204,10 +204,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -230,10 +230,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @@ -256,10 +256,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/XmlItem.java index 3f81ea79caf..5281d053045 100644 --- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/model/XmlItem.java @@ -162,10 +162,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @@ -188,10 +188,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -215,10 +215,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @@ -241,10 +241,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @@ -275,10 +275,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @@ -301,10 +301,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @@ -327,10 +327,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -354,10 +354,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @@ -380,10 +380,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @@ -414,10 +414,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @@ -448,10 +448,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @@ -474,10 +474,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @@ -500,10 +500,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -527,10 +527,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @@ -553,10 +553,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @@ -587,10 +587,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @@ -621,10 +621,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @@ -647,10 +647,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @@ -673,10 +673,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -700,10 +700,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @@ -726,10 +726,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @@ -760,10 +760,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @@ -794,10 +794,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @@ -820,10 +820,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @@ -846,10 +846,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -873,10 +873,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @@ -899,10 +899,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @@ -933,10 +933,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @@ -967,10 +967,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index ebc95cc9f12..7e2138d2d9a 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index 1e5621e255c..99abeda10f5 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 89e3fc15acb..2879589123e 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index ff12c670209..a72399ad765 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -95,10 +95,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @@ -125,10 +125,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -156,10 +156,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @@ -186,10 +186,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @@ -216,10 +216,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @Valid @@ -247,10 +247,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @Valid @@ -278,10 +278,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @Valid @@ -309,10 +309,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @Valid @@ -332,10 +332,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @@ -354,10 +354,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @@ -376,10 +376,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 3a6507cd15b..8861923aa61 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 544a198cdd6..a0b8917c827 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index 5adefdcca87..42f7d86cf54 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 6e5ee0d9d8c..5318fb6ef3f 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Animal.java index 9eb9e1720e8..618f46230a7 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Animal.java @@ -47,10 +47,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @NotNull @@ -70,10 +70,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 85197a9e571..db86c95f505 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 5948eafd9dc..804b8e84152 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayTest.java index 658fe2b7185..22708f9642d 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -63,10 +63,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @@ -93,10 +93,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @Valid @@ -124,10 +124,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/BigCat.java index b7b51c16596..877ea6f0fef 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/BigCat.java @@ -96,10 +96,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Capitalization.java index 62eb0db1093..487c4d4f1b1 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Capitalization.java @@ -63,10 +63,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @@ -85,10 +85,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @@ -107,10 +107,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @@ -129,10 +129,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @@ -151,10 +151,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @@ -173,10 +173,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Cat.java index 03beabaae8c..4a0a67e73d1 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Cat.java @@ -45,10 +45,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Category.java index 8d1f7583d04..c898f8d0996 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @@ -69,10 +69,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ClassModel.java index 834df9fee96..2f0a813a4f8 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ClassModel.java @@ -43,10 +43,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Client.java index d4331424086..f88e3e6d544 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Client.java @@ -43,10 +43,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Dog.java index bc835351d92..737d0447617 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Dog.java @@ -45,10 +45,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumArrays.java index 417318c6ce0..1d17001afbe 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -144,10 +144,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @@ -174,10 +174,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumTest.java index 18ddd4b6efb..328ab16fbb4 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/EnumTest.java @@ -252,10 +252,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @@ -274,10 +274,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @NotNull @@ -297,10 +297,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @@ -319,10 +319,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @@ -341,10 +341,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 40f453e5a10..fa4fa072836 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -51,10 +51,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @Valid @@ -82,10 +82,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FormatTest.java index 4f3d680ed2b..6fa2e392a69 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FormatTest.java @@ -100,12 +100,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @Min(10) @Max(100) @@ -124,12 +124,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @Min(20) @Max(200) @@ -148,10 +148,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @@ -170,12 +170,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -196,12 +196,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @DecimalMin("54.3") @DecimalMax("987.6") @@ -220,12 +220,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @DecimalMin("67.8") @DecimalMax("123.4") @@ -244,10 +244,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @Pattern(regexp="/[a-z]/i") @@ -266,10 +266,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @NotNull @@ -289,10 +289,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @Valid @@ -312,10 +312,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -336,10 +336,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @Valid @@ -359,10 +359,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @Valid @@ -382,10 +382,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @NotNull @Size(min=10,max=64) @@ -405,10 +405,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 92b46ff2c80..853f412ca1e 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -41,8 +41,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public HasOnlyReadOnly( String bar, @@ -53,10 +53,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @@ -66,10 +66,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MapTest.java index fec9152317a..526afd3d197 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MapTest.java @@ -112,10 +112,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @Valid @@ -143,10 +143,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @@ -173,10 +173,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @@ -203,10 +203,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 5300240d8ac..999d55520f7 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -56,10 +56,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @Valid @@ -79,10 +79,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @Valid @@ -110,10 +110,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Model200Response.java index c272d2dd5f7..d49889c6223 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Model200Response.java @@ -47,10 +47,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @@ -69,10 +69,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 34524f0baa8..468b2cfea22 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -51,10 +51,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @@ -73,10 +73,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @@ -95,10 +95,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelFile.java index 04b88b8403e..b11f901c731 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelFile.java @@ -43,10 +43,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelList.java index a49b77f1406..5109ec8d66c 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelList.java @@ -43,10 +43,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelReturn.java index 26b6f10504d..26390c3a782 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -43,10 +43,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Name.java index 70ada343dd9..edf23f4e8a8 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Name.java @@ -49,8 +49,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public Name( Integer snakeCase, @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull @@ -84,10 +84,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @@ -103,10 +103,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @@ -119,10 +119,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/NumberOnly.java index c2580165ae4..13d7df28930 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Order.java index 193513022a4..481b6fda441 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Order.java @@ -113,10 +113,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @@ -135,10 +135,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @@ -179,10 +179,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Valid @@ -202,10 +202,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @@ -224,10 +224,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/OuterComposite.java index c8e949eea3a..ac7d12def3a 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -75,10 +75,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @@ -97,10 +97,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Pet.java index d11dbcf08d0..8a3b933c0fc 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Pet.java @@ -119,10 +119,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @@ -141,10 +141,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Valid @@ -164,10 +164,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @NotNull @@ -195,10 +195,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @NotNull @@ -226,10 +226,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Valid @@ -249,10 +249,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 9180c56b1ab..7755185f146 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public ReadOnlyFirst( String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @@ -70,10 +70,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/SpecialModelName.java index 107b610a907..ecc71ceffcc 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -43,10 +43,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Tag.java index 529838937bb..c64f617bec6 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @@ -69,10 +69,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 820c65fdea5..51b50a40815 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -63,10 +63,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -86,10 +86,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -110,10 +110,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -133,10 +133,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -164,10 +164,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 1fa32054119..346201576cb 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -67,10 +67,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -90,10 +90,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @NotNull @Valid @@ -114,10 +114,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -137,10 +137,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -160,10 +160,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @NotNull @@ -191,10 +191,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/User.java index 7f56d15b046..3c610248285 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/User.java @@ -71,10 +71,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @@ -93,10 +93,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @@ -115,10 +115,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @@ -137,10 +137,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @@ -159,10 +159,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @@ -181,10 +181,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @@ -203,10 +203,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @@ -225,10 +225,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/XmlItem.java index 4accce69502..4bd4719e356 100644 --- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/XmlItem.java @@ -159,10 +159,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @@ -181,10 +181,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -204,10 +204,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @@ -226,10 +226,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @@ -256,10 +256,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @@ -278,10 +278,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @@ -300,10 +300,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -323,10 +323,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @@ -345,10 +345,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @@ -375,10 +375,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @@ -405,10 +405,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @@ -427,10 +427,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @@ -449,10 +449,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -472,10 +472,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @@ -494,10 +494,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @@ -524,10 +524,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @@ -554,10 +554,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @@ -576,10 +576,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @@ -598,10 +598,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -621,10 +621,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @@ -643,10 +643,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @@ -673,10 +673,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @@ -703,10 +703,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @@ -725,10 +725,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @@ -747,10 +747,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @Valid @@ -770,10 +770,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @@ -792,10 +792,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @@ -822,10 +822,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @@ -852,10 +852,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable diff --git a/samples/client/petstore/java/restclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java b/samples/client/petstore/java/restclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java index 577df29a821..7482a892df3 100644 --- a/samples/client/petstore/java/restclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java +++ b/samples/client/petstore/java/restclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java @@ -64,10 +64,10 @@ public class ByteArrayObject { return this; } - /** + /** * byte array. * @return nullableArray - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -97,10 +97,10 @@ public class ByteArrayObject { return this; } - /** + /** * byte array. * @return normalArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NORMAL_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -122,10 +122,10 @@ public class ByteArrayObject { return this; } - /** + /** * Get nullableString * @return nullableString - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -155,10 +155,10 @@ public class ByteArrayObject { return this; } - /** + /** * Get stringField * @return stringField - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING_FIELD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,10 +180,10 @@ public class ByteArrayObject { return this; } - /** + /** * Get intField * @return intField - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT_FIELD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient-swagger2/api/openapi.yaml b/samples/client/petstore/java/restclient-swagger2/api/openapi.yaml index 96dc260deb8..1eddf878948 100644 --- a/samples/client/petstore/java/restclient-swagger2/api/openapi.yaml +++ b/samples/client/petstore/java/restclient-swagger2/api/openapi.yaml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index cb43a79c171..64e160f274c 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -58,10 +58,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @@ -92,10 +92,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 3d15fd9ed94..b724633edc6 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -49,10 +49,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_USERNAME) @@ -75,10 +75,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Animal.java index 278cb727fd7..af105ee9b94 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Animal.java @@ -61,10 +61,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CLASS_NAME) @@ -87,10 +87,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_COLOR) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index b7410c2a5a1..c0457e6b21f 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 29040b36c2c..fc7dbb096d9 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayTest.java index 9fb24391e65..c0c4e9c9d3b 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -64,10 +64,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @@ -98,10 +98,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @@ -132,10 +132,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Capitalization.java index b9038849535..3cb73e2d98c 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Capitalization.java @@ -64,10 +64,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @@ -90,10 +90,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @@ -116,10 +116,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @@ -142,10 +142,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @@ -168,10 +168,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @@ -194,10 +194,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Name of the pet ") @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Cat.java index 00c51cb9e3f..5c0a73fba7d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Cat.java @@ -55,10 +55,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DECLAWED) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Category.java index d267f77f48c..fe58819af0b 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Category.java @@ -48,10 +48,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -74,10 +74,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ChildWithNullable.java index 4316838c917..28acddb17ac 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -56,10 +56,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ClassModel.java index 73e67933167..78681baab17 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ClassModel.java @@ -45,10 +45,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Client.java index 0cf6e873409..a13c1dcb55d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Client.java @@ -44,10 +44,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CLIENT) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 2101a006cb2..eacea2525a0 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -46,10 +46,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Dog.java index 51965628bc5..54c2bf19606 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Dog.java @@ -55,10 +55,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BREED) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumArrays.java index 778dc4f49b9..dd67f5af657 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -121,10 +121,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @@ -155,10 +155,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumTest.java index cfad73c121f..5c1c794f5e0 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/EnumTest.java @@ -225,10 +225,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ENUM_STRING) @@ -251,10 +251,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @@ -277,10 +277,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @@ -303,10 +303,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @@ -329,10 +329,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -363,10 +363,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @@ -389,10 +389,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @@ -415,10 +415,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index 7f6d36ccedf..c75b946379a 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -52,10 +52,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SOME_ID) @@ -86,10 +86,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SOME_MAP) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 11794582fb0..21638777aa5 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -52,10 +52,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FILE) @@ -86,10 +86,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FILES) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Foo.java index 56ed5c89d41..cf5a831e148 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Foo.java @@ -44,10 +44,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAR) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 8fcc372149c..207c251d96d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -46,10 +46,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_STRING) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FormatTest.java index e41c916a753..8092fd11bf3 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/FormatTest.java @@ -110,12 +110,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_INTEGER) @@ -138,12 +138,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_INT32) @@ -166,10 +166,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_INT64) @@ -192,12 +192,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NUMBER) @@ -220,12 +220,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FLOAT) @@ -248,12 +248,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DOUBLE) @@ -276,10 +276,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DECIMAL) @@ -302,10 +302,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_STRING) @@ -328,10 +328,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BYTE) @@ -354,10 +354,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BINARY) @@ -380,10 +380,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DATE) @@ -406,10 +406,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DATE_TIME) @@ -432,10 +432,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Schema(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_UUID) @@ -458,10 +458,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -484,10 +484,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "A string that is a 10 digit number. Can have leading zeros.") @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @@ -510,10 +510,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.") @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 4eb3d31e21d..02d1e973371 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -43,8 +43,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -55,10 +55,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAR) @@ -70,10 +70,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FOO) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 9a61aa266d0..c211ee3a14f 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -49,10 +49,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MapTest.java index acf5711e333..f7162f564cd 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MapTest.java @@ -101,10 +101,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @@ -135,10 +135,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @@ -169,10 +169,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @@ -203,10 +203,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 55c2ca6ad90..d5ea2cca9ba 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -57,10 +57,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_UUID) @@ -83,10 +83,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_DATE_TIME) @@ -117,10 +117,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MAP) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Model200Response.java index 9bfcf455dda..c7a0904bc3d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Model200Response.java @@ -50,10 +50,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -76,10 +76,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index b85f95d21ac..29795bbc825 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -53,10 +53,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CODE) @@ -79,10 +79,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -105,10 +105,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelFile.java index bd9b3893b40..ec73faa3684 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelFile.java @@ -46,10 +46,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Test capitalization") @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelList.java index a29fa46c699..394d6a48ae2 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelList.java @@ -45,10 +45,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_123LIST) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelReturn.java index 059f9e40499..bae3b39ef75 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -46,10 +46,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_RETURN) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Name.java index 07254fb85c5..d1fdbeeab9c 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Name.java @@ -51,8 +51,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -69,10 +69,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -89,10 +89,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @@ -110,10 +110,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PROPERTY) @@ -130,10 +130,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_123NUMBER) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NullableClass.java index 272e76c3935..befc8f34b69 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NullableClass.java @@ -101,10 +101,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -135,10 +135,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -169,10 +169,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -203,10 +203,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -237,10 +237,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -271,10 +271,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -317,10 +317,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -363,10 +363,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -405,10 +405,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @@ -443,10 +443,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -489,10 +489,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -531,10 +531,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java index 7045a08f46e..5d485c4c1fd 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -45,10 +45,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_JUST_NUMBER) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index ea7177c0f19..f7080c30a94 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -61,10 +61,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_UUID) @@ -87,11 +87,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @@ -115,11 +115,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @@ -151,11 +151,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Order.java index a161c48db74..a43a8f5b0b9 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Order.java @@ -102,10 +102,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -154,10 +154,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -180,10 +180,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -206,10 +206,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -232,10 +232,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java index 8b45bc5a940..0dd537b1e8d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -53,10 +53,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_NUMBER) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_STRING) @@ -105,10 +105,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index 7599a638c8d..3f395fa857e 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -45,10 +45,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_VALUE) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 1bd0c864615..a38bc9ace9d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -97,10 +97,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -123,10 +123,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java index 87d9668dfbf..cbfdbc8345d 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -135,10 +135,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @Schema(example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -195,10 +195,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -230,10 +230,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -256,10 +256,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "pet status in the store") @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index b46a817233e..bf7a87166fa 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -42,8 +42,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -52,10 +52,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAR) @@ -73,10 +73,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAZ) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java index f1790c83476..931a9e17966 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -45,10 +45,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java index d2f0539f749..5815a67e615 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java @@ -48,10 +48,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index d6dd4a72aa9..7c7330bdaae 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -48,10 +48,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -133,10 +133,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -166,10 +166,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -199,10 +199,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -232,10 +232,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -265,10 +265,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -310,10 +310,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -355,10 +355,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -396,10 +396,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -478,10 +478,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -519,10 +519,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/NumberOnly.java index 8873121fd79..b9d9fcb03f9 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 7203dbe5628..29087255dbe 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,11 +85,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -112,11 +112,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -147,11 +147,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Order.java index ab12669f2bc..36d5522f86e 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterComposite.java index 98a1b40bcce..92bfe10f0a2 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index e312dc41115..97ae0110679 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index ed98b677eb3..bec93c7259f 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @jakarta.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Pet.java index 6b1d6b6352a..a4b808eab6f 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4ff7f3db644..7c0f9540097 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/SpecialModelName.java index d4dbf6dc2e2..dcbfb88f8a2 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Tag.java index 2c2851098a9..82c4b33b753 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index b729913783c..ac7b656caef 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -47,10 +47,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -133,10 +133,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -166,10 +166,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -199,10 +199,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -232,10 +232,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -265,10 +265,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -310,10 +310,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -355,10 +355,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -396,10 +396,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -478,10 +478,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -519,10 +519,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/NumberOnly.java index 9b8575bb5aa..8625f00c874 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 8259facc6e1..d2ec47f7f4a 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,11 +85,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -112,11 +112,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -147,11 +147,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Order.java index 198c4705b48..0fc8d456873 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterComposite.java index 5bbc97e9f32..4adb1bc5981 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index d94b304fbc8..ea419cb7df3 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 427b0421acd..642875630cf 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java index ef0a788e0e0..97d3f950180 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4a407093962..fa8bdd64bc9 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/SpecialModelName.java index ddf6739e77e..7d8ea856dd3 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java index a6b72d921a6..518116d43ce 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index dd167049f5b..6b7f560ebb2 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -47,10 +47,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap photoUrls, @JsonProperty(JSON_PROPERTY_TAGS) List tags, @JsonProperty(JSON_PROPERTY_STATUS) StatusEnum status) { this.id = id; this.category = category; @@ -117,10 +117,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -142,10 +142,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -167,10 +167,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -200,10 +200,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -233,10 +233,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -258,11 +258,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/Tag.java index 4515da92909..2745cc2a37e 100644 --- a/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/Tag.java @@ -42,8 +42,8 @@ public class Tag { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Tag(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_NAME) String name) { this.id = id; this.name = name; @@ -55,10 +55,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/User.java index a58a63da811..662320e0dff 100644 --- a/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/resttemplate-jakarta/src/main/java/org/openapitools/client/model/User.java @@ -66,8 +66,8 @@ public class User { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public User(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_USERNAME) String username, @JsonProperty(JSON_PROPERTY_FIRST_NAME) String firstName, @JsonProperty(JSON_PROPERTY_LAST_NAME) String lastName, @JsonProperty(JSON_PROPERTY_EMAIL) String email, @JsonProperty(JSON_PROPERTY_PASSWORD) String password, @JsonProperty(JSON_PROPERTY_PHONE) String phone, @JsonProperty(JSON_PROPERTY_USER_STATUS) Integer userStatus) { this.id = id; this.username = username; @@ -85,10 +85,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -160,10 +160,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,10 +185,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -210,10 +210,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -235,10 +235,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -260,10 +260,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Category.java index 1132a85e291..3df8846ed10 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Category.java @@ -50,10 +50,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -76,10 +76,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java index f802574483e..93a225cccef 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -55,10 +55,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CODE) @@ -81,10 +81,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -107,10 +107,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Order.java index 2de82492e14..72b64106196 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Order.java @@ -104,10 +104,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -130,10 +130,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -156,10 +156,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -182,10 +182,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -208,10 +208,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -234,10 +234,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Pet.java index 642fba65907..4a0fda1e812 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -134,10 +134,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -160,10 +160,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -194,10 +194,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -228,10 +228,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -254,11 +254,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @ApiModelProperty(value = "pet status in the store") diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Tag.java index 887136ef6cf..11c0891574d 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/Tag.java @@ -50,10 +50,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -76,10 +76,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/User.java index 858ec512529..4c42d91f93f 100644 --- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/model/User.java @@ -74,10 +74,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -100,10 +100,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USERNAME) @@ -126,10 +126,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -152,10 +152,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -178,10 +178,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMAIL) @@ -204,10 +204,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -230,10 +230,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PHONE) @@ -256,10 +256,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "User Status") @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Category.java index ce971cb8f1b..c6eff3c1a3a 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Category.java @@ -49,10 +49,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -75,10 +75,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 78237ea5976..5419376c257 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -54,10 +54,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CODE) @@ -80,10 +80,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -106,10 +106,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Order.java index e1f64666165..ac069848c8b 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Order.java @@ -103,10 +103,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -129,10 +129,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -155,10 +155,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -181,10 +181,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -207,10 +207,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -233,10 +233,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Pet.java index b51c42c1f89..739b196b279 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Pet.java @@ -107,10 +107,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -159,10 +159,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @Schema(example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -193,10 +193,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -227,10 +227,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -253,11 +253,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "pet status in the store") diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Tag.java index 9fe1449e822..34bde5b6d87 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/Tag.java @@ -49,10 +49,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -75,10 +75,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/User.java index 6f80453b4f2..c277bb47385 100644 --- a/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/resttemplate-swagger2/src/main/java/org/openapitools/client/model/User.java @@ -73,10 +73,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -99,10 +99,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_USERNAME) @@ -125,10 +125,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -151,10 +151,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -177,10 +177,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_EMAIL) @@ -203,10 +203,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -229,10 +229,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHONE) @@ -255,10 +255,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "User Status") @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml b/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml index 96dc260deb8..1eddf878948 100644 --- a/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml +++ b/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index ab05a5819f1..1c36460659b 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -42,17 +42,11 @@ import io.github.threetenjaxb.core.*; @JacksonXmlRootElement(localName = "AdditionalPropertiesClass") public class AdditionalPropertiesClass { public static final String JSON_PROPERTY_MAP_PROPERTY = "map_property"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=String - @XmlElement(name = "inner") + @XmlElement(name = "map_property") private Map mapProperty = new HashMap<>(); public static final String JSON_PROPERTY_MAP_OF_MAP_PROPERTY = "map_of_map_property"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Map<String, String> - @XmlElement(name = "inner") + @XmlElement(name = "map_of_map_property") private Map> mapOfMapProperty = new HashMap<>(); public AdditionalPropertiesClass() { @@ -72,10 +66,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -109,10 +103,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 8fef8b9dfdf..3822ea49778 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -57,10 +57,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Animal.java index a944cf5487a..b4769c07e06 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Animal.java @@ -69,10 +69,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -96,10 +96,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 52634549fb8..a19856f86ea 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -43,10 +43,7 @@ import io.github.threetenjaxb.core.*; @JacksonXmlRootElement(localName = "ArrayOfArrayOfNumberOnly") public class ArrayOfArrayOfNumberOnly { public static final String JSON_PROPERTY_ARRAY_ARRAY_NUMBER = "ArrayArrayNumber"; - // Is a container wrapped=false - // items.name=arrayArrayNumber items.baseName=arrayArrayNumber items.xmlName= items.xmlNamespace= - // items.example= items.type=List<BigDecimal> - @XmlElement(name = "arrayArrayNumber") + @XmlElement(name = "ArrayArrayNumber") private List> arrayArrayNumber = new ArrayList<>(); public ArrayOfArrayOfNumberOnly() { @@ -66,10 +63,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index f89f690741e..f054dbd8ee4 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -43,10 +43,7 @@ import io.github.threetenjaxb.core.*; @JacksonXmlRootElement(localName = "ArrayOfNumberOnly") public class ArrayOfNumberOnly { public static final String JSON_PROPERTY_ARRAY_NUMBER = "ArrayNumber"; - // Is a container wrapped=false - // items.name=arrayNumber items.baseName=arrayNumber items.xmlName= items.xmlNamespace= - // items.example= items.type=BigDecimal - @XmlElement(name = "arrayNumber") + @XmlElement(name = "ArrayNumber") private List arrayNumber = new ArrayList<>(); public ArrayOfNumberOnly() { @@ -66,10 +63,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayTest.java index 6abb8f9155c..a594b2ceb9f 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -45,24 +45,15 @@ import io.github.threetenjaxb.core.*; @JacksonXmlRootElement(localName = "ArrayTest") public class ArrayTest { public static final String JSON_PROPERTY_ARRAY_OF_STRING = "array_of_string"; - // Is a container wrapped=false - // items.name=arrayOfString items.baseName=arrayOfString items.xmlName= items.xmlNamespace= - // items.example= items.type=String - @XmlElement(name = "arrayOfString") + @XmlElement(name = "array_of_string") private List arrayOfString = new ArrayList<>(); public static final String JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER = "array_array_of_integer"; - // Is a container wrapped=false - // items.name=arrayArrayOfInteger items.baseName=arrayArrayOfInteger items.xmlName= items.xmlNamespace= - // items.example= items.type=List<Long> - @XmlElement(name = "arrayArrayOfInteger") + @XmlElement(name = "array_array_of_integer") private List> arrayArrayOfInteger = new ArrayList<>(); public static final String JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL = "array_array_of_model"; - // Is a container wrapped=false - // items.name=arrayArrayOfModel items.baseName=arrayArrayOfModel items.xmlName= items.xmlNamespace= - // items.example= items.type=List<ReadOnlyFirst> - @XmlElement(name = "arrayArrayOfModel") + @XmlElement(name = "array_array_of_model") private List> arrayArrayOfModel = new ArrayList<>(); public ArrayTest() { @@ -82,10 +73,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -119,10 +110,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -156,10 +147,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Capitalization.java index 4647bd98b77..5d2fcc12865 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Capitalization.java @@ -76,10 +76,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -103,10 +103,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -157,10 +157,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -184,10 +184,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -211,10 +211,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Cat.java index 9e368b55292..f1e4be9d5ff 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Cat.java @@ -62,10 +62,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Category.java index b4424b875e6..18e886e0749 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Category.java @@ -56,10 +56,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ChildWithNullable.java index 2d200b3d325..40471900fb6 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -63,10 +63,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ClassModel.java index 9d6b09e04b0..f6dd98ce866 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ClassModel.java @@ -51,10 +51,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Client.java index e2781953f60..6430dc23a9f 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Client.java @@ -51,10 +51,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/DeprecatedObject.java index a64cfff26f1..0bc8d5f52e2 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -53,10 +53,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Dog.java index 1e95fa8a4b0..aaef69a1f1b 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Dog.java @@ -62,10 +62,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumArrays.java index 956eb4ba852..81113c78052 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -125,10 +125,7 @@ public class EnumArrays { } public static final String JSON_PROPERTY_ARRAY_ENUM = "array_enum"; - // Is a container wrapped=false - // items.name=arrayEnum items.baseName=arrayEnum items.xmlName= items.xmlNamespace= - // items.example= items.type=String - @XmlElement(name = "arrayEnum") + @XmlElement(name = "array_enum") private List arrayEnum = new ArrayList<>(); public EnumArrays() { @@ -140,10 +137,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -175,10 +172,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumTest.java index c667d272869..1e52f26f31c 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/EnumTest.java @@ -257,10 +257,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -284,10 +284,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -311,10 +311,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -338,10 +338,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -365,10 +365,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -399,10 +399,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -426,10 +426,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -453,10 +453,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index c14d3a33fb4..18b1b751823 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -48,10 +48,7 @@ public class FakeBigDecimalMap200Response { private BigDecimal someId; public static final String JSON_PROPERTY_SOME_MAP = "someMap"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=BigDecimal - @XmlElement(name = "inner") + @XmlElement(name = "someMap") private Map someMap = new HashMap<>(); public FakeBigDecimalMap200Response() { @@ -63,10 +60,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +95,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 3582eec63d7..1d6aee0c3e2 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -48,9 +48,6 @@ public class FileSchemaTestClass { private ModelFile _file; public static final String JSON_PROPERTY_FILES = "files"; - // Is a container wrapped=false - // items.name=files items.baseName=files items.xmlName= items.xmlNamespace= - // items.example= items.type=ModelFile @XmlElement(name = "files") private List files = new ArrayList<>(); @@ -63,10 +60,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +95,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Foo.java index d5e6eaaef2a..944919d2b7b 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Foo.java @@ -51,10 +51,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index d67a399616e..e70672cef64 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -53,10 +53,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FormatTest.java index f973704a8fe..3f96e9efb10 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FormatTest.java @@ -133,12 +133,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -162,12 +162,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -191,10 +191,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -218,12 +218,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -247,12 +247,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -276,12 +276,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,10 +305,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -332,10 +332,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -359,10 +359,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -386,10 +386,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -413,10 +413,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -440,10 +440,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -467,10 +467,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -494,10 +494,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -521,10 +521,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -548,10 +548,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index eac5d26b647..ef269f99193 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -51,10 +51,10 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -66,10 +66,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 08ce77761e8..c50b41a457e 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -55,10 +55,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MapTest.java index 02eaaeb81e2..9e5e2b44c3b 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MapTest.java @@ -44,10 +44,7 @@ import io.github.threetenjaxb.core.*; @JacksonXmlRootElement(localName = "MapTest") public class MapTest { public static final String JSON_PROPERTY_MAP_MAP_OF_STRING = "map_map_of_string"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Map<String, String> - @XmlElement(name = "inner") + @XmlElement(name = "map_map_of_string") private Map> mapMapOfString = new HashMap<>(); /** @@ -90,24 +87,15 @@ public class MapTest { } public static final String JSON_PROPERTY_MAP_OF_ENUM_STRING = "map_of_enum_string"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=String - @XmlElement(name = "inner") + @XmlElement(name = "map_of_enum_string") private Map mapOfEnumString = new HashMap<>(); public static final String JSON_PROPERTY_DIRECT_MAP = "direct_map"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Boolean - @XmlElement(name = "inner") + @XmlElement(name = "direct_map") private Map directMap = new HashMap<>(); public static final String JSON_PROPERTY_INDIRECT_MAP = "indirect_map"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Boolean - @XmlElement(name = "inner") + @XmlElement(name = "indirect_map") private Map indirectMap = new HashMap<>(); public MapTest() { @@ -127,10 +115,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -164,10 +152,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +189,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -238,10 +226,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index fd75e8c22ca..1ea56d1d8f0 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -55,10 +55,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { private OffsetDateTime dateTime; public static final String JSON_PROPERTY_MAP = "map"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Animal - @XmlElement(name = "inner") + @XmlElement(name = "map") private Map map = new HashMap<>(); public MixedPropertiesAndAdditionalPropertiesClass() { @@ -70,10 +67,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,10 +94,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -132,10 +129,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Model200Response.java index ca31e562b79..63e195ff5d5 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Model200Response.java @@ -57,10 +57,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 79559442c64..a103523ab7c 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -62,10 +62,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -89,10 +89,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelFile.java index 47d278b9058..e040a52ff81 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelFile.java @@ -52,10 +52,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelList.java index 97f8aa1179d..77ab5d3167a 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelList.java @@ -52,10 +52,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelReturn.java index a023d8f35f4..7a39006b2a8 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -52,10 +52,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Name.java index cb35591fbb0..68d56a54e88 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Name.java @@ -66,10 +66,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,10 +87,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -108,10 +108,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NullableClass.java index f741f2545c3..7d57219e7e7 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NullableClass.java @@ -87,45 +87,27 @@ public class NullableClass extends HashMap { private JsonNullable datetimeProp = JsonNullable.undefined(); public static final String JSON_PROPERTY_ARRAY_NULLABLE_PROP = "array_nullable_prop"; - // Is a container wrapped=false - // items.name=arrayNullableProp items.baseName=arrayNullableProp items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "arrayNullableProp") + @XmlElement(name = "array_nullable_prop") private JsonNullable> arrayNullableProp = JsonNullable.>undefined(); public static final String JSON_PROPERTY_ARRAY_AND_ITEMS_NULLABLE_PROP = "array_and_items_nullable_prop"; - // Is a container wrapped=false - // items.name=arrayAndItemsNullableProp items.baseName=arrayAndItemsNullableProp items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "arrayAndItemsNullableProp") + @XmlElement(name = "array_and_items_nullable_prop") private JsonNullable> arrayAndItemsNullableProp = JsonNullable.>undefined(); public static final String JSON_PROPERTY_ARRAY_ITEMS_NULLABLE = "array_items_nullable"; - // Is a container wrapped=false - // items.name=arrayItemsNullable items.baseName=arrayItemsNullable items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "arrayItemsNullable") + @XmlElement(name = "array_items_nullable") private List arrayItemsNullable = new ArrayList<>(); public static final String JSON_PROPERTY_OBJECT_NULLABLE_PROP = "object_nullable_prop"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "inner") + @XmlElement(name = "object_nullable_prop") private JsonNullable> objectNullableProp = JsonNullable.>undefined(); public static final String JSON_PROPERTY_OBJECT_AND_ITEMS_NULLABLE_PROP = "object_and_items_nullable_prop"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "inner") + @XmlElement(name = "object_and_items_nullable_prop") private JsonNullable> objectAndItemsNullableProp = JsonNullable.>undefined(); public static final String JSON_PROPERTY_OBJECT_ITEMS_NULLABLE = "object_items_nullable"; - // Is a container wrapped=false - // items.name=inner items.baseName=inner items.xmlName= items.xmlNamespace= - // items.example= items.type=Object - @XmlElement(name = "inner") + @XmlElement(name = "object_items_nullable") private Map objectItemsNullable = new HashMap<>(); public NullableClass() { @@ -138,10 +120,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -172,10 +154,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -206,10 +188,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -240,10 +222,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -274,10 +256,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -308,10 +290,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -354,10 +336,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -401,10 +383,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -444,10 +426,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -485,10 +467,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -532,10 +514,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -575,10 +557,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NumberOnly.java index 6e38b992db6..9d472bd315d 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -52,10 +52,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 4a50a0ac002..3dfde08a6bd 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -59,9 +59,6 @@ public class ObjectWithDeprecatedFields { private DeprecatedObject deprecatedRef; public static final String JSON_PROPERTY_BARS = "bars"; - // Is a container wrapped=false - // items.name=bars items.baseName=bars items.xmlName= items.xmlNamespace= - // items.example= items.type=String @XmlElement(name = "bars") private List bars = new ArrayList<>(); @@ -74,10 +71,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -101,11 +98,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -130,11 +127,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -167,11 +164,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Order.java index c1edb309d78..5227ae95296 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Order.java @@ -120,10 +120,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -147,10 +147,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -174,10 +174,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -228,10 +228,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -255,10 +255,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterComposite.java index f5fd330c7d9..c5e0924e87f 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -62,10 +62,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -89,10 +89,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index 770309d145e..93fcfe6197f 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -52,10 +52,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java index d945d64d634..f47a7983deb 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -108,10 +108,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Pet.java index 003d577a113..c83a3282a2c 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Pet.java @@ -64,17 +64,11 @@ public class Pet { private String name; public static final String JSON_PROPERTY_PHOTO_URLS = "photoUrls"; - // Is a container wrapped=true - // items.name=photoUrls items.baseName=photoUrls items.xmlName= items.xmlNamespace= - // items.example= items.type=String - @XmlElement(name = "photoUrls") - @XmlElementWrapper(name = "photoUrl") + @XmlElement(name = "photoUrl") + @XmlElementWrapper(name = "photoUrls") private Set photoUrls = new LinkedHashSet<>(); public static final String JSON_PROPERTY_TAGS = "tags"; - // Is a container wrapped=true - // items.name=tags items.baseName=tags items.xmlName=Tag items.xmlNamespace= - // items.example= items.type=Tag @XmlElement(name = "Tag") @XmlElementWrapper(name = "tag") private List tags = new ArrayList<>(); @@ -134,10 +128,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +155,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +182,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -223,16 +217,15 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - // xmlName=photoUrl @JacksonXmlProperty(localName = "photoUrl") - @JacksonXmlElementWrapper(useWrapping = true, localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrls", useWrapping = true) public Set getPhotoUrls() { return photoUrls; @@ -242,9 +235,8 @@ public class Pet { @JsonDeserialize(as = LinkedHashSet.class) @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) - // xmlName=photoUrl @JacksonXmlProperty(localName = "photoUrl") - @JacksonXmlElementWrapper(useWrapping = true, localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrls", useWrapping = true) public void setPhotoUrls(Set photoUrls) { this.photoUrls = photoUrls; } @@ -263,16 +255,15 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - // xmlName=tag - @JacksonXmlProperty(localName = "tag") - @JacksonXmlElementWrapper(useWrapping = true, localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) public List getTags() { return tags; @@ -281,9 +272,8 @@ public class Pet { @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - // xmlName=tag - @JacksonXmlProperty(localName = "tag") - @JacksonXmlElementWrapper(useWrapping = true, localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) public void setTags(List tags) { this.tags = tags; } @@ -294,10 +284,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index d94be5ba1d0..69536c0d5d6 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -50,10 +50,10 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/SpecialModelName.java index eefaff52ae4..768e982ba3e 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -52,10 +52,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Tag.java index cac17a29268..5f4163d5846 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/Tag.java @@ -56,10 +56,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index c7f187637e8..17f6b4beceb 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -55,10 +55,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap mapProperty, @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) Map> mapOfMapProperty) { this.mapProperty = mapProperty; this.mapOfMapProperty = mapOfMapProperty; @@ -65,10 +65,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 16c692738ac..23ee75496a0 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -43,8 +43,8 @@ public class AllOfWithSingleRef { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AllOfWithSingleRef(@JsonProperty(JSON_PROPERTY_USERNAME) String username, @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) SingleRefType singleRefType) { this.username = username; this.singleRefType = singleRefType; @@ -56,10 +56,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Animal.java index 71bd87b976d..bfc4c3c55ef 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Animal.java @@ -55,8 +55,8 @@ public class Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Animal(@JsonProperty(JSON_PROPERTY_CLASS_NAME) String className, @JsonProperty(JSON_PROPERTY_COLOR) String color) { this.className = className; this.color = color; @@ -68,10 +68,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -93,10 +93,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 6bb84dd91c8..4ad9f08a273 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -42,8 +42,8 @@ public class ArrayOfArrayOfNumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayOfArrayOfNumberOnly(@JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) List> arrayArrayNumber) { this.arrayArrayNumber = arrayArrayNumber; } @@ -62,10 +62,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 9c729c8acb4..e953bcfdba3 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -42,8 +42,8 @@ public class ArrayOfNumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayOfNumberOnly(@JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) List arrayNumber) { this.arrayNumber = arrayNumber; } @@ -62,10 +62,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayTest.java index e15922cba62..a765509d8cb 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -50,8 +50,8 @@ public class ArrayTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayTest(@JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) List arrayOfString, @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) List> arrayArrayOfInteger, @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) List> arrayArrayOfModel) { this.arrayOfString = arrayOfString; this.arrayArrayOfInteger = arrayArrayOfInteger; @@ -72,10 +72,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -105,10 +105,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,10 +138,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Capitalization.java index f45da7f6e8a..d6ff62b0c87 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Capitalization.java @@ -58,8 +58,8 @@ public class Capitalization { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Capitalization(@JsonProperty(JSON_PROPERTY_SMALL_CAMEL) String smallCamel, @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) String capitalCamel, @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) String smallSnake, @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) String capitalSnake, @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) String scAETHFlowPoints, @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) String ATT_NAME) { this.smallCamel = smallCamel; this.capitalCamel = capitalCamel; @@ -75,10 +75,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -100,10 +100,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,10 +125,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -150,10 +150,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -175,10 +175,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -200,10 +200,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Cat.java index 3581d84539b..5c4838b3715 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Cat.java @@ -49,8 +49,8 @@ public class Cat extends Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Cat(@JsonProperty(JSON_PROPERTY_DECLAWED) Boolean declawed, @JsonProperty(JSON_PROPERTY_CLASS_NAME) String className, @JsonProperty(JSON_PROPERTY_COLOR) String color) { super(className, color); this.declawed = declawed; @@ -62,10 +62,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java index 9d30b5bf69c..1a7438f0671 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Category.java @@ -42,8 +42,8 @@ public class Category { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Category(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_NAME) String name) { this.id = id; this.name = name; @@ -55,10 +55,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ChildWithNullable.java index f7b9a366ed2..c110254fd32 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -50,8 +50,8 @@ public class ChildWithNullable extends ParentWithNullable { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ChildWithNullable(@JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) String otherProperty, @JsonProperty(JSON_PROPERTY_TYPE) TypeEnum type, @JsonProperty(JSON_PROPERTY_NULLABLE_PROPERTY) String nullableProperty) { super(type, nullableProperty); this.otherProperty = otherProperty; @@ -63,10 +63,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ClassModel.java index 007756d5323..747af799390 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ClassModel.java @@ -38,8 +38,8 @@ public class ClassModel { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ClassModel(@JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) String propertyClass) { this.propertyClass = propertyClass; } @@ -50,10 +50,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Client.java index 74b8e3a50d7..cac6829dffd 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Client.java @@ -38,8 +38,8 @@ public class Client { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Client(@JsonProperty(JSON_PROPERTY_CLIENT) String client) { this.client = client; } @@ -50,10 +50,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/DeprecatedObject.java index 7b3ee742c85..b3dd9be1256 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -40,8 +40,8 @@ public class DeprecatedObject { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public DeprecatedObject(@JsonProperty(JSON_PROPERTY_NAME) String name) { this.name = name; } @@ -52,10 +52,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Dog.java index 979da0b68e6..dead0341501 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Dog.java @@ -49,8 +49,8 @@ public class Dog extends Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Dog(@JsonProperty(JSON_PROPERTY_BREED) String breed, @JsonProperty(JSON_PROPERTY_CLASS_NAME) String className, @JsonProperty(JSON_PROPERTY_COLOR) String color) { super(className, color); this.breed = breed; @@ -62,10 +62,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumArrays.java index 44dd02374f6..2f143aad8a4 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -115,8 +115,8 @@ public class EnumArrays { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public EnumArrays(@JsonProperty(JSON_PROPERTY_JUST_SYMBOL) JustSymbolEnum justSymbol, @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) List arrayEnum) { this.justSymbol = justSymbol; this.arrayEnum = arrayEnum; @@ -128,10 +128,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +161,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumTest.java index 2b4c9d55862..ba09d6c36ea 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/EnumTest.java @@ -219,8 +219,8 @@ public class EnumTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public EnumTest(@JsonProperty(JSON_PROPERTY_ENUM_STRING) EnumStringEnum enumString, @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) EnumStringRequiredEnum enumStringRequired, @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) EnumIntegerEnum enumInteger, @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) EnumNumberEnum enumNumber, @JsonProperty(JSON_PROPERTY_OUTER_ENUM) OuterEnum outerEnum, @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) OuterEnumInteger outerEnumInteger, @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) OuterEnumDefaultValue outerEnumDefaultValue, @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) OuterEnumIntegerDefaultValue outerEnumIntegerDefaultValue) { this.enumString = enumString; this.enumStringRequired = enumStringRequired; @@ -238,10 +238,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -263,10 +263,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -288,10 +288,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -313,10 +313,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -338,10 +338,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -371,10 +371,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -396,10 +396,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -421,10 +421,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index e9ea261576f..989e98dea43 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -46,8 +46,8 @@ public class FakeBigDecimalMap200Response { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FakeBigDecimalMap200Response(@JsonProperty(JSON_PROPERTY_SOME_ID) BigDecimal someId, @JsonProperty(JSON_PROPERTY_SOME_MAP) Map someMap) { this.someId = someId; this.someMap = someMap; @@ -59,10 +59,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,10 +92,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 7c5720540d0..a83280ad5e7 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -46,8 +46,8 @@ public class FileSchemaTestClass { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FileSchemaTestClass(@JsonProperty(JSON_PROPERTY_FILE) ModelFile _file, @JsonProperty(JSON_PROPERTY_FILES) List files) { this._file = _file; this.files = files; @@ -59,10 +59,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -92,10 +92,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Foo.java index cdcde231199..1a1c879f198 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Foo.java @@ -38,8 +38,8 @@ public class Foo { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Foo(@JsonProperty(JSON_PROPERTY_BAR) String bar) { this.bar = bar; } @@ -50,10 +50,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 7e2537d5512..ef17ab77323 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -40,8 +40,8 @@ public class FooGetDefaultResponse { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FooGetDefaultResponse(@JsonProperty(JSON_PROPERTY_STRING) Foo string) { this.string = string; } @@ -52,10 +52,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FormatTest.java index 11fd95fb146..302057035c1 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FormatTest.java @@ -104,8 +104,8 @@ public class FormatTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FormatTest(@JsonProperty(JSON_PROPERTY_INTEGER) Integer integer, @JsonProperty(JSON_PROPERTY_INT32) Integer int32, @JsonProperty(JSON_PROPERTY_INT64) Long int64, @JsonProperty(JSON_PROPERTY_NUMBER) BigDecimal number, @JsonProperty(JSON_PROPERTY_FLOAT) Float _float, @JsonProperty(JSON_PROPERTY_DOUBLE) Double _double, @JsonProperty(JSON_PROPERTY_DECIMAL) BigDecimal decimal, @JsonProperty(JSON_PROPERTY_STRING) String string, @JsonProperty(JSON_PROPERTY_BYTE) byte[] _byte, @JsonProperty(JSON_PROPERTY_BINARY) File binary, @JsonProperty(JSON_PROPERTY_DATE) LocalDate date, @JsonProperty(JSON_PROPERTY_DATE_TIME) OffsetDateTime dateTime, @JsonProperty(JSON_PROPERTY_UUID) UUID uuid, @JsonProperty(JSON_PROPERTY_PASSWORD) String password, @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) String patternWithDigits, @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) String patternWithDigitsAndDelimiter) { this.integer = integer; this.int32 = int32; @@ -131,12 +131,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,12 +158,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -185,10 +185,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -210,12 +210,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -237,12 +237,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -264,12 +264,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -291,10 +291,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -316,10 +316,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -341,10 +341,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -366,10 +366,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -391,10 +391,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -416,10 +416,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -441,10 +441,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -466,10 +466,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -491,10 +491,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -516,10 +516,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 6f672c5635f..d67cb0ef641 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -42,8 +42,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters and all parameters - */ + * Constructor with only readonly parameters and all parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -54,10 +54,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -68,10 +68,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 7cc505a11d9..3711ad7618f 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -42,8 +42,8 @@ public class HealthCheckResult { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public HealthCheckResult(@JsonProperty(JSON_PROPERTY_NULLABLE_MESSAGE) String nullableMessage) { this.nullableMessage = nullableMessage == null ? JsonNullable.undefined() : JsonNullable.of(nullableMessage); } @@ -54,10 +54,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MapTest.java index 5be8fda11d7..ea15323bc61 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MapTest.java @@ -87,8 +87,8 @@ public class MapTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public MapTest(@JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) Map> mapMapOfString, @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) Map mapOfEnumString, @JsonProperty(JSON_PROPERTY_DIRECT_MAP) Map directMap, @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) Map indirectMap) { this.mapMapOfString = mapMapOfString; this.mapOfEnumString = mapOfEnumString; @@ -110,10 +110,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,10 +143,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -209,10 +209,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index fd779b84412..c99ffff6f53 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -51,8 +51,8 @@ public class MixedPropertiesAndAdditionalPropertiesClass { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public MixedPropertiesAndAdditionalPropertiesClass(@JsonProperty(JSON_PROPERTY_UUID) UUID uuid, @JsonProperty(JSON_PROPERTY_DATE_TIME) OffsetDateTime dateTime, @JsonProperty(JSON_PROPERTY_MAP) Map map) { this.uuid = uuid; this.dateTime = dateTime; @@ -65,10 +65,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -123,10 +123,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Model200Response.java index 6bc71d0ee67..bae256e28da 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Model200Response.java @@ -43,8 +43,8 @@ public class Model200Response { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Model200Response(@JsonProperty(JSON_PROPERTY_NAME) Integer name, @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) String propertyClass) { this.name = name; this.propertyClass = propertyClass; @@ -56,10 +56,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelApiResponse.java index f766beeca88..ac7d4fa670f 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -47,8 +47,8 @@ public class ModelApiResponse { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelApiResponse(@JsonProperty(JSON_PROPERTY_CODE) Integer code, @JsonProperty(JSON_PROPERTY_TYPE) String type, @JsonProperty(JSON_PROPERTY_MESSAGE) String message) { this.code = code; this.type = type; @@ -61,10 +61,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,10 +86,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -111,10 +111,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelFile.java index 117282ff108..68de3ddbe69 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelFile.java @@ -39,8 +39,8 @@ public class ModelFile { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelFile(@JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) String sourceURI) { this.sourceURI = sourceURI; } @@ -51,10 +51,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelList.java index 6389d49b6aa..c5a9848bd88 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelList.java @@ -39,8 +39,8 @@ public class ModelList { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelList(@JsonProperty(JSON_PROPERTY_123LIST) String _123list) { this._123list = _123list; } @@ -51,10 +51,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelReturn.java index 01f9da6033b..b991e3bdd4e 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -39,8 +39,8 @@ public class ModelReturn { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelReturn(@JsonProperty(JSON_PROPERTY_RETURN) Integer _return) { this._return = _return; } @@ -51,10 +51,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Name.java index 7ae59941d82..162ab98a241 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Name.java @@ -49,8 +49,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -62,8 +62,8 @@ public class Name { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Name(@JsonProperty(JSON_PROPERTY_NAME) Integer name, @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @JsonProperty(JSON_PROPERTY_PROPERTY) String property, @JsonProperty(JSON_PROPERTY_123NUMBER) Integer _123number) { this.name = name; this.snakeCase = snakeCase; @@ -77,10 +77,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -96,10 +96,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NullableClass.java index c90bb4fc06e..5b82b6cb031 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NullableClass.java @@ -95,8 +95,8 @@ public class NullableClass extends HashMap { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public NullableClass(@JsonProperty(JSON_PROPERTY_INTEGER_PROP) Integer integerProp, @JsonProperty(JSON_PROPERTY_NUMBER_PROP) BigDecimal numberProp, @JsonProperty(JSON_PROPERTY_BOOLEAN_PROP) Boolean booleanProp, @JsonProperty(JSON_PROPERTY_STRING_PROP) String stringProp, @JsonProperty(JSON_PROPERTY_DATE_PROP) LocalDate dateProp, @JsonProperty(JSON_PROPERTY_DATETIME_PROP) OffsetDateTime datetimeProp, @JsonProperty(JSON_PROPERTY_ARRAY_NULLABLE_PROP) List arrayNullableProp, @JsonProperty(JSON_PROPERTY_ARRAY_AND_ITEMS_NULLABLE_PROP) List arrayAndItemsNullableProp, @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) List arrayItemsNullable, @JsonProperty(JSON_PROPERTY_OBJECT_NULLABLE_PROP) Map objectNullableProp, @JsonProperty(JSON_PROPERTY_OBJECT_AND_ITEMS_NULLABLE_PROP) Map objectAndItemsNullableProp, @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) Map objectItemsNullable) { super(); this.integerProp = integerProp == null ? JsonNullable.undefined() : JsonNullable.of(integerProp); @@ -119,10 +119,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -152,10 +152,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -185,10 +185,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -218,10 +218,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -251,10 +251,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -284,10 +284,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -329,10 +329,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -374,10 +374,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -415,10 +415,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -452,10 +452,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -497,10 +497,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -538,10 +538,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NumberOnly.java index 881ff1a5d15..15761203bf7 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -39,8 +39,8 @@ public class NumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public NumberOnly(@JsonProperty(JSON_PROPERTY_JUST_NUMBER) BigDecimal justNumber) { this.justNumber = justNumber; } @@ -51,10 +51,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 81fe89a441d..6e156c7c404 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -55,8 +55,8 @@ public class ObjectWithDeprecatedFields { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ObjectWithDeprecatedFields(@JsonProperty(JSON_PROPERTY_UUID) String uuid, @JsonProperty(JSON_PROPERTY_ID) BigDecimal id, @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) DeprecatedObject deprecatedRef, @JsonProperty(JSON_PROPERTY_BARS) List bars) { this.uuid = uuid; this.id = id; @@ -70,10 +70,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -95,11 +95,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -122,11 +122,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -157,11 +157,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Order.java index a1b9e0e19dd..3b4cf9f29a4 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Order.java @@ -96,8 +96,8 @@ public class Order { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Order(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_PET_ID) Long petId, @JsonProperty(JSON_PROPERTY_QUANTITY) Integer quantity, @JsonProperty(JSON_PROPERTY_SHIP_DATE) OffsetDateTime shipDate, @JsonProperty(JSON_PROPERTY_STATUS) StatusEnum status, @JsonProperty(JSON_PROPERTY_COMPLETE) Boolean complete) { this.id = id; this.petId = petId; @@ -113,10 +113,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,10 +138,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -213,10 +213,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -238,10 +238,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterComposite.java index 7b2376c869f..5836a361b9c 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -47,8 +47,8 @@ public class OuterComposite { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public OuterComposite(@JsonProperty(JSON_PROPERTY_MY_NUMBER) BigDecimal myNumber, @JsonProperty(JSON_PROPERTY_MY_STRING) String myString, @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) Boolean myBoolean) { this.myNumber = myNumber; this.myString = myString; @@ -61,10 +61,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -86,10 +86,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -111,10 +111,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index 4ee6da71cd7..e22892e19e1 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -39,8 +39,8 @@ public class OuterObjectWithEnumProperty { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public OuterObjectWithEnumProperty(@JsonProperty(JSON_PROPERTY_VALUE) OuterEnumInteger value) { this.value = value; } @@ -51,10 +51,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java index c09a92ea3be..bc20507b264 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -91,8 +91,8 @@ public class ParentWithNullable { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ParentWithNullable(@JsonProperty(JSON_PROPERTY_TYPE) TypeEnum type, @JsonProperty(JSON_PROPERTY_NULLABLE_PROPERTY) String nullableProperty) { this.type = type; this.nullableProperty = nullableProperty == null ? JsonNullable.undefined() : JsonNullable.of(nullableProperty); @@ -104,10 +104,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java index fb49d70d9c7..cc20b89d312 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Pet.java @@ -103,8 +103,8 @@ public class Pet { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Pet(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_CATEGORY) Category category, @JsonProperty(JSON_PROPERTY_NAME) String name, @JsonProperty(JSON_PROPERTY_PHOTO_URLS) Set photoUrls, @JsonProperty(JSON_PROPERTY_TAGS) List tags, @JsonProperty(JSON_PROPERTY_STATUS) StatusEnum status) { this.id = id; this.category = category; @@ -120,10 +120,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -145,10 +145,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -170,10 +170,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -203,10 +203,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -237,10 +237,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -262,10 +262,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index e9e90316743..8dbb1421e58 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -52,17 +52,17 @@ public class ReadOnlyFirst { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ReadOnlyFirst(@JsonProperty(JSON_PROPERTY_BAR) String bar, @JsonProperty(JSON_PROPERTY_BAZ) String baz) { this.bar = bar; this.baz = baz; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/SpecialModelName.java index f8640d89fa6..292e22193b2 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -39,8 +39,8 @@ public class SpecialModelName { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public SpecialModelName(@JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) Long $specialPropertyName) { this.$specialPropertyName = $specialPropertyName; } @@ -51,10 +51,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java index aeed192673b..8f9c9750cd6 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/Tag.java @@ -42,8 +42,8 @@ public class Tag { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Tag(@JsonProperty(JSON_PROPERTY_ID) Long id, @JsonProperty(JSON_PROPERTY_NAME) String name) { this.id = id; this.name = name; @@ -55,10 +55,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -80,10 +80,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index b7bfdbd6e57..b3057538cb4 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -42,8 +42,8 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index 491c2179198..9b830127c3e 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 58260e72ebf..3cb4304e750 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -48,10 +48,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 906667beda3..6acd93d4966 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -97,10 +97,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @@ -131,10 +131,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -166,10 +166,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @@ -200,10 +200,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @@ -234,10 +234,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @jakarta.annotation.Nullable @Valid @@ -269,10 +269,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @jakarta.annotation.Nullable @Valid @@ -304,10 +304,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @jakarta.annotation.Nullable @Valid @@ -339,10 +339,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @jakarta.annotation.Nullable @Valid @@ -366,10 +366,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @@ -392,10 +392,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @@ -418,10 +418,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index e8c61167b1b..e5cfb971522 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -48,10 +48,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index ee6970da8dd..be3e06561bb 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -49,10 +49,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index e07f8aeb457..ae75d5d2bf2 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -48,10 +48,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index ff8529c9cec..835233ff2b2 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -48,10 +48,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Animal.java index a42b81a7531..f509d100bde 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Animal.java @@ -63,10 +63,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -90,10 +90,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 79c43e0830e..ed6db1e977e 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -57,10 +57,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 215ff6c6d29..d7c2d219553 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -57,10 +57,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayTest.java index 089744c80c7..f63be19bf41 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -65,10 +65,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @@ -99,10 +99,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @jakarta.annotation.Nullable @Valid @@ -134,10 +134,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/BigCat.java index 4c9301e8f46..475169d4368 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/BigCat.java @@ -95,10 +95,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Capitalization.java index 5f5bc4e5e13..ebadcde2477 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Capitalization.java @@ -65,10 +65,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @@ -91,10 +91,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @@ -117,10 +117,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @@ -143,10 +143,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @@ -169,10 +169,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @@ -195,10 +195,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Cat.java index 8b71eba511f..5608b56e527 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Cat.java @@ -59,10 +59,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Category.java index 60260465b07..6c3f81ab3f3 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Category.java @@ -49,10 +49,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -75,10 +75,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ClassModel.java index cd47fe3dc45..e7cacbfdd4f 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ClassModel.java @@ -45,10 +45,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Client.java index 1d03f2663f0..d9e1badff7a 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Client.java @@ -45,10 +45,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Dog.java index f5bfe3dab96..89d8faf05db 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Dog.java @@ -56,10 +56,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumArrays.java index 0e1576d2385..e4e75c3dc24 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -122,10 +122,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @@ -156,10 +156,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumTest.java index 7598b7aaeab..1f1b924c183 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/EnumTest.java @@ -207,10 +207,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @@ -233,10 +233,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -260,10 +260,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @@ -286,10 +286,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @@ -312,10 +312,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index b4a2061d6fd..e9e1efbe7a5 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -53,10 +53,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @jakarta.annotation.Nullable @Valid @@ -88,10 +88,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FormatTest.java index 4a8f2ab60f4..8667cfabd09 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FormatTest.java @@ -103,12 +103,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @jakarta.annotation.Nullable @Min(10) @Max(100) @JsonProperty(JSON_PROPERTY_INTEGER) @@ -131,12 +131,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @jakarta.annotation.Nullable @Min(20) @Max(200) @JsonProperty(JSON_PROPERTY_INT32) @@ -159,10 +159,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @@ -185,12 +185,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -215,12 +215,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @jakarta.annotation.Nullable @DecimalMin("54.3") @DecimalMax("987.6") @JsonProperty(JSON_PROPERTY_FLOAT) @@ -243,12 +243,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @jakarta.annotation.Nullable @DecimalMin("67.8") @DecimalMax("123.4") @JsonProperty(JSON_PROPERTY_DOUBLE) @@ -271,10 +271,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @jakarta.annotation.Nullable @Pattern(regexp="/[a-z]/i") @JsonProperty(JSON_PROPERTY_STRING) @@ -297,10 +297,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -324,10 +324,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @jakarta.annotation.Nullable @Valid @@ -351,10 +351,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -379,10 +379,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Valid @@ -406,10 +406,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Valid @@ -433,10 +433,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nonnull @NotNull @Size(min=10,max=64) @@ -460,10 +460,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 08974b9fb64..49e98950589 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -44,8 +44,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -56,10 +56,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -71,10 +71,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MapTest.java index 88a24f63a0b..c2ccbff44be 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MapTest.java @@ -102,10 +102,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @jakarta.annotation.Nullable @Valid @@ -137,10 +137,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @@ -171,10 +171,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @@ -205,10 +205,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 2a2c105f7cf..0fd574cead1 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -58,10 +58,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @Valid @@ -85,10 +85,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @jakarta.annotation.Nullable @Valid @@ -120,10 +120,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Model200Response.java index af5fd578b5e..abc7ba513ff 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Model200Response.java @@ -50,10 +50,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @@ -76,10 +76,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 67bad6f7e52..ebde6bff243 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -54,10 +54,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @@ -80,10 +80,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @@ -106,10 +106,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelFile.java index b6c60024bc1..b2c1e812bf6 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelFile.java @@ -46,10 +46,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelList.java index 04a0ad81fd1..c9a539c4477 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelList.java @@ -46,10 +46,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelReturn.java index 5cdc0aa8086..fed7e65b20b 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -46,10 +46,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Name.java index ea1e85b8554..9d88abde0a9 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Name.java @@ -51,8 +51,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -69,10 +69,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -90,10 +90,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @@ -111,10 +111,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @@ -131,10 +131,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/NumberOnly.java index 5314dd587bc..4164ced1f0e 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -46,10 +46,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @jakarta.annotation.Nullable @Valid diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Order.java index 21cca07a23a..88f96cae4c9 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Order.java @@ -103,10 +103,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -129,10 +129,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @@ -155,10 +155,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -181,10 +181,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @Valid @@ -208,10 +208,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @@ -234,10 +234,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/OuterComposite.java index dab6f0c951e..314ef2ffbba 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -54,10 +54,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -81,10 +81,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @@ -107,10 +107,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Pet.java index c8a01a1d20f..a54e767ef18 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Pet.java @@ -110,10 +110,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -136,10 +136,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @Valid @@ -163,10 +163,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -198,10 +198,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -234,10 +234,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @Valid @@ -261,10 +261,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index ad09344da50..15e5616f7e7 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -43,8 +43,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -53,10 +53,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @@ -74,10 +74,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/SpecialModelName.java index 3290d874b4f..ae83c490184 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -46,10 +46,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Tag.java index 215710a45aa..7b74de8ac10 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/Tag.java @@ -49,10 +49,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -75,10 +75,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index 9a7ed6af976..72f8ce7caf2 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -65,10 +65,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -92,10 +92,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -120,10 +120,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -147,10 +147,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -182,10 +182,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderExample.java index b504576b3e7..94aeb770076 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -69,10 +69,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -96,10 +96,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @Valid @@ -124,10 +124,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -151,10 +151,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -178,10 +178,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @jakarta.annotation.Nonnull @NotNull @@ -213,10 +213,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @jakarta.annotation.Nonnull @NotNull diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/User.java index f7468329b42..0b01a2ed020 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/User.java @@ -73,10 +73,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -99,10 +99,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @@ -125,10 +125,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -151,10 +151,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -177,10 +177,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @@ -203,10 +203,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -229,10 +229,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @@ -255,10 +255,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/XmlItem.java index 21184e26cfa..79995f01c08 100644 --- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/XmlItem.java @@ -161,10 +161,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @@ -187,10 +187,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -214,10 +214,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @@ -240,10 +240,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @@ -274,10 +274,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @@ -300,10 +300,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @@ -326,10 +326,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -353,10 +353,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @@ -379,10 +379,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @@ -413,10 +413,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @@ -447,10 +447,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @@ -473,10 +473,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @@ -499,10 +499,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -526,10 +526,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @@ -552,10 +552,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @@ -586,10 +586,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @@ -620,10 +620,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @@ -646,10 +646,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @@ -672,10 +672,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -699,10 +699,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @@ -725,10 +725,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @@ -759,10 +759,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @@ -793,10 +793,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @@ -819,10 +819,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @@ -845,10 +845,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @jakarta.annotation.Nullable @Valid @@ -872,10 +872,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @@ -898,10 +898,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @@ -932,10 +932,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @@ -966,10 +966,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index f175e4f8e95..3881ef9a6ab 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index b84dd06f6e7..2490dfbea7f 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 8c3fbab9dfa..0bb8a54bebc 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 4991b88d337..ee342019dc1 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -92,10 +92,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable public Map getMapString() { @@ -121,10 +121,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable public Map getMapNumber() { @@ -150,10 +150,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable public Map getMapInteger() { @@ -179,10 +179,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable public Map getMapBoolean() { @@ -208,10 +208,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable public Map> getMapArrayInteger() { @@ -237,10 +237,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapArrayAnytype() { @@ -266,10 +266,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable public Map> getMapMapString() { @@ -295,10 +295,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapMapAnytype() { @@ -316,10 +316,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { @@ -337,10 +337,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable public Object getAnytype2() { @@ -358,10 +358,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable public Object getAnytype3() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 7a981d14364..9ddf40ac65d 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 284a7a3a408..f44788c319d 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index cabdb503a7b..dd6e137c946 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index d8223ad9fa8..87773986205 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Animal.java index 9c84c9dd54d..6226ded5628 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Animal.java @@ -44,10 +44,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { @@ -65,10 +65,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 78dca7978fc..8318bced60b 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index cc68125f9d4..40618d8b1f2 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayTest.java index 63fb178a742..b4c7f631692 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -60,10 +60,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { @@ -89,10 +89,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { @@ -118,10 +118,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/BigCat.java index ce5bf70e545..399960dd107 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/BigCat.java @@ -93,10 +93,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable public KindEnum getKind() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Capitalization.java index 2ef3bf760c0..d025b971dad 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Capitalization.java @@ -60,10 +60,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { @@ -81,10 +81,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { @@ -102,10 +102,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { @@ -123,10 +123,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { @@ -144,10 +144,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Cat.java index a95e8f652c7..cf0df17a717 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Cat.java @@ -42,10 +42,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Category.java index 7a91953e59e..f9f4623b88a 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Category.java @@ -44,10 +44,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ClassModel.java index 97e1c4fba07..2d214463199 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ClassModel.java @@ -40,10 +40,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Client.java index b3d48fc8229..305c74091f8 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Client.java @@ -40,10 +40,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Dog.java index 6e49cd67766..22629114e8e 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Dog.java @@ -42,10 +42,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumArrays.java index 81b9d9b1e15..0506daec708 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -141,10 +141,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { @@ -170,10 +170,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumTest.java index 5154691322c..dd77d390ff1 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/EnumTest.java @@ -249,10 +249,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { @@ -270,10 +270,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { @@ -291,10 +291,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { @@ -312,10 +312,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { @@ -333,10 +333,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 92893c02b50..11a735bc01e 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -48,10 +48,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { @@ -77,10 +77,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FormatTest.java index 616e7f047f2..5bcd3444e7c 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FormatTest.java @@ -97,12 +97,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { @@ -120,12 +120,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { @@ -143,10 +143,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { @@ -164,12 +164,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { @@ -187,12 +187,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { @@ -210,12 +210,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { @@ -233,10 +233,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { @@ -254,10 +254,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { @@ -275,10 +275,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { @@ -296,10 +296,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { @@ -317,10 +317,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -338,10 +338,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -359,10 +359,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { @@ -380,10 +380,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable public BigDecimal getBigDecimal() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 58c82ce5d6a..906bd685eb2 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -38,8 +38,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public HasOnlyReadOnly( String bar, @@ -50,10 +50,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -62,10 +62,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MapTest.java index 84cc5578e0d..c1581219310 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MapTest.java @@ -109,10 +109,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { @@ -138,10 +138,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { @@ -167,10 +167,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { @@ -196,10 +196,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index a4835ce4f65..872f6653c1b 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -53,10 +53,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -74,10 +74,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -103,10 +103,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Model200Response.java index 83881fc7d72..55fc41cc442 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Model200Response.java @@ -44,10 +44,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { @@ -65,10 +65,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index bfca955e8a0..1891d3935a3 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -48,10 +48,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { @@ -69,10 +69,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelFile.java index 0645162994e..84649b82268 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelFile.java @@ -40,10 +40,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelList.java index 0be30cbaac2..0bb49408d53 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelList.java @@ -40,10 +40,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelReturn.java index 26e4a159b83..13d1f805349 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -40,10 +40,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Name.java index b79984a7208..ad6901cd56c 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Name.java @@ -46,8 +46,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public Name( Integer snakeCase, @@ -64,10 +64,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { @@ -79,10 +79,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { @@ -97,10 +97,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { @@ -112,10 +112,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/NumberOnly.java index e948fced9ac..57fc0f18fe8 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -41,10 +41,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Order.java index ca8a048664f..b6b5e36800f 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Order.java @@ -110,10 +110,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -131,10 +131,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { @@ -152,10 +152,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { @@ -173,10 +173,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { @@ -194,10 +194,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { @@ -215,10 +215,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/OuterComposite.java index ecb759b0882..1dca27b0caf 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -49,10 +49,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { @@ -70,10 +70,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { @@ -91,10 +91,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Pet.java index a4caf91e01d..3d4846ab0b7 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Pet.java @@ -116,10 +116,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -137,10 +137,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { @@ -187,10 +187,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public Set getPhotoUrls() { @@ -216,10 +216,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { @@ -237,10 +237,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 8d38bc84eb8..b436815d817 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -38,8 +38,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public ReadOnlyFirst( String bar @@ -48,10 +48,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -66,10 +66,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/SpecialModelName.java index 8564ee04bd6..a55d676327f 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -40,10 +40,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Tag.java index 8421f94e4b8..478366c8c74 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/Tag.java @@ -44,10 +44,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index ca63e55bff6..9b773d878f9 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -60,10 +60,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -81,10 +81,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -102,10 +102,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -123,10 +123,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -152,10 +152,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderExample.java index ec74900f6a6..fe1f74d7344 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -64,10 +64,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -85,10 +85,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -106,10 +106,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull public Float getFloatItem() { @@ -127,10 +127,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -148,10 +148,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -177,10 +177,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/User.java index 936feced2f5..96243a00daf 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/User.java @@ -68,10 +68,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -89,10 +89,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { @@ -131,10 +131,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { @@ -152,10 +152,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { @@ -194,10 +194,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { @@ -215,10 +215,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/XmlItem.java index 9d2721a2347..d6d590a40d2 100644 --- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/XmlItem.java @@ -156,10 +156,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable public String getAttributeString() { @@ -177,10 +177,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getAttributeNumber() { @@ -198,10 +198,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable public Integer getAttributeInteger() { @@ -219,10 +219,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable public Boolean getAttributeBoolean() { @@ -248,10 +248,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable public List getWrappedArray() { @@ -269,10 +269,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable public String getNameString() { @@ -290,10 +290,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNameNumber() { @@ -311,10 +311,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable public Integer getNameInteger() { @@ -332,10 +332,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNameBoolean() { @@ -361,10 +361,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable public List getNameArray() { @@ -390,10 +390,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable public List getNameWrappedArray() { @@ -411,10 +411,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable public String getPrefixString() { @@ -432,10 +432,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNumber() { @@ -453,10 +453,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixInteger() { @@ -474,10 +474,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixBoolean() { @@ -503,10 +503,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable public List getPrefixArray() { @@ -532,10 +532,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixWrappedArray() { @@ -553,10 +553,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable public String getNamespaceString() { @@ -574,10 +574,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNamespaceNumber() { @@ -595,10 +595,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable public Integer getNamespaceInteger() { @@ -616,10 +616,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNamespaceBoolean() { @@ -645,10 +645,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable public List getNamespaceArray() { @@ -674,10 +674,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable public List getNamespaceWrappedArray() { @@ -695,10 +695,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable public String getPrefixNsString() { @@ -716,10 +716,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNsNumber() { @@ -737,10 +737,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixNsInteger() { @@ -758,10 +758,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixNsBoolean() { @@ -787,10 +787,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsArray() { @@ -816,10 +816,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsWrappedArray() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index f175e4f8e95..3881ef9a6ab 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index b84dd06f6e7..2490dfbea7f 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 8c3fbab9dfa..0bb8a54bebc 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 4991b88d337..ee342019dc1 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -92,10 +92,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable public Map getMapString() { @@ -121,10 +121,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable public Map getMapNumber() { @@ -150,10 +150,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable public Map getMapInteger() { @@ -179,10 +179,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable public Map getMapBoolean() { @@ -208,10 +208,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable public Map> getMapArrayInteger() { @@ -237,10 +237,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapArrayAnytype() { @@ -266,10 +266,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable public Map> getMapMapString() { @@ -295,10 +295,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapMapAnytype() { @@ -316,10 +316,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { @@ -337,10 +337,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable public Object getAnytype2() { @@ -358,10 +358,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable public Object getAnytype3() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 7a981d14364..9ddf40ac65d 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 284a7a3a408..f44788c319d 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index cabdb503a7b..dd6e137c946 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index d8223ad9fa8..87773986205 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Animal.java index 9c84c9dd54d..6226ded5628 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Animal.java @@ -44,10 +44,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { @@ -65,10 +65,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 78dca7978fc..8318bced60b 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index cc68125f9d4..40618d8b1f2 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayTest.java index 63fb178a742..b4c7f631692 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -60,10 +60,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { @@ -89,10 +89,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { @@ -118,10 +118,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/BigCat.java index ce5bf70e545..399960dd107 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/BigCat.java @@ -93,10 +93,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable public KindEnum getKind() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Capitalization.java index 2ef3bf760c0..d025b971dad 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Capitalization.java @@ -60,10 +60,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { @@ -81,10 +81,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { @@ -102,10 +102,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { @@ -123,10 +123,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { @@ -144,10 +144,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Cat.java index a95e8f652c7..cf0df17a717 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Cat.java @@ -42,10 +42,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Category.java index 7a91953e59e..f9f4623b88a 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Category.java @@ -44,10 +44,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ClassModel.java index 97e1c4fba07..2d214463199 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ClassModel.java @@ -40,10 +40,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Client.java index b3d48fc8229..305c74091f8 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Client.java @@ -40,10 +40,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Dog.java index 6e49cd67766..22629114e8e 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Dog.java @@ -42,10 +42,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumArrays.java index 81b9d9b1e15..0506daec708 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -141,10 +141,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { @@ -170,10 +170,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumTest.java index 5154691322c..dd77d390ff1 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/EnumTest.java @@ -249,10 +249,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { @@ -270,10 +270,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { @@ -291,10 +291,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { @@ -312,10 +312,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { @@ -333,10 +333,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 92893c02b50..11a735bc01e 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -48,10 +48,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { @@ -77,10 +77,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FormatTest.java index 616e7f047f2..5bcd3444e7c 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FormatTest.java @@ -97,12 +97,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { @@ -120,12 +120,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { @@ -143,10 +143,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { @@ -164,12 +164,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { @@ -187,12 +187,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { @@ -210,12 +210,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { @@ -233,10 +233,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { @@ -254,10 +254,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { @@ -275,10 +275,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { @@ -296,10 +296,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { @@ -317,10 +317,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -338,10 +338,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -359,10 +359,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { @@ -380,10 +380,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable public BigDecimal getBigDecimal() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 58c82ce5d6a..906bd685eb2 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -38,8 +38,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public HasOnlyReadOnly( String bar, @@ -50,10 +50,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -62,10 +62,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MapTest.java index 84cc5578e0d..c1581219310 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MapTest.java @@ -109,10 +109,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { @@ -138,10 +138,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { @@ -167,10 +167,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { @@ -196,10 +196,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index a4835ce4f65..872f6653c1b 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -53,10 +53,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -74,10 +74,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -103,10 +103,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Model200Response.java index 83881fc7d72..55fc41cc442 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Model200Response.java @@ -44,10 +44,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { @@ -65,10 +65,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index bfca955e8a0..1891d3935a3 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -48,10 +48,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { @@ -69,10 +69,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelFile.java index 0645162994e..84649b82268 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelFile.java @@ -40,10 +40,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelList.java index 0be30cbaac2..0bb49408d53 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelList.java @@ -40,10 +40,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelReturn.java index 26e4a159b83..13d1f805349 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -40,10 +40,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Name.java index b79984a7208..ad6901cd56c 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Name.java @@ -46,8 +46,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public Name( Integer snakeCase, @@ -64,10 +64,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { @@ -79,10 +79,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { @@ -97,10 +97,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { @@ -112,10 +112,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/NumberOnly.java index e948fced9ac..57fc0f18fe8 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -41,10 +41,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Order.java index ca8a048664f..b6b5e36800f 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Order.java @@ -110,10 +110,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -131,10 +131,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { @@ -152,10 +152,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { @@ -173,10 +173,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { @@ -194,10 +194,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { @@ -215,10 +215,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/OuterComposite.java index ecb759b0882..1dca27b0caf 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -49,10 +49,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { @@ -70,10 +70,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { @@ -91,10 +91,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Pet.java index a4caf91e01d..3d4846ab0b7 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Pet.java @@ -116,10 +116,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -137,10 +137,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { @@ -187,10 +187,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public Set getPhotoUrls() { @@ -216,10 +216,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { @@ -237,10 +237,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 8d38bc84eb8..b436815d817 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -38,8 +38,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public ReadOnlyFirst( String bar @@ -48,10 +48,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -66,10 +66,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/SpecialModelName.java index 8564ee04bd6..a55d676327f 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -40,10 +40,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Tag.java index 8421f94e4b8..478366c8c74 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/Tag.java @@ -44,10 +44,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index ca63e55bff6..9b773d878f9 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -60,10 +60,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -81,10 +81,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -102,10 +102,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -123,10 +123,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -152,10 +152,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderExample.java index ec74900f6a6..fe1f74d7344 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -64,10 +64,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -85,10 +85,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -106,10 +106,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull public Float getFloatItem() { @@ -127,10 +127,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -148,10 +148,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -177,10 +177,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/User.java index 936feced2f5..96243a00daf 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/User.java @@ -68,10 +68,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -89,10 +89,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { @@ -131,10 +131,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { @@ -152,10 +152,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { @@ -194,10 +194,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { @@ -215,10 +215,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/XmlItem.java index 9d2721a2347..d6d590a40d2 100644 --- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/XmlItem.java @@ -156,10 +156,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable public String getAttributeString() { @@ -177,10 +177,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getAttributeNumber() { @@ -198,10 +198,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable public Integer getAttributeInteger() { @@ -219,10 +219,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable public Boolean getAttributeBoolean() { @@ -248,10 +248,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable public List getWrappedArray() { @@ -269,10 +269,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable public String getNameString() { @@ -290,10 +290,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNameNumber() { @@ -311,10 +311,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable public Integer getNameInteger() { @@ -332,10 +332,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNameBoolean() { @@ -361,10 +361,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable public List getNameArray() { @@ -390,10 +390,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable public List getNameWrappedArray() { @@ -411,10 +411,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable public String getPrefixString() { @@ -432,10 +432,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNumber() { @@ -453,10 +453,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixInteger() { @@ -474,10 +474,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixBoolean() { @@ -503,10 +503,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable public List getPrefixArray() { @@ -532,10 +532,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixWrappedArray() { @@ -553,10 +553,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable public String getNamespaceString() { @@ -574,10 +574,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNamespaceNumber() { @@ -595,10 +595,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable public Integer getNamespaceInteger() { @@ -616,10 +616,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNamespaceBoolean() { @@ -645,10 +645,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable public List getNamespaceArray() { @@ -674,10 +674,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable public List getNamespaceWrappedArray() { @@ -695,10 +695,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable public String getPrefixNsString() { @@ -716,10 +716,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNsNumber() { @@ -737,10 +737,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixNsInteger() { @@ -758,10 +758,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixNsBoolean() { @@ -787,10 +787,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsArray() { @@ -816,10 +816,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsWrappedArray() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index f175e4f8e95..3881ef9a6ab 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index b84dd06f6e7..2490dfbea7f 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 8c3fbab9dfa..0bb8a54bebc 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 4991b88d337..ee342019dc1 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -92,10 +92,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable public Map getMapString() { @@ -121,10 +121,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable public Map getMapNumber() { @@ -150,10 +150,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable public Map getMapInteger() { @@ -179,10 +179,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable public Map getMapBoolean() { @@ -208,10 +208,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable public Map> getMapArrayInteger() { @@ -237,10 +237,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapArrayAnytype() { @@ -266,10 +266,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable public Map> getMapMapString() { @@ -295,10 +295,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable public Map> getMapMapAnytype() { @@ -316,10 +316,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable public Object getAnytype1() { @@ -337,10 +337,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable public Object getAnytype2() { @@ -358,10 +358,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable public Object getAnytype3() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 7a981d14364..9ddf40ac65d 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index 284a7a3a408..f44788c319d 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -44,10 +44,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index cabdb503a7b..dd6e137c946 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index d8223ad9fa8..87773986205 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -43,10 +43,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Animal.java index 9c84c9dd54d..6226ded5628 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Animal.java @@ -44,10 +44,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull public String getClassName() { @@ -65,10 +65,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable public String getColor() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 78dca7978fc..8318bced60b 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable public List> getArrayArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index cc68125f9d4..40618d8b1f2 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -52,10 +52,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable public List getArrayNumber() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayTest.java index 63fb178a742..b4c7f631692 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -60,10 +60,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable public List getArrayOfString() { @@ -89,10 +89,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfInteger() { @@ -118,10 +118,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable public List> getArrayArrayOfModel() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/BigCat.java index ce5bf70e545..399960dd107 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/BigCat.java @@ -93,10 +93,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable public KindEnum getKind() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Capitalization.java index 2ef3bf760c0..d025b971dad 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Capitalization.java @@ -60,10 +60,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable public String getSmallCamel() { @@ -81,10 +81,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable public String getCapitalCamel() { @@ -102,10 +102,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable public String getSmallSnake() { @@ -123,10 +123,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable public String getCapitalSnake() { @@ -144,10 +144,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable public String getScAETHFlowPoints() { @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable public String getATTNAME() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Cat.java index a95e8f652c7..cf0df17a717 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Cat.java @@ -42,10 +42,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable public Boolean getDeclawed() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Category.java index 7a91953e59e..f9f4623b88a 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Category.java @@ -44,10 +44,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ClassModel.java index 97e1c4fba07..2d214463199 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ClassModel.java @@ -40,10 +40,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Client.java index b3d48fc8229..305c74091f8 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Client.java @@ -40,10 +40,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable public String getClient() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Dog.java index 6e49cd67766..22629114e8e 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Dog.java @@ -42,10 +42,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable public String getBreed() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumArrays.java index 81b9d9b1e15..0506daec708 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -141,10 +141,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable public JustSymbolEnum getJustSymbol() { @@ -170,10 +170,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable public List getArrayEnum() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumTest.java index 5154691322c..dd77d390ff1 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/EnumTest.java @@ -249,10 +249,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable public EnumStringEnum getEnumString() { @@ -270,10 +270,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull public EnumStringRequiredEnum getEnumStringRequired() { @@ -291,10 +291,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable public EnumIntegerEnum getEnumInteger() { @@ -312,10 +312,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable public EnumNumberEnum getEnumNumber() { @@ -333,10 +333,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable public OuterEnum getOuterEnum() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 92893c02b50..11a735bc01e 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -48,10 +48,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable public ModelFile getFile() { @@ -77,10 +77,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable public List getFiles() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FormatTest.java index 616e7f047f2..5bcd3444e7c 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/FormatTest.java @@ -97,12 +97,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable public Integer getInteger() { @@ -120,12 +120,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable public Integer getInt32() { @@ -143,10 +143,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable public Long getInt64() { @@ -164,12 +164,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumber() { @@ -187,12 +187,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable public Float getFloat() { @@ -210,12 +210,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable public Double getDouble() { @@ -233,10 +233,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable public String getString() { @@ -254,10 +254,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull public byte[] getByte() { @@ -275,10 +275,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable public File getBinary() { @@ -296,10 +296,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull public LocalDate getDate() { @@ -317,10 +317,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -338,10 +338,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -359,10 +359,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull public String getPassword() { @@ -380,10 +380,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable public BigDecimal getBigDecimal() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 58c82ce5d6a..906bd685eb2 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -38,8 +38,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public HasOnlyReadOnly( String bar, @@ -50,10 +50,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -62,10 +62,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable public String getFoo() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MapTest.java index 84cc5578e0d..c1581219310 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MapTest.java @@ -109,10 +109,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable public Map> getMapMapOfString() { @@ -138,10 +138,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable public Map getMapOfEnumString() { @@ -167,10 +167,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable public Map getDirectMap() { @@ -196,10 +196,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable public Map getIndirectMap() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index a4835ce4f65..872f6653c1b 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -53,10 +53,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable public UUID getUuid() { @@ -74,10 +74,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable public OffsetDateTime getDateTime() { @@ -103,10 +103,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable public Map getMap() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Model200Response.java index 83881fc7d72..55fc41cc442 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Model200Response.java @@ -44,10 +44,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public Integer getName() { @@ -65,10 +65,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable public String getPropertyClass() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelApiResponse.java index bfca955e8a0..1891d3935a3 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -48,10 +48,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable public Integer getCode() { @@ -69,10 +69,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable public String getType() { @@ -90,10 +90,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable public String getMessage() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelFile.java index 0645162994e..84649b82268 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelFile.java @@ -40,10 +40,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable public String getSourceURI() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelList.java index 0be30cbaac2..0bb49408d53 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelList.java @@ -40,10 +40,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable public String get123list() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelReturn.java index 26e4a159b83..13d1f805349 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -40,10 +40,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable public Integer getReturn() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Name.java index b79984a7208..ad6901cd56c 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Name.java @@ -46,8 +46,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public Name( Integer snakeCase, @@ -64,10 +64,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public Integer getName() { @@ -79,10 +79,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable public Integer getSnakeCase() { @@ -97,10 +97,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable public String getProperty() { @@ -112,10 +112,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable public Integer get123number() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/NumberOnly.java index e948fced9ac..57fc0f18fe8 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -41,10 +41,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getJustNumber() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Order.java index ca8a048664f..b6b5e36800f 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Order.java @@ -110,10 +110,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -131,10 +131,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable public Long getPetId() { @@ -152,10 +152,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable public Integer getQuantity() { @@ -173,10 +173,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable public OffsetDateTime getShipDate() { @@ -194,10 +194,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { @@ -215,10 +215,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable public Boolean getComplete() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/OuterComposite.java index ecb759b0882..1dca27b0caf 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -49,10 +49,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getMyNumber() { @@ -70,10 +70,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable public String getMyString() { @@ -91,10 +91,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable public Boolean getMyBoolean() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Pet.java index a4caf91e01d..3d4846ab0b7 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Pet.java @@ -116,10 +116,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -137,10 +137,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable public Category getCategory() { @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull public String getName() { @@ -187,10 +187,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull public Set getPhotoUrls() { @@ -216,10 +216,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable public List getTags() { @@ -237,10 +237,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable public StatusEnum getStatus() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 8d38bc84eb8..b436815d817 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -38,8 +38,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ public ReadOnlyFirst( String bar @@ -48,10 +48,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable public String getBar() { @@ -66,10 +66,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable public String getBaz() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/SpecialModelName.java index 8564ee04bd6..a55d676327f 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -40,10 +40,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable public Long get$SpecialPropertyName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Tag.java index 8421f94e4b8..478366c8c74 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/Tag.java @@ -44,10 +44,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -65,10 +65,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable public String getName() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index ca63e55bff6..9b773d878f9 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -60,10 +60,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -81,10 +81,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -102,10 +102,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -123,10 +123,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -152,10 +152,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderExample.java index ec74900f6a6..fe1f74d7344 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -64,10 +64,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull public String getStringItem() { @@ -85,10 +85,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull public BigDecimal getNumberItem() { @@ -106,10 +106,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull public Float getFloatItem() { @@ -127,10 +127,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull public Integer getIntegerItem() { @@ -148,10 +148,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull public Boolean getBoolItem() { @@ -177,10 +177,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull public List getArrayItem() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/User.java index 936feced2f5..96243a00daf 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/User.java @@ -68,10 +68,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable public Long getId() { @@ -89,10 +89,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable public String getUsername() { @@ -110,10 +110,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable public String getFirstName() { @@ -131,10 +131,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable public String getLastName() { @@ -152,10 +152,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable public String getEmail() { @@ -173,10 +173,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable public String getPassword() { @@ -194,10 +194,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable public String getPhone() { @@ -215,10 +215,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable public Integer getUserStatus() { diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/XmlItem.java index 9d2721a2347..d6d590a40d2 100644 --- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/model/XmlItem.java @@ -156,10 +156,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable public String getAttributeString() { @@ -177,10 +177,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getAttributeNumber() { @@ -198,10 +198,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable public Integer getAttributeInteger() { @@ -219,10 +219,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable public Boolean getAttributeBoolean() { @@ -248,10 +248,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable public List getWrappedArray() { @@ -269,10 +269,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable public String getNameString() { @@ -290,10 +290,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNameNumber() { @@ -311,10 +311,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable public Integer getNameInteger() { @@ -332,10 +332,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNameBoolean() { @@ -361,10 +361,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable public List getNameArray() { @@ -390,10 +390,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable public List getNameWrappedArray() { @@ -411,10 +411,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable public String getPrefixString() { @@ -432,10 +432,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNumber() { @@ -453,10 +453,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixInteger() { @@ -474,10 +474,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixBoolean() { @@ -503,10 +503,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable public List getPrefixArray() { @@ -532,10 +532,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixWrappedArray() { @@ -553,10 +553,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable public String getNamespaceString() { @@ -574,10 +574,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getNamespaceNumber() { @@ -595,10 +595,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable public Integer getNamespaceInteger() { @@ -616,10 +616,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable public Boolean getNamespaceBoolean() { @@ -645,10 +645,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable public List getNamespaceArray() { @@ -674,10 +674,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable public List getNamespaceWrappedArray() { @@ -695,10 +695,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable public String getPrefixNsString() { @@ -716,10 +716,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable public BigDecimal getPrefixNsNumber() { @@ -737,10 +737,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable public Integer getPrefixNsInteger() { @@ -758,10 +758,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable public Boolean getPrefixNsBoolean() { @@ -787,10 +787,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsArray() { @@ -816,10 +816,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable public List getPrefixNsWrappedArray() { diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java index 1b31237f523..f2a19d779d1 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesAnyType extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java index 715fab6e6e6..449e5872388 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesArray extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java index 927daf906c7..29334015b74 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesBoolean extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 3cef9787b6f..94c637ae6b0 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -95,10 +95,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapString * @return mapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapNumber * @return mapNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -161,10 +161,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapInteger * @return mapInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -194,10 +194,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapBoolean * @return mapBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -227,10 +227,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayInteger * @return mapArrayInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -260,10 +260,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapArrayAnytype * @return mapArrayAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_ARRAY_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapString * @return mapMapString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -326,10 +326,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapMapAnytype * @return mapMapAnytype - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_ANYTYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -351,10 +351,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -376,10 +376,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype2 * @return anytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -401,10 +401,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype3 * @return anytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ANYTYPE3) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java index 484ed041f34..704e1162e17 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesInteger extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java index e2273e44104..24e76bef37a 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java @@ -47,10 +47,10 @@ public class AdditionalPropertiesNumber extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java index c6b3d48fd99..4caced23dd8 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesObject extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java index 962b40afefe..160d0097535 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java @@ -46,10 +46,10 @@ public class AdditionalPropertiesString extends HashMap { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Animal.java index ecb642ee812..62697dfdebf 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Animal.java @@ -61,10 +61,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 9e972837b11..8feb9e01890 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 761e0f6c9d1..23629d1da5a 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java index 46a6df1e4e3..e09e6bd4797 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -63,10 +63,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java index f539e6ba794..e425a49e830 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/BigCat.java @@ -93,10 +93,10 @@ public class BigCat extends Cat { return this; } - /** + /** * Get kind * @return kind - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_KIND) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java index 3a82316cd11..c5d6b86b6c6 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Capitalization.java @@ -63,10 +63,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -88,10 +88,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,10 +113,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,10 +138,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Cat.java index 6a03004859e..3539a9ef8a5 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Cat.java @@ -57,10 +57,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Category.java index e9daed894ab..7c9d93682b1 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java index faeaf6d170f..f855164463b 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ClassModel.java @@ -43,10 +43,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Client.java index 4addbe634b1..50cca186dcc 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Client.java @@ -43,10 +43,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Dog.java index 78b64eaa57d..21bdbf6ac3a 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Dog.java @@ -54,10 +54,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java index 0d4340977e8..01f7885a0ff 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -120,10 +120,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java index 2c8546c4012..22bb97c598a 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/EnumTest.java @@ -205,10 +205,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -230,10 +230,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -255,10 +255,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -280,10 +280,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -305,10 +305,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 3c75f077d85..b3e7387cf6d 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -51,10 +51,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java index a767541b1e5..8a2d8ceea0e 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/FormatTest.java @@ -101,12 +101,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,12 +128,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -155,10 +155,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -180,12 +180,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -207,12 +207,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -234,12 +234,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -261,10 +261,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -286,10 +286,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -311,10 +311,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -336,10 +336,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -361,10 +361,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -386,10 +386,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -411,10 +411,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -436,10 +436,10 @@ public class FormatTest { return this; } - /** + /** * Get bigDecimal * @return bigDecimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BIG_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 4e3d9aa3c7e..2f46a0e85d0 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -42,8 +42,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -54,10 +54,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -68,10 +68,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java index 6a80971630f..b0bb9fcb82d 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MapTest.java @@ -100,10 +100,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,10 +166,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,10 +199,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 2cd1a36939b..b9ab922abe2 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -56,10 +56,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,10 +114,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java index 999b5e34446..2a18245f5f7 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Model200Response.java @@ -48,10 +48,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 19b3b2e5b41..1f13412355b 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -52,10 +52,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelFile.java index 065dbc19bb0..822fea6c232 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelFile.java @@ -44,10 +44,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java index 432cbfd18ee..a8fb60cdfc2 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelList.java @@ -44,10 +44,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java index 491491e4299..669b30691c7 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -44,10 +44,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Name.java index 1168630509b..3b165e7570c 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Name.java @@ -49,8 +49,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,10 +125,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java index 9b8575bb5aa..8625f00c874 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Order.java index 198c4705b48..0fc8d456873 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java index 5bbc97e9f32..4adb1bc5981 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Pet.java index ef0a788e0e0..97d3f950180 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4a407093962..fa8bdd64bc9 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java index f3c37540465..a659a8f7aa5 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Tag.java index a6b72d921a6..518116d43ce 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java index a22e61772b5..260b47da990 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderDefault.java @@ -63,10 +63,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -88,10 +88,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -113,10 +113,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -138,10 +138,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -171,10 +171,10 @@ public class TypeHolderDefault { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java index 58917832eeb..d7ee132c071 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/TypeHolderExample.java @@ -67,10 +67,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get stringItem * @return stringItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_STRING_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -92,10 +92,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get numberItem * @return numberItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -117,10 +117,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get floatItem * @return floatItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_FLOAT_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -142,10 +142,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get integerItem * @return integerItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_INTEGER_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -167,10 +167,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get boolItem * @return boolItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BOOL_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -200,10 +200,10 @@ public class TypeHolderExample { return this; } - /** + /** * Get arrayItem * @return arrayItem - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ARRAY_ITEM) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/User.java index 2c0f53742f0..2ecb4b0fbb3 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/User.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/User.java @@ -71,10 +71,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -146,10 +146,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -171,10 +171,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -196,10 +196,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -221,10 +221,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -246,10 +246,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java index 36b3618cb31..91a1c08a1da 100644 --- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java +++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/model/XmlItem.java @@ -159,10 +159,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeString * @return attributeString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -184,10 +184,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeNumber * @return attributeNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -209,10 +209,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeInteger * @return attributeInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -234,10 +234,10 @@ public class XmlItem { return this; } - /** + /** * Get attributeBoolean * @return attributeBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ATTRIBUTE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -267,10 +267,10 @@ public class XmlItem { return this; } - /** + /** * Get wrappedArray * @return wrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -292,10 +292,10 @@ public class XmlItem { return this; } - /** + /** * Get nameString * @return nameString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -317,10 +317,10 @@ public class XmlItem { return this; } - /** + /** * Get nameNumber * @return nameNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -342,10 +342,10 @@ public class XmlItem { return this; } - /** + /** * Get nameInteger * @return nameInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -367,10 +367,10 @@ public class XmlItem { return this; } - /** + /** * Get nameBoolean * @return nameBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -400,10 +400,10 @@ public class XmlItem { return this; } - /** + /** * Get nameArray * @return nameArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class XmlItem { return this; } - /** + /** * Get nameWrappedArray * @return nameWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -458,10 +458,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixString * @return prefixString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -483,10 +483,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNumber * @return prefixNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -508,10 +508,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixInteger * @return prefixInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -533,10 +533,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixBoolean * @return prefixBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -566,10 +566,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixArray * @return prefixArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -599,10 +599,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixWrappedArray * @return prefixWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -624,10 +624,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceString * @return namespaceString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -649,10 +649,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceNumber * @return namespaceNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -674,10 +674,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceInteger * @return namespaceInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -699,10 +699,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceBoolean * @return namespaceBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -732,10 +732,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceArray * @return namespaceArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -765,10 +765,10 @@ public class XmlItem { return this; } - /** + /** * Get namespaceWrappedArray * @return namespaceWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAMESPACE_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -790,10 +790,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsString * @return prefixNsString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -815,10 +815,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsNumber * @return prefixNsNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -840,10 +840,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsInteger * @return prefixNsInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -865,10 +865,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsBoolean * @return prefixNsBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -898,10 +898,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsArray * @return prefixNsArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -931,10 +931,10 @@ public class XmlItem { return this; } - /** + /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PREFIX_NS_WRAPPED_ARRAY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/api/openapi.yaml b/samples/client/petstore/java/vertx/api/openapi.yaml index 96dc260deb8..1eddf878948 100644 --- a/samples/client/petstore/java/vertx/api/openapi.yaml +++ b/samples/client/petstore/java/vertx/api/openapi.yaml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index 55ac934f528..a09d11d7474 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -57,10 +57,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java index 3a557c2aca7..52f5f3da642 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/AllOfWithSingleRef.java @@ -48,10 +48,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class AllOfWithSingleRef { return this; } - /** + /** * Get singleRefType * @return singleRefType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SINGLE_REF_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Animal.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Animal.java index 9c7596b2cfb..fb8060948c5 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Animal.java @@ -60,10 +60,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -85,10 +85,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 9e972837b11..8feb9e01890 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 761e0f6c9d1..23629d1da5a 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -55,10 +55,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayTest.java index 46a6df1e4e3..e09e6bd4797 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -63,10 +63,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -129,10 +129,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Capitalization.java index 3a82316cd11..c5d6b86b6c6 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Capitalization.java @@ -63,10 +63,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -88,10 +88,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -113,10 +113,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,10 +138,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,10 +188,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Cat.java index 797d453b545..36e096184dd 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Cat.java @@ -54,10 +54,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Category.java index e9daed894ab..7c9d93682b1 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Category.java @@ -47,10 +47,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ChildWithNullable.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ChildWithNullable.java index 07632d8f36d..54c8da1f850 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ChildWithNullable.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ChildWithNullable.java @@ -55,10 +55,10 @@ public class ChildWithNullable extends ParentWithNullable { return this; } - /** + /** * Get otherProperty * @return otherProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OTHER_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ClassModel.java index faeaf6d170f..f855164463b 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ClassModel.java @@ -43,10 +43,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Client.java index 4addbe634b1..50cca186dcc 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Client.java @@ -43,10 +43,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/DeprecatedObject.java index e4f4e82aa53..9c42cffb760 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -45,10 +45,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Dog.java index 78b64eaa57d..21bdbf6ac3a 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Dog.java @@ -54,10 +54,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumArrays.java index 0d4340977e8..01f7885a0ff 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -120,10 +120,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumTest.java index 0e4e6a0540a..1c109d2dd9d 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/EnumTest.java @@ -224,10 +224,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -249,10 +249,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -274,10 +274,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -299,10 +299,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -324,10 +324,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -357,10 +357,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -382,10 +382,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -407,10 +407,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java index db226a749a1..107e913f66d 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FakeBigDecimalMap200Response.java @@ -51,10 +51,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someId * @return someId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class FakeBigDecimalMap200Response { return this; } - /** + /** * Get someMap * @return someMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 3c75f077d85..b3e7387cf6d 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -51,10 +51,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -84,10 +84,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Foo.java index 19172be87d0..15d16a3010e 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Foo.java @@ -43,10 +43,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 24fe1cafa47..a36cf742654 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -45,10 +45,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FormatTest.java index 5b2af186b4c..ed98b8d8e53 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FormatTest.java @@ -109,12 +109,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -136,12 +136,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -163,10 +163,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -188,12 +188,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -215,12 +215,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -242,12 +242,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -269,10 +269,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -294,10 +294,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -319,10 +319,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -344,10 +344,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -369,10 +369,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -394,10 +394,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -419,10 +419,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -444,10 +444,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -469,10 +469,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -494,10 +494,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index 4e3d9aa3c7e..2f46a0e85d0 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -42,8 +42,8 @@ public class HasOnlyReadOnly { public HasOnlyReadOnly() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public HasOnlyReadOnly( @JsonProperty(JSON_PROPERTY_BAR) String bar, @@ -54,10 +54,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -68,10 +68,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HealthCheckResult.java index d556badbc86..e7e4e4ca5c6 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -47,10 +47,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MapTest.java index 6a80971630f..b0bb9fcb82d 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MapTest.java @@ -100,10 +100,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -166,10 +166,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -199,10 +199,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 2cd1a36939b..b9ab922abe2 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -56,10 +56,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -81,10 +81,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -114,10 +114,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Model200Response.java index 999b5e34446..2a18245f5f7 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Model200Response.java @@ -48,10 +48,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -73,10 +73,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 19b3b2e5b41..1f13412355b 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -52,10 +52,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelFile.java index 065dbc19bb0..822fea6c232 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelFile.java @@ -44,10 +44,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelList.java index 432cbfd18ee..a8fb60cdfc2 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelList.java @@ -44,10 +44,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelReturn.java index 491491e4299..669b30691c7 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -44,10 +44,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Name.java index 1168630509b..3b165e7570c 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Name.java @@ -49,8 +49,8 @@ public class Name { public Name() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public Name( @JsonProperty(JSON_PROPERTY_SNAKE_CASE) Integer snakeCase, @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -86,10 +86,10 @@ public class Name { this.name = name; } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -106,10 +106,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -125,10 +125,10 @@ public class Name { this.property = property; } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NullableClass.java index 354ea5db510..3dedffa2041 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NullableClass.java @@ -100,10 +100,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -133,10 +133,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -166,10 +166,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -199,10 +199,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -232,10 +232,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -265,10 +265,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -310,10 +310,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -355,10 +355,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -396,10 +396,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -478,10 +478,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -519,10 +519,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NumberOnly.java index 9b8575bb5aa..8625f00c874 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 8259facc6e1..d2ec47f7f4a 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,11 +85,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -112,11 +112,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -147,11 +147,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Order.java index 198c4705b48..0fc8d456873 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterComposite.java index 5bbc97e9f32..4adb1bc5981 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index d94b304fbc8..ea419cb7df3 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 427b0421acd..642875630cf 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Pet.java index ef0a788e0e0..97d3f950180 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4a407093962..fa8bdd64bc9 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/SpecialModelName.java index ddf6739e77e..7d8ea856dd3 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Tag.java index a6b72d921a6..518116d43ce 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index dd167049f5b..6b7f560ebb2 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -47,10 +47,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -133,10 +133,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -166,10 +166,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -199,10 +199,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -232,10 +232,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -265,10 +265,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -310,10 +310,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -355,10 +355,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -396,10 +396,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -478,10 +478,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @jakarta.annotation.Nullable @JsonIgnore @@ -519,10 +519,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/NumberOnly.java index 8873121fd79..b9d9fcb03f9 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 63c3ab74e08..18848db9e42 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,11 +85,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -112,11 +112,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -147,11 +147,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Order.java index ab12669f2bc..36d5522f86e 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterComposite.java index 98a1b40bcce..92bfe10f0a2 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index e312dc41115..97ae0110679 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java index ed98b677eb3..bec93c7259f 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @jakarta.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Pet.java index 121269c6508..41cffd9b660 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @jakarta.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4ff7f3db644..7c0f9540097 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/SpecialModelName.java index d4dbf6dc2e2..dcbfb88f8a2 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Tag.java index 2c2851098a9..82c4b33b753 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @jakarta.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index b729913783c..ac7b656caef 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -47,10 +47,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -135,10 +135,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -169,10 +169,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -203,10 +203,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -237,10 +237,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -271,10 +271,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -317,10 +317,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -363,10 +363,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -405,10 +405,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @@ -443,10 +443,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -489,10 +489,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore @@ -531,10 +531,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java index 48221529986..fcb21e3f236 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -45,10 +45,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_JUST_NUMBER) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 9fc29338b5f..c477751afe9 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -61,10 +61,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_UUID) @@ -87,11 +87,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @@ -115,11 +115,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @@ -151,11 +151,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Order.java index a95c7979764..95d9c620322 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Order.java @@ -102,10 +102,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -154,10 +154,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -180,10 +180,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -206,10 +206,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -232,10 +232,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java index 4d2232f4b9b..3641bf62e8d 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -53,10 +53,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_NUMBER) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_STRING) @@ -105,10 +105,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index 474c46f62cb..017a99220cf 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -45,10 +45,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_VALUE) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 331ecad27bd..df20cb05b01 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -97,10 +97,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -123,10 +123,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonIgnore diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java index 03e9a03973e..53af9145552 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -135,10 +135,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @Schema(example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -195,10 +195,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -230,10 +230,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -256,10 +256,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "pet status in the store") @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index aedf2b41f84..d1f24bf0f1f 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -42,8 +42,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -52,10 +52,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAR) @@ -73,10 +73,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_BAZ) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java index f4f433957ef..70ee015d4b7 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -45,10 +45,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java index 6e72f67b653..b7a0ab82c5e 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/Tag.java @@ -48,10 +48,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index 751f79f3ea7..29bcc5eeeb7 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -48,10 +48,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -133,10 +133,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -166,10 +166,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -199,10 +199,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -232,10 +232,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -265,10 +265,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -310,10 +310,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -355,10 +355,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -396,10 +396,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -433,10 +433,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -478,10 +478,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -519,10 +519,10 @@ public class NullableClass extends HashMap { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/NumberOnly.java index 9b8575bb5aa..8625f00c874 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -44,10 +44,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 99fbb8a48c0..7a950fdc2eb 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -60,10 +60,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,11 +85,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -112,11 +112,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -147,11 +147,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Order.java index 198c4705b48..0fc8d456873 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Order.java @@ -101,10 +101,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -126,10 +126,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -151,10 +151,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -176,10 +176,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -226,10 +226,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterComposite.java index 5bbc97e9f32..4adb1bc5981 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -52,10 +52,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -77,10 +77,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -102,10 +102,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java index d94b304fbc8..ea419cb7df3 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/OuterObjectWithEnumProperty.java @@ -44,10 +44,10 @@ public class OuterObjectWithEnumProperty { return this; } - /** + /** * Get value * @return value - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_VALUE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 427b0421acd..642875630cf 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -96,10 +96,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -121,10 +121,10 @@ public class ParentWithNullable { return this; } - /** + /** * Get nullableProperty * @return nullableProperty - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Pet.java index f980aacf589..2650f35015d 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Pet.java @@ -108,10 +108,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -133,10 +133,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -158,10 +158,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -191,10 +191,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -225,10 +225,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -250,10 +250,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index 4a407093962..fa8bdd64bc9 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -41,8 +41,8 @@ public class ReadOnlyFirst { public ReadOnlyFirst() { } /** - * Constructor with only readonly parameters - */ + * Constructor with only readonly parameters + */ @JsonCreator public ReadOnlyFirst( @JsonProperty(JSON_PROPERTY_BAR) String bar @@ -51,10 +51,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -71,10 +71,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/SpecialModelName.java index ddf6739e77e..7d8ea856dd3 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -44,10 +44,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Tag.java index a6b72d921a6..518116d43ce 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/Tag.java @@ -47,10 +47,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index dd167049f5b..6b7f560ebb2 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -47,10 +47,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest extends HashMap photoUrls) { this.photoUrls = photoUrls; @@ -202,7 +202,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -222,7 +222,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @Schema(name = "status", description = "pet status in the store", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") diff --git a/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/spring-cloud-deprecated/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Category.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Category.java index c15327f3b22..e69dcad7a2a 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Category.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Category.java @@ -35,7 +35,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/ModelApiResponse.java index 4cbbaf729fd..beb8c406e91 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -39,7 +39,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -59,7 +59,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -79,7 +79,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Order.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Order.java index bc7c066e59e..59dbbb89f24 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Order.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Order.java @@ -84,7 +84,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -104,7 +104,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -124,7 +124,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -144,7 +144,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -164,7 +164,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -184,7 +184,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Pet.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Pet.java index 1902a984b40..bfd489d624c 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Pet.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Pet.java @@ -101,7 +101,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -121,7 +121,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -141,7 +141,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -169,7 +169,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -197,7 +197,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -218,7 +218,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -229,7 +229,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Tag.java index 5887c9efe1e..5452ab7e1af 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/Tag.java @@ -35,7 +35,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/User.java index 881ccb2a1e1..1d7b1188625 100644 --- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/model/User.java @@ -47,7 +47,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -67,7 +67,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -87,7 +87,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -107,7 +107,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -127,7 +127,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -147,7 +147,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -167,7 +167,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -187,7 +187,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Category.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Category.java index fa4e1fe94d4..7ce269abfd3 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Category.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Category.java @@ -35,7 +35,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Category { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/ModelApiResponse.java index 4cbbaf729fd..beb8c406e91 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -39,7 +39,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -59,7 +59,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -79,7 +79,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Order.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Order.java index bc7c066e59e..59dbbb89f24 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Order.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Order.java @@ -84,7 +84,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -104,7 +104,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -124,7 +124,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -144,7 +144,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -164,7 +164,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -184,7 +184,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Pet.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Pet.java index a494a12b31a..ac7f5ecbe69 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Pet.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -216,7 +216,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Tag.java index 5887c9efe1e..5452ab7e1af 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/Tag.java @@ -35,7 +35,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/User.java index 881ccb2a1e1..1d7b1188625 100644 --- a/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/spring-cloud-tags/src/main/java/org/openapitools/model/User.java @@ -47,7 +47,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -67,7 +67,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -87,7 +87,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -107,7 +107,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -127,7 +127,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -147,7 +147,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -167,7 +167,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -187,7 +187,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java index c15327f3b22..e69dcad7a2a 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java @@ -35,7 +35,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java index 4cbbaf729fd..beb8c406e91 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -39,7 +39,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -59,7 +59,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -79,7 +79,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java index bc7c066e59e..59dbbb89f24 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java @@ -84,7 +84,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -104,7 +104,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -124,7 +124,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -144,7 +144,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -164,7 +164,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -184,7 +184,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java index 1902a984b40..bfd489d624c 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java @@ -101,7 +101,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -121,7 +121,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -141,7 +141,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -169,7 +169,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -197,7 +197,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -218,7 +218,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -229,7 +229,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java index 5887c9efe1e..5452ab7e1af 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java @@ -35,7 +35,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java index 881ccb2a1e1..1d7b1188625 100644 --- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java @@ -47,7 +47,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -67,7 +67,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -87,7 +87,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -107,7 +107,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -127,7 +127,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -147,7 +147,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -167,7 +167,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -187,7 +187,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index f6e91abd0e9..73c2a380397 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -33,7 +33,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index e5edfa4e4bf..e6a0a29d89d 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -34,7 +34,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 6722cc8d7c0..2efe8a9bd22 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -33,7 +33,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 9c9951ba0ee..25206b0d5f8 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -72,7 +72,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @JsonProperty("map_string") public Map getMapString() { @@ -99,7 +99,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @JsonProperty("map_number") public Map getMapNumber() { @@ -126,7 +126,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @JsonProperty("map_integer") public Map getMapInteger() { @@ -153,7 +153,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @JsonProperty("map_boolean") public Map getMapBoolean() { @@ -180,7 +180,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @JsonProperty("map_array_integer") public Map> getMapArrayInteger() { @@ -207,7 +207,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @JsonProperty("map_array_anytype") public Map> getMapArrayAnytype() { @@ -234,7 +234,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @JsonProperty("map_map_string") public Map> getMapMapString() { @@ -261,7 +261,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @JsonProperty("map_map_anytype") public Map> getMapMapAnytype() { @@ -280,7 +280,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @JsonProperty("anytype_1") public Object getAnytype1() { @@ -299,7 +299,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @JsonProperty("anytype_2") public JsonNullable getAnytype2() { @@ -318,7 +318,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @JsonProperty("anytype_3") public Object getAnytype3() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 0fbd5a6ea78..ba655644232 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -33,7 +33,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index c5fda2ad441..d161142745d 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -34,7 +34,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 16c17ea274a..2622a649f17 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -34,7 +34,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 2ffdc585875..349f6e72c4b 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -33,7 +33,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Animal.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Animal.java index a66168d94e1..ccb5187764b 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Animal.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Animal.java @@ -56,7 +56,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @JsonProperty("className") public String getClassName() { @@ -75,7 +75,7 @@ public class Animal { /** * Get color * @return color - */ + */ @JsonProperty("color") public String getColor() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index be778c875a3..9c284fea7f5 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -42,7 +42,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @JsonProperty("ArrayArrayNumber") public List> getArrayArrayNumber() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 18898266b2b..5bb985f2357 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -42,7 +42,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @JsonProperty("ArrayNumber") public List getArrayNumber() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayTest.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayTest.java index 2e49a4df396..729a8bd33a5 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ArrayTest.java @@ -48,7 +48,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @JsonProperty("array_of_string") public List getArrayOfString() { @@ -75,7 +75,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @JsonProperty("array_array_of_integer") public List> getArrayArrayOfInteger() { @@ -102,7 +102,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @JsonProperty("array_array_of_model") public List> getArrayArrayOfModel() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/BigCat.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/BigCat.java index d4898994d73..9d1997acc91 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/BigCat.java @@ -85,7 +85,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @JsonProperty("kind") public KindEnum getKind() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Capitalization.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Capitalization.java index d7293333399..69017736aef 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Capitalization.java @@ -39,7 +39,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @JsonProperty("smallCamel") public String getSmallCamel() { @@ -58,7 +58,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @JsonProperty("CapitalCamel") public String getCapitalCamel() { @@ -77,7 +77,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @JsonProperty("small_Snake") public String getSmallSnake() { @@ -96,7 +96,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @JsonProperty("Capital_Snake") public String getCapitalSnake() { @@ -115,7 +115,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @JsonProperty("SCA_ETH_Flow_Points") public String getScAETHFlowPoints() { @@ -134,7 +134,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @JsonProperty("ATT_NAME") public String getATTNAME() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Cat.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Cat.java index 721bb0d249e..b92170331cc 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Cat.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Cat.java @@ -53,7 +53,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @JsonProperty("declawed") public Boolean getDeclawed() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Category.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Category.java index eb83541e4c4..bcc577a2e89 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Category.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Category.java @@ -42,7 +42,7 @@ public class Category { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -61,7 +61,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java index 55900a6d431..62da77b13db 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -37,7 +37,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @JsonProperty("otherProperty") public String getOtherProperty() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ClassModel.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ClassModel.java index 452f6393ded..1bc2cc56b6f 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ClassModel.java @@ -29,7 +29,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @JsonProperty("_class") public String getPropertyClass() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Client.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Client.java index 487a5a8ad13..1ea5d2ff0a0 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Client.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Client.java @@ -29,7 +29,7 @@ public class Client { /** * Get client * @return client - */ + */ @JsonProperty("client") public String getClient() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java index 1a2f85d0c19..4311a410fd7 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -64,7 +64,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @JsonProperty("nullable_array") public JsonNullable> getNullableArray() { @@ -91,7 +91,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @JsonProperty("nullable_required_array") public JsonNullable> getNullableRequiredArray() { @@ -118,7 +118,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @JsonProperty("required_array") public List getRequiredArray() { @@ -145,7 +145,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @JsonProperty("nullable_array_with_default") public JsonNullable> getNullableArrayWithDefault() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Dog.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Dog.java index 8d248fcea07..c5418daf89a 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Dog.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Dog.java @@ -45,7 +45,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @JsonProperty("breed") public String getBreed() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumArrays.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumArrays.java index 86ffe6a757e..0f27caa4701 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumArrays.java @@ -106,7 +106,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @JsonProperty("just_symbol") public JustSymbolEnum getJustSymbol() { @@ -133,7 +133,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @JsonProperty("array_enum") public List getArrayEnum() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumTest.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumTest.java index c95e4bd3f51..10a65d2c14c 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/EnumTest.java @@ -196,7 +196,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @JsonProperty("enum_string") public EnumStringEnum getEnumString() { @@ -215,7 +215,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @JsonProperty("enum_string_required") public EnumStringRequiredEnum getEnumStringRequired() { @@ -234,7 +234,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @JsonProperty("enum_integer") public EnumIntegerEnum getEnumInteger() { @@ -253,7 +253,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @JsonProperty("enum_number") public EnumNumberEnum getEnumNumber() { @@ -272,7 +272,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @JsonProperty("outerEnum") public OuterEnum getOuterEnum() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/File.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/File.java index 4e3a977b0b2..cdd8e28506b 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/File.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/File.java @@ -29,7 +29,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @JsonProperty("sourceURI") public String getSourceURI() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java index ae973abc934..026dfc0f79f 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -36,7 +36,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @JsonProperty("file") public File getFile() { @@ -63,7 +63,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @JsonProperty("files") public List getFiles() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FormatTest.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FormatTest.java index d8df57c4265..e035411ba63 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/FormatTest.java @@ -81,7 +81,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @JsonProperty("integer") public Integer getInteger() { @@ -102,7 +102,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @JsonProperty("int32") public Integer getInt32() { @@ -121,7 +121,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @JsonProperty("int64") public Long getInt64() { @@ -142,7 +142,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @JsonProperty("number") public BigDecimal getNumber() { @@ -163,7 +163,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @JsonProperty("float") public Float getFloat() { @@ -184,7 +184,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @JsonProperty("double") public Double getDouble() { @@ -203,7 +203,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @JsonProperty("string") public String getString() { @@ -222,7 +222,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @JsonProperty("byte") public byte[] getByte() { @@ -241,7 +241,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @JsonProperty("binary") public org.springframework.core.io.Resource getBinary() { @@ -260,7 +260,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @JsonProperty("date") public LocalDate getDate() { @@ -279,7 +279,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @JsonProperty("dateTime") public OffsetDateTime getDateTime() { @@ -298,7 +298,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @JsonProperty("uuid") public UUID getUuid() { @@ -317,7 +317,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @JsonProperty("password") public String getPassword() { @@ -336,7 +336,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @JsonProperty("BigDecimal") public BigDecimal getBigDecimal() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index bca3e95e371..2d18716ed3a 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -33,7 +33,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @JsonProperty("bar") public String getBar() { @@ -52,7 +52,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @JsonProperty("foo") public String getFoo() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MapTest.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MapTest.java index 7783a6a3310..4bfa43febca 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MapTest.java @@ -85,7 +85,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @JsonProperty("map_map_of_string") public Map> getMapMapOfString() { @@ -112,7 +112,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @JsonProperty("map_of_enum_string") public Map getMapOfEnumString() { @@ -139,7 +139,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @JsonProperty("direct_map") public Map getDirectMap() { @@ -166,7 +166,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @JsonProperty("indirect_map") public Map getIndirectMap() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index ebb74beaf97..460ff96edb2 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -41,7 +41,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @JsonProperty("uuid") public UUID getUuid() { @@ -60,7 +60,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @JsonProperty("dateTime") public OffsetDateTime getDateTime() { @@ -87,7 +87,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @JsonProperty("map") public Map getMap() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Model200Response.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Model200Response.java index 8936cde4034..22ba66e6a0c 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Model200Response.java @@ -33,7 +33,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @JsonProperty("name") public Integer getName() { @@ -52,7 +52,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @JsonProperty("class") public String getPropertyClass() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java index 2ea004e5e7d..1c7ff4a4b71 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -35,7 +35,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @JsonProperty("code") public Integer getCode() { @@ -54,7 +54,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @JsonProperty("type") public String getType() { @@ -73,7 +73,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @JsonProperty("message") public String getMessage() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelList.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelList.java index 47b80e398ab..39d3f07d441 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelList.java @@ -31,7 +31,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @JsonProperty("123-list") public String get123list() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelReturn.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelReturn.java index 2895491ce69..d96821bdf41 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ModelReturn.java @@ -31,7 +31,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @JsonProperty("return") public Integer getReturn() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Name.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Name.java index 75e36971e7d..0b84aa86211 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Name.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Name.java @@ -46,7 +46,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public Integer getName() { @@ -65,7 +65,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @JsonProperty("snake_case") public Integer getSnakeCase() { @@ -84,7 +84,7 @@ public class Name { /** * Get property * @return property - */ + */ @JsonProperty("property") public String getProperty() { @@ -103,7 +103,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @JsonProperty("123Number") public Integer get123number() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java index 5c6b5ca3672..a2e12398f5e 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -43,7 +43,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @JsonProperty("languageValues") public JsonNullable> getLanguageValues() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NumberOnly.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NumberOnly.java index e224a2e27e8..27ae77e5b1b 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/NumberOnly.java @@ -30,7 +30,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @JsonProperty("JustNumber") public BigDecimal getJustNumber() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Order.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Order.java index e9cca08860f..9b4f4ee79a6 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Order.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Order.java @@ -80,7 +80,7 @@ public class Order { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -99,7 +99,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @JsonProperty("petId") public Long getPetId() { @@ -118,7 +118,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @JsonProperty("quantity") public Integer getQuantity() { @@ -137,7 +137,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @JsonProperty("shipDate") public OffsetDateTime getShipDate() { @@ -156,7 +156,7 @@ public class Order { /** * Order Status * @return status - */ + */ @JsonProperty("status") public StatusEnum getStatus() { @@ -175,7 +175,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @JsonProperty("complete") public Boolean getComplete() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/OuterComposite.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/OuterComposite.java index d48534f9c88..9d9d362bc15 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/OuterComposite.java @@ -34,7 +34,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @JsonProperty("my_number") public BigDecimal getMyNumber() { @@ -53,7 +53,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @JsonProperty("my_string") public String getMyString() { @@ -72,7 +72,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @JsonProperty("my_boolean") public Boolean getMyBoolean() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java index 7feaa4029fd..28c56627b9d 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -80,7 +80,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @JsonProperty("type") public TypeEnum getType() { @@ -99,7 +99,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @JsonProperty("nullableProperty") public JsonNullable getNullableProperty() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Pet.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Pet.java index a785c5fd73e..3b95f3d72e4 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Pet.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @JsonProperty("category") public Category getCategory() { @@ -138,7 +138,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { @@ -165,7 +165,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @JsonProperty("photoUrls") public Set getPhotoUrls() { @@ -193,7 +193,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @JsonProperty("tags") public List getTags() { @@ -213,7 +213,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @JsonProperty("status") @Deprecated @@ -223,7 +223,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 8c6bb2493ae..9ef1172376b 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -31,7 +31,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @JsonProperty("bar") public String getBar() { @@ -50,7 +50,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @JsonProperty("baz") public String getBaz() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 59d74392707..0aa9f97f5eb 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -35,7 +35,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @JsonProperty("normalPropertyName") public String getNormalPropertyName() { @@ -54,7 +54,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") public String getUPPERCASEPROPERTYSNAKE() { @@ -73,7 +73,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @JsonProperty("lower-case-property-dashes") public String getLowerCasePropertyDashes() { @@ -92,7 +92,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @JsonProperty("property name with spaces") public String getPropertyNameWithSpaces() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/SpecialModelName.java index 1ceef11c1df..f24f54d2ebb 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/SpecialModelName.java @@ -31,7 +31,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @JsonProperty("$special[property.name]") public Long get$SpecialPropertyName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Tag.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Tag.java index 8320afa22ca..70fc46f8c2e 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Tag.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/Tag.java @@ -31,7 +31,7 @@ public class Tag { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -50,7 +50,7 @@ public class Tag { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java index 5d0bf8b2a5c..4a71e099215 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -57,7 +57,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @JsonProperty("string_item") public String getStringItem() { @@ -76,7 +76,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @JsonProperty("number_item") public BigDecimal getNumberItem() { @@ -95,7 +95,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @JsonProperty("integer_item") public Integer getIntegerItem() { @@ -114,7 +114,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @JsonProperty("bool_item") public Boolean getBoolItem() { @@ -141,7 +141,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @JsonProperty("array_item") public List getArrayItem() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java index be653ef4558..c7c0db41ee4 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -60,7 +60,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @JsonProperty("string_item") public String getStringItem() { @@ -79,7 +79,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @JsonProperty("number_item") public BigDecimal getNumberItem() { @@ -98,7 +98,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @JsonProperty("float_item") public Float getFloatItem() { @@ -117,7 +117,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @JsonProperty("integer_item") public Integer getIntegerItem() { @@ -136,7 +136,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @JsonProperty("bool_item") public Boolean getBoolItem() { @@ -163,7 +163,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @JsonProperty("array_item") public List getArrayItem() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/User.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/User.java index 6c58a0abdac..15b12dd1593 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/User.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/User.java @@ -43,7 +43,7 @@ public class User { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -62,7 +62,7 @@ public class User { /** * Get username * @return username - */ + */ @JsonProperty("username") public String getUsername() { @@ -81,7 +81,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @JsonProperty("firstName") public String getFirstName() { @@ -100,7 +100,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @JsonProperty("lastName") public String getLastName() { @@ -119,7 +119,7 @@ public class User { /** * Get email * @return email - */ + */ @JsonProperty("email") public String getEmail() { @@ -138,7 +138,7 @@ public class User { /** * Get password * @return password - */ + */ @JsonProperty("password") public String getPassword() { @@ -157,7 +157,7 @@ public class User { /** * Get phone * @return phone - */ + */ @JsonProperty("phone") public String getPhone() { @@ -176,7 +176,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @JsonProperty("userStatus") public Integer getUserStatus() { diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/XmlItem.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/XmlItem.java index c459a044c4d..b004f00712c 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/XmlItem.java @@ -98,7 +98,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @JsonProperty("attribute_string") public String getAttributeString() { @@ -117,7 +117,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @JsonProperty("attribute_number") public BigDecimal getAttributeNumber() { @@ -136,7 +136,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @JsonProperty("attribute_integer") public Integer getAttributeInteger() { @@ -155,7 +155,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @JsonProperty("attribute_boolean") public Boolean getAttributeBoolean() { @@ -182,7 +182,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @JsonProperty("wrapped_array") public List getWrappedArray() { @@ -201,7 +201,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @JsonProperty("name_string") public String getNameString() { @@ -220,7 +220,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @JsonProperty("name_number") public BigDecimal getNameNumber() { @@ -239,7 +239,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @JsonProperty("name_integer") public Integer getNameInteger() { @@ -258,7 +258,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @JsonProperty("name_boolean") public Boolean getNameBoolean() { @@ -285,7 +285,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @JsonProperty("name_array") public List getNameArray() { @@ -312,7 +312,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @JsonProperty("name_wrapped_array") public List getNameWrappedArray() { @@ -331,7 +331,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @JsonProperty("prefix_string") public String getPrefixString() { @@ -350,7 +350,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @JsonProperty("prefix_number") public BigDecimal getPrefixNumber() { @@ -369,7 +369,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @JsonProperty("prefix_integer") public Integer getPrefixInteger() { @@ -388,7 +388,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @JsonProperty("prefix_boolean") public Boolean getPrefixBoolean() { @@ -415,7 +415,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @JsonProperty("prefix_array") public List getPrefixArray() { @@ -442,7 +442,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @JsonProperty("prefix_wrapped_array") public List getPrefixWrappedArray() { @@ -461,7 +461,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @JsonProperty("namespace_string") public String getNamespaceString() { @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @JsonProperty("namespace_number") public BigDecimal getNamespaceNumber() { @@ -499,7 +499,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @JsonProperty("namespace_integer") public Integer getNamespaceInteger() { @@ -518,7 +518,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @JsonProperty("namespace_boolean") public Boolean getNamespaceBoolean() { @@ -545,7 +545,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @JsonProperty("namespace_array") public List getNamespaceArray() { @@ -572,7 +572,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @JsonProperty("namespace_wrapped_array") public List getNamespaceWrappedArray() { @@ -591,7 +591,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @JsonProperty("prefix_ns_string") public String getPrefixNsString() { @@ -610,7 +610,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @JsonProperty("prefix_ns_number") public BigDecimal getPrefixNsNumber() { @@ -629,7 +629,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @JsonProperty("prefix_ns_integer") public Integer getPrefixNsInteger() { @@ -648,7 +648,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @JsonProperty("prefix_ns_boolean") public Boolean getPrefixNsBoolean() { @@ -675,7 +675,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @JsonProperty("prefix_ns_array") public List getPrefixNsArray() { @@ -702,7 +702,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @JsonProperty("prefix_ns_wrapped_array") public List getPrefixNsWrappedArray() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java index 58fdfd2a0e8..cf82f34d211 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyTypeDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java index 4033d9df200..6b12c9eabc3 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArrayDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java index efe2023b8e8..0696a817ae1 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBooleanDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java index 148e4f3c0a3..63fa26b0234 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapString * @return mapString - */ + */ @JsonProperty("map_string") public Map getMapString() { @@ -101,7 +101,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapNumber * @return mapNumber - */ + */ @JsonProperty("map_number") public Map getMapNumber() { @@ -128,7 +128,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapInteger * @return mapInteger - */ + */ @JsonProperty("map_integer") public Map getMapInteger() { @@ -155,7 +155,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapBoolean * @return mapBoolean - */ + */ @JsonProperty("map_boolean") public Map getMapBoolean() { @@ -182,7 +182,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @JsonProperty("map_array_integer") public Map> getMapArrayInteger() { @@ -209,7 +209,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @JsonProperty("map_array_anytype") public Map> getMapArrayAnytype() { @@ -236,7 +236,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapMapString * @return mapMapString - */ + */ @JsonProperty("map_map_string") public Map> getMapMapString() { @@ -263,7 +263,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @JsonProperty("map_map_anytype") public Map> getMapMapAnytype() { @@ -282,7 +282,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype1 * @return anytype1 - */ + */ @JsonProperty("anytype_1") public Object getAnytype1() { @@ -301,7 +301,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype2 * @return anytype2 - */ + */ @JsonProperty("anytype_2") public JsonNullable getAnytype2() { @@ -320,7 +320,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype3 * @return anytype3 - */ + */ @JsonProperty("anytype_3") public Object getAnytype3() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java index 8142aa5a91e..419df3b4cd5 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesIntegerDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java index 625b281fafe..0b370385e99 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumberDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java index 22eae615ed9..c4186077cb7 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObjectDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java index 8b3cfd2995f..e58218446c8 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesStringDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AnimalDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AnimalDto.java index e1d2763ef86..a644fc36b71 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AnimalDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/AnimalDto.java @@ -50,7 +50,7 @@ public class AnimalDto { /** * Get className * @return className - */ + */ @NotNull @JsonProperty("className") public String getClassName() { @@ -69,7 +69,7 @@ public class AnimalDto { /** * Get color * @return color - */ + */ @JsonProperty("color") public String getColor() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ApiResponseDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ApiResponseDto.java index ba0b2892181..9f98d22aec5 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ApiResponseDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ApiResponseDto.java @@ -35,7 +35,7 @@ public class ApiResponseDto { /** * Get code * @return code - */ + */ @JsonProperty("code") public Integer getCode() { @@ -54,7 +54,7 @@ public class ApiResponseDto { /** * Get type * @return type - */ + */ @JsonProperty("type") public String getType() { @@ -73,7 +73,7 @@ public class ApiResponseDto { /** * Get message * @return message - */ + */ @JsonProperty("message") public String getMessage() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java index c92a1d03d32..cfe1625fe95 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyDto { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @JsonProperty("ArrayArrayNumber") public List> getArrayArrayNumber() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java index ab5fbbacf75..9f6a8bfb6e4 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnlyDto { /** * Get arrayNumber * @return arrayNumber - */ + */ @JsonProperty("ArrayNumber") public List getArrayNumber() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayTestDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayTestDto.java index 6020ac35b1f..93a9c5aadef 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayTestDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ArrayTestDto.java @@ -50,7 +50,7 @@ public class ArrayTestDto { /** * Get arrayOfString * @return arrayOfString - */ + */ @JsonProperty("array_of_string") public List getArrayOfString() { @@ -77,7 +77,7 @@ public class ArrayTestDto { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @JsonProperty("array_array_of_integer") public List> getArrayArrayOfInteger() { @@ -104,7 +104,7 @@ public class ArrayTestDto { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @JsonProperty("array_array_of_model") public List> getArrayArrayOfModel() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/BigCatDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/BigCatDto.java index 8257c685013..45f9933a58d 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/BigCatDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/BigCatDto.java @@ -80,7 +80,7 @@ public class BigCatDto extends CatDto { /** * Get kind * @return kind - */ + */ @JsonProperty("kind") public KindEnum getKind() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CapitalizationDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CapitalizationDto.java index b811a5435b6..8d74f6bb369 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CapitalizationDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CapitalizationDto.java @@ -41,7 +41,7 @@ public class CapitalizationDto { /** * Get smallCamel * @return smallCamel - */ + */ @JsonProperty("smallCamel") public String getSmallCamel() { @@ -60,7 +60,7 @@ public class CapitalizationDto { /** * Get capitalCamel * @return capitalCamel - */ + */ @JsonProperty("CapitalCamel") public String getCapitalCamel() { @@ -79,7 +79,7 @@ public class CapitalizationDto { /** * Get smallSnake * @return smallSnake - */ + */ @JsonProperty("small_Snake") public String getSmallSnake() { @@ -98,7 +98,7 @@ public class CapitalizationDto { /** * Get capitalSnake * @return capitalSnake - */ + */ @JsonProperty("Capital_Snake") public String getCapitalSnake() { @@ -117,7 +117,7 @@ public class CapitalizationDto { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @JsonProperty("SCA_ETH_Flow_Points") public String getScAETHFlowPoints() { @@ -136,7 +136,7 @@ public class CapitalizationDto { /** * Name of the pet * @return ATT_NAME - */ + */ @JsonProperty("ATT_NAME") public String getATTNAME() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CatDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CatDto.java index 70489d21234..4dd1cbf5e16 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CatDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CatDto.java @@ -47,7 +47,7 @@ public class CatDto extends AnimalDto { /** * Get declawed * @return declawed - */ + */ @JsonProperty("declawed") public Boolean getDeclawed() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CategoryDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CategoryDto.java index bb58b2f84c9..f4ad7ff8f69 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CategoryDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/CategoryDto.java @@ -37,7 +37,7 @@ public class CategoryDto { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -56,7 +56,7 @@ public class CategoryDto { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ChildWithNullableDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ChildWithNullableDto.java index df4d1f0fd22..db3ccc04e50 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ChildWithNullableDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ChildWithNullableDto.java @@ -39,7 +39,7 @@ public class ChildWithNullableDto extends ParentWithNullableDto { /** * Get otherProperty * @return otherProperty - */ + */ @JsonProperty("otherProperty") public String getOtherProperty() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClassModelDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClassModelDto.java index 47bcb6861a7..1aebac2f69c 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClassModelDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClassModelDto.java @@ -31,7 +31,7 @@ public class ClassModelDto { /** * Get propertyClass * @return propertyClass - */ + */ @JsonProperty("_class") public String getPropertyClass() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClientDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClientDto.java index 33c4597403e..edb95749cbd 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClientDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ClientDto.java @@ -31,7 +31,7 @@ public class ClientDto { /** * Get client * @return client - */ + */ @JsonProperty("client") public String getClient() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java index 073823f3ed3..5f892c0cdc1 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java @@ -58,7 +58,7 @@ public class ContainerDefaultValueDto { /** * Get nullableArray * @return nullableArray - */ + */ @JsonProperty("nullable_array") public JsonNullable> getNullableArray() { @@ -85,7 +85,7 @@ public class ContainerDefaultValueDto { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @JsonProperty("nullable_required_array") public JsonNullable> getNullableRequiredArray() { @@ -112,7 +112,7 @@ public class ContainerDefaultValueDto { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @JsonProperty("required_array") public List getRequiredArray() { @@ -139,7 +139,7 @@ public class ContainerDefaultValueDto { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @JsonProperty("nullable_array_with_default") public JsonNullable> getNullableArrayWithDefault() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/DogDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/DogDto.java index e9213ee1263..d72cd8031bf 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/DogDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/DogDto.java @@ -40,7 +40,7 @@ public class DogDto extends AnimalDto { /** * Get breed * @return breed - */ + */ @JsonProperty("breed") public String getBreed() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumArraysDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumArraysDto.java index a25560ca274..c3fb96ea6a5 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumArraysDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumArraysDto.java @@ -108,7 +108,7 @@ public class EnumArraysDto { /** * Get justSymbol * @return justSymbol - */ + */ @JsonProperty("just_symbol") public JustSymbolEnum getJustSymbol() { @@ -135,7 +135,7 @@ public class EnumArraysDto { /** * Get arrayEnum * @return arrayEnum - */ + */ @JsonProperty("array_enum") public List getArrayEnum() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumTestDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumTestDto.java index 7b6eda3c2c8..c04a58dd0aa 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumTestDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/EnumTestDto.java @@ -189,7 +189,7 @@ public class EnumTestDto { /** * Get enumString * @return enumString - */ + */ @JsonProperty("enum_string") public EnumStringEnum getEnumString() { @@ -208,7 +208,7 @@ public class EnumTestDto { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @JsonProperty("enum_string_required") public EnumStringRequiredEnum getEnumStringRequired() { @@ -227,7 +227,7 @@ public class EnumTestDto { /** * Get enumInteger * @return enumInteger - */ + */ @JsonProperty("enum_integer") public EnumIntegerEnum getEnumInteger() { @@ -246,7 +246,7 @@ public class EnumTestDto { /** * Get enumNumber * @return enumNumber - */ + */ @JsonProperty("enum_number") public EnumNumberEnum getEnumNumber() { @@ -265,7 +265,7 @@ public class EnumTestDto { /** * Get outerEnum * @return outerEnum - */ + */ @JsonProperty("outerEnum") public OuterEnumDto getOuterEnum() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileDto.java index b3a168e8265..a3a12f8099a 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileDto.java @@ -31,7 +31,7 @@ public class FileDto { /** * Test capitalization * @return sourceURI - */ + */ @JsonProperty("sourceURI") public String getSourceURI() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java index 3770bb1c23d..69ecbf5c187 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java @@ -38,7 +38,7 @@ public class FileSchemaTestClassDto { /** * Get file * @return file - */ + */ @JsonProperty("file") public FileDto getFile() { @@ -65,7 +65,7 @@ public class FileSchemaTestClassDto { /** * Get files * @return files - */ + */ @JsonProperty("files") public List getFiles() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FormatTestDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FormatTestDto.java index 9bcc871a0f9..0a23445ba0f 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FormatTestDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/FormatTestDto.java @@ -71,7 +71,7 @@ public class FormatTestDto { * minimum: 10 * maximum: 100 * @return integer - */ + */ @JsonProperty("integer") public Integer getInteger() { @@ -92,7 +92,7 @@ public class FormatTestDto { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @JsonProperty("int32") public Integer getInt32() { @@ -111,7 +111,7 @@ public class FormatTestDto { /** * Get int64 * @return int64 - */ + */ @JsonProperty("int64") public Long getInt64() { @@ -132,7 +132,7 @@ public class FormatTestDto { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @JsonProperty("number") public BigDecimal getNumber() { @@ -153,7 +153,7 @@ public class FormatTestDto { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @JsonProperty("float") public Float getFloat() { @@ -174,7 +174,7 @@ public class FormatTestDto { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @JsonProperty("double") public Double getDouble() { @@ -193,7 +193,7 @@ public class FormatTestDto { /** * Get string * @return string - */ + */ @JsonProperty("string") public String getString() { @@ -212,7 +212,7 @@ public class FormatTestDto { /** * Get _byte * @return _byte - */ + */ @NotNull @JsonProperty("byte") public byte[] getByte() { @@ -231,7 +231,7 @@ public class FormatTestDto { /** * Get binary * @return binary - */ + */ @JsonProperty("binary") public org.springframework.core.io.Resource getBinary() { @@ -250,7 +250,7 @@ public class FormatTestDto { /** * Get date * @return date - */ + */ @NotNull @JsonProperty("date") public LocalDate getDate() { @@ -269,7 +269,7 @@ public class FormatTestDto { /** * Get dateTime * @return dateTime - */ + */ @JsonProperty("dateTime") public OffsetDateTime getDateTime() { @@ -288,7 +288,7 @@ public class FormatTestDto { /** * Get uuid * @return uuid - */ + */ @JsonProperty("uuid") public UUID getUuid() { @@ -307,7 +307,7 @@ public class FormatTestDto { /** * Get password * @return password - */ + */ @NotNull @JsonProperty("password") public String getPassword() { @@ -326,7 +326,7 @@ public class FormatTestDto { /** * Get bigDecimal * @return bigDecimal - */ + */ @JsonProperty("BigDecimal") public BigDecimal getBigDecimal() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java index c4caa29989d..d0268c32101 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java @@ -33,7 +33,7 @@ public class HasOnlyReadOnlyDto { /** * Get bar * @return bar - */ + */ @JsonProperty("bar") public String getBar() { @@ -52,7 +52,7 @@ public class HasOnlyReadOnlyDto { /** * Get foo * @return foo - */ + */ @JsonProperty("foo") public String getFoo() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ListDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ListDto.java index 8d3d84b35cf..ec96bb57e64 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ListDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ListDto.java @@ -31,7 +31,7 @@ public class ListDto { /** * Get _123list * @return _123list - */ + */ @JsonProperty("123-list") public String get123list() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MapTestDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MapTestDto.java index 854ddc3ceb8..9d3bfa8311b 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MapTestDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MapTestDto.java @@ -87,7 +87,7 @@ public class MapTestDto { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @JsonProperty("map_map_of_string") public Map> getMapMapOfString() { @@ -114,7 +114,7 @@ public class MapTestDto { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @JsonProperty("map_of_enum_string") public Map getMapOfEnumString() { @@ -141,7 +141,7 @@ public class MapTestDto { /** * Get directMap * @return directMap - */ + */ @JsonProperty("direct_map") public Map getDirectMap() { @@ -168,7 +168,7 @@ public class MapTestDto { /** * Get indirectMap * @return indirectMap - */ + */ @JsonProperty("indirect_map") public Map getIndirectMap() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java index 3506e72ce8b..b677b15a7d1 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get uuid * @return uuid - */ + */ @JsonProperty("uuid") public UUID getUuid() { @@ -62,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get dateTime * @return dateTime - */ + */ @JsonProperty("dateTime") public OffsetDateTime getDateTime() { @@ -89,7 +89,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get map * @return map - */ + */ @JsonProperty("map") public Map getMap() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/Model200ResponseDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/Model200ResponseDto.java index 41054e5c23a..cff54304402 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/Model200ResponseDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/Model200ResponseDto.java @@ -33,7 +33,7 @@ public class Model200ResponseDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public Integer getName() { @@ -52,7 +52,7 @@ public class Model200ResponseDto { /** * Get propertyClass * @return propertyClass - */ + */ @JsonProperty("class") public String getPropertyClass() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NameDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NameDto.java index 7d9c312ee26..db16daa48fd 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NameDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NameDto.java @@ -41,7 +41,7 @@ public class NameDto { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public Integer getName() { @@ -60,7 +60,7 @@ public class NameDto { /** * Get snakeCase * @return snakeCase - */ + */ @JsonProperty("snake_case") public Integer getSnakeCase() { @@ -79,7 +79,7 @@ public class NameDto { /** * Get property * @return property - */ + */ @JsonProperty("property") public String getProperty() { @@ -98,7 +98,7 @@ public class NameDto { /** * Get _123number * @return _123number - */ + */ @JsonProperty("123Number") public Integer get123number() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NullableMapPropertyDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NullableMapPropertyDto.java index 720f5b9ac91..ede7ad3d5de 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NullableMapPropertyDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NullableMapPropertyDto.java @@ -45,7 +45,7 @@ public class NullableMapPropertyDto { /** * Get languageValues * @return languageValues - */ + */ @JsonProperty("languageValues") public JsonNullable> getLanguageValues() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NumberOnlyDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NumberOnlyDto.java index 67f2e715a7d..be5a2c9cb45 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NumberOnlyDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/NumberOnlyDto.java @@ -32,7 +32,7 @@ public class NumberOnlyDto { /** * Get justNumber * @return justNumber - */ + */ @JsonProperty("JustNumber") public BigDecimal getJustNumber() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OrderDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OrderDto.java index 39277a7752d..4c99ebca0ee 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OrderDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OrderDto.java @@ -82,7 +82,7 @@ public class OrderDto { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -101,7 +101,7 @@ public class OrderDto { /** * Get petId * @return petId - */ + */ @JsonProperty("petId") public Long getPetId() { @@ -120,7 +120,7 @@ public class OrderDto { /** * Get quantity * @return quantity - */ + */ @JsonProperty("quantity") public Integer getQuantity() { @@ -139,7 +139,7 @@ public class OrderDto { /** * Get shipDate * @return shipDate - */ + */ @JsonProperty("shipDate") public OffsetDateTime getShipDate() { @@ -158,7 +158,7 @@ public class OrderDto { /** * Order Status * @return status - */ + */ @JsonProperty("status") public StatusEnum getStatus() { @@ -177,7 +177,7 @@ public class OrderDto { /** * Get complete * @return complete - */ + */ @JsonProperty("complete") public Boolean getComplete() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OuterCompositeDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OuterCompositeDto.java index f5fe71673e8..6994923d488 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OuterCompositeDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/OuterCompositeDto.java @@ -36,7 +36,7 @@ public class OuterCompositeDto { /** * Get myNumber * @return myNumber - */ + */ @JsonProperty("my_number") public BigDecimal getMyNumber() { @@ -55,7 +55,7 @@ public class OuterCompositeDto { /** * Get myString * @return myString - */ + */ @JsonProperty("my_string") public String getMyString() { @@ -74,7 +74,7 @@ public class OuterCompositeDto { /** * Get myBoolean * @return myBoolean - */ + */ @JsonProperty("my_boolean") public Boolean getMyBoolean() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java index 32be1983013..4de4ded9475 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java @@ -81,7 +81,7 @@ public class ParentWithNullableDto { /** * Get type * @return type - */ + */ @JsonProperty("type") public TypeEnum getType() { @@ -100,7 +100,7 @@ public class ParentWithNullableDto { /** * Get nullableProperty * @return nullableProperty - */ + */ @JsonProperty("nullableProperty") public JsonNullable getNullableProperty() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/PetDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/PetDto.java index e42286f40d9..daf4efa69b2 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/PetDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/PetDto.java @@ -94,7 +94,7 @@ public class PetDto { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -113,7 +113,7 @@ public class PetDto { /** * Get category * @return category - */ + */ @JsonProperty("category") public CategoryDto getCategory() { @@ -132,7 +132,7 @@ public class PetDto { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { @@ -159,7 +159,7 @@ public class PetDto { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @JsonProperty("photoUrls") public Set getPhotoUrls() { @@ -187,7 +187,7 @@ public class PetDto { /** * Get tags * @return tags - */ + */ @JsonProperty("tags") public List getTags() { @@ -207,7 +207,7 @@ public class PetDto { * pet status in the store * @return status * @deprecated - */ + */ @JsonProperty("status") @Deprecated @@ -217,7 +217,7 @@ public class PetDto { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java index 59f059b8f28..4d6ff923c22 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java @@ -33,7 +33,7 @@ public class ReadOnlyFirstDto { /** * Get bar * @return bar - */ + */ @JsonProperty("bar") public String getBar() { @@ -52,7 +52,7 @@ public class ReadOnlyFirstDto { /** * Get baz * @return baz - */ + */ @JsonProperty("baz") public String getBaz() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java index 8bb44cbfee6..3eeeacdb2a4 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @JsonProperty("normalPropertyName") public String getNormalPropertyName() { @@ -56,7 +56,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") public String getUPPERCASEPROPERTYSNAKE() { @@ -75,7 +75,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @JsonProperty("lower-case-property-dashes") public String getLowerCasePropertyDashes() { @@ -94,7 +94,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @JsonProperty("property name with spaces") public String getPropertyNameWithSpaces() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReturnDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReturnDto.java index 6d157a128dd..364a7d8d79c 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReturnDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ReturnDto.java @@ -31,7 +31,7 @@ public class ReturnDto { /** * Get _return * @return _return - */ + */ @JsonProperty("return") public Integer getReturn() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/SpecialModelNameDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/SpecialModelNameDto.java index 82b01fe3ba0..c0285932ef1 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/SpecialModelNameDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/SpecialModelNameDto.java @@ -31,7 +31,7 @@ public class SpecialModelNameDto { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @JsonProperty("$special[property.name]") public Long get$SpecialPropertyName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TagDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TagDto.java index 0bbd6c17c49..d71fb89aea3 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TagDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TagDto.java @@ -33,7 +33,7 @@ public class TagDto { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -52,7 +52,7 @@ public class TagDto { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java index fe7f3950830..454e7638b7a 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java @@ -48,7 +48,7 @@ public class TypeHolderDefaultDto { /** * Get stringItem * @return stringItem - */ + */ @NotNull @JsonProperty("string_item") public String getStringItem() { @@ -67,7 +67,7 @@ public class TypeHolderDefaultDto { /** * Get numberItem * @return numberItem - */ + */ @NotNull @JsonProperty("number_item") public BigDecimal getNumberItem() { @@ -86,7 +86,7 @@ public class TypeHolderDefaultDto { /** * Get integerItem * @return integerItem - */ + */ @NotNull @JsonProperty("integer_item") public Integer getIntegerItem() { @@ -105,7 +105,7 @@ public class TypeHolderDefaultDto { /** * Get boolItem * @return boolItem - */ + */ @NotNull @JsonProperty("bool_item") public Boolean getBoolItem() { @@ -132,7 +132,7 @@ public class TypeHolderDefaultDto { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @JsonProperty("array_item") public List getArrayItem() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderExampleDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderExampleDto.java index 58d6993c0ce..60eef4d19ef 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderExampleDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/TypeHolderExampleDto.java @@ -50,7 +50,7 @@ public class TypeHolderExampleDto { /** * Get stringItem * @return stringItem - */ + */ @NotNull @JsonProperty("string_item") public String getStringItem() { @@ -69,7 +69,7 @@ public class TypeHolderExampleDto { /** * Get numberItem * @return numberItem - */ + */ @NotNull @JsonProperty("number_item") public BigDecimal getNumberItem() { @@ -88,7 +88,7 @@ public class TypeHolderExampleDto { /** * Get floatItem * @return floatItem - */ + */ @NotNull @JsonProperty("float_item") public Float getFloatItem() { @@ -107,7 +107,7 @@ public class TypeHolderExampleDto { /** * Get integerItem * @return integerItem - */ + */ @NotNull @JsonProperty("integer_item") public Integer getIntegerItem() { @@ -126,7 +126,7 @@ public class TypeHolderExampleDto { /** * Get boolItem * @return boolItem - */ + */ @NotNull @JsonProperty("bool_item") public Boolean getBoolItem() { @@ -153,7 +153,7 @@ public class TypeHolderExampleDto { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @JsonProperty("array_item") public List getArrayItem() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/UserDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/UserDto.java index 234b83a74ff..426ee7e57b2 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/UserDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/UserDto.java @@ -45,7 +45,7 @@ public class UserDto { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -64,7 +64,7 @@ public class UserDto { /** * Get username * @return username - */ + */ @JsonProperty("username") public String getUsername() { @@ -83,7 +83,7 @@ public class UserDto { /** * Get firstName * @return firstName - */ + */ @JsonProperty("firstName") public String getFirstName() { @@ -102,7 +102,7 @@ public class UserDto { /** * Get lastName * @return lastName - */ + */ @JsonProperty("lastName") public String getLastName() { @@ -121,7 +121,7 @@ public class UserDto { /** * Get email * @return email - */ + */ @JsonProperty("email") public String getEmail() { @@ -140,7 +140,7 @@ public class UserDto { /** * Get password * @return password - */ + */ @JsonProperty("password") public String getPassword() { @@ -159,7 +159,7 @@ public class UserDto { /** * Get phone * @return phone - */ + */ @JsonProperty("phone") public String getPhone() { @@ -178,7 +178,7 @@ public class UserDto { /** * User Status * @return userStatus - */ + */ @JsonProperty("userStatus") public Integer getUserStatus() { diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/XmlItemDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/XmlItemDto.java index ecbde7751f5..31f99e80331 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/XmlItemDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/XmlItemDto.java @@ -100,7 +100,7 @@ public class XmlItemDto { /** * Get attributeString * @return attributeString - */ + */ @JsonProperty("attribute_string") public String getAttributeString() { @@ -119,7 +119,7 @@ public class XmlItemDto { /** * Get attributeNumber * @return attributeNumber - */ + */ @JsonProperty("attribute_number") public BigDecimal getAttributeNumber() { @@ -138,7 +138,7 @@ public class XmlItemDto { /** * Get attributeInteger * @return attributeInteger - */ + */ @JsonProperty("attribute_integer") public Integer getAttributeInteger() { @@ -157,7 +157,7 @@ public class XmlItemDto { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @JsonProperty("attribute_boolean") public Boolean getAttributeBoolean() { @@ -184,7 +184,7 @@ public class XmlItemDto { /** * Get wrappedArray * @return wrappedArray - */ + */ @JsonProperty("wrapped_array") public List getWrappedArray() { @@ -203,7 +203,7 @@ public class XmlItemDto { /** * Get nameString * @return nameString - */ + */ @JsonProperty("name_string") public String getNameString() { @@ -222,7 +222,7 @@ public class XmlItemDto { /** * Get nameNumber * @return nameNumber - */ + */ @JsonProperty("name_number") public BigDecimal getNameNumber() { @@ -241,7 +241,7 @@ public class XmlItemDto { /** * Get nameInteger * @return nameInteger - */ + */ @JsonProperty("name_integer") public Integer getNameInteger() { @@ -260,7 +260,7 @@ public class XmlItemDto { /** * Get nameBoolean * @return nameBoolean - */ + */ @JsonProperty("name_boolean") public Boolean getNameBoolean() { @@ -287,7 +287,7 @@ public class XmlItemDto { /** * Get nameArray * @return nameArray - */ + */ @JsonProperty("name_array") public List getNameArray() { @@ -314,7 +314,7 @@ public class XmlItemDto { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @JsonProperty("name_wrapped_array") public List getNameWrappedArray() { @@ -333,7 +333,7 @@ public class XmlItemDto { /** * Get prefixString * @return prefixString - */ + */ @JsonProperty("prefix_string") public String getPrefixString() { @@ -352,7 +352,7 @@ public class XmlItemDto { /** * Get prefixNumber * @return prefixNumber - */ + */ @JsonProperty("prefix_number") public BigDecimal getPrefixNumber() { @@ -371,7 +371,7 @@ public class XmlItemDto { /** * Get prefixInteger * @return prefixInteger - */ + */ @JsonProperty("prefix_integer") public Integer getPrefixInteger() { @@ -390,7 +390,7 @@ public class XmlItemDto { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @JsonProperty("prefix_boolean") public Boolean getPrefixBoolean() { @@ -417,7 +417,7 @@ public class XmlItemDto { /** * Get prefixArray * @return prefixArray - */ + */ @JsonProperty("prefix_array") public List getPrefixArray() { @@ -444,7 +444,7 @@ public class XmlItemDto { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @JsonProperty("prefix_wrapped_array") public List getPrefixWrappedArray() { @@ -463,7 +463,7 @@ public class XmlItemDto { /** * Get namespaceString * @return namespaceString - */ + */ @JsonProperty("namespace_string") public String getNamespaceString() { @@ -482,7 +482,7 @@ public class XmlItemDto { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @JsonProperty("namespace_number") public BigDecimal getNamespaceNumber() { @@ -501,7 +501,7 @@ public class XmlItemDto { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @JsonProperty("namespace_integer") public Integer getNamespaceInteger() { @@ -520,7 +520,7 @@ public class XmlItemDto { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @JsonProperty("namespace_boolean") public Boolean getNamespaceBoolean() { @@ -547,7 +547,7 @@ public class XmlItemDto { /** * Get namespaceArray * @return namespaceArray - */ + */ @JsonProperty("namespace_array") public List getNamespaceArray() { @@ -574,7 +574,7 @@ public class XmlItemDto { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @JsonProperty("namespace_wrapped_array") public List getNamespaceWrappedArray() { @@ -593,7 +593,7 @@ public class XmlItemDto { /** * Get prefixNsString * @return prefixNsString - */ + */ @JsonProperty("prefix_ns_string") public String getPrefixNsString() { @@ -612,7 +612,7 @@ public class XmlItemDto { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @JsonProperty("prefix_ns_number") public BigDecimal getPrefixNsNumber() { @@ -631,7 +631,7 @@ public class XmlItemDto { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @JsonProperty("prefix_ns_integer") public Integer getPrefixNsInteger() { @@ -650,7 +650,7 @@ public class XmlItemDto { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @JsonProperty("prefix_ns_boolean") public Boolean getPrefixNsBoolean() { @@ -677,7 +677,7 @@ public class XmlItemDto { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @JsonProperty("prefix_ns_array") public List getPrefixNsArray() { @@ -704,7 +704,7 @@ public class XmlItemDto { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @JsonProperty("prefix_ns_wrapped_array") public List getPrefixNsWrappedArray() { diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/ChildSchema.java b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/ChildSchema.java index 26661eb9da8..a5c09b76238 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/ChildSchema.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/ChildSchema.java @@ -59,10 +59,10 @@ public class ChildSchema extends Parent { return this; } - /** + /** * Get prop1 * @return prop1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROP1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/MySchemaNameCharacters.java b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/MySchemaNameCharacters.java index 6b5332a8f29..ca967241c75 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/MySchemaNameCharacters.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/MySchemaNameCharacters.java @@ -60,10 +60,10 @@ public class MySchemaNameCharacters extends Parent { return this; } - /** + /** * Get prop2 * @return prop2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROP2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/Parent.java b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/Parent.java index 6861ac1475e..9aafeca4ead 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/Parent.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-special-characters/src/main/java/org/openapitools/client/model/Parent.java @@ -58,10 +58,10 @@ public class Parent { return this; } - /** + /** * Get objectType * @return objectType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Category.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Category.java index 20f454f8b2f..e7506808d6d 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Category.java @@ -52,10 +52,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -78,10 +78,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java index 8da96d2821e..e138999eb0c 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -57,10 +57,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CODE) @@ -83,10 +83,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -109,10 +109,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Order.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Order.java index 3d3836239ba..b597e7486b3 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Order.java @@ -106,10 +106,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -132,10 +132,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -158,10 +158,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -184,10 +184,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -210,10 +210,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -236,10 +236,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Pet.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Pet.java index a56c003231e..2bbaa7e4745 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Pet.java @@ -110,10 +110,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -136,10 +136,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -162,10 +162,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -196,10 +196,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @ApiModelProperty(required = true, value = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -230,10 +230,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -257,11 +257,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @ApiModelProperty(value = "pet status in the store") diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Tag.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Tag.java index 3645982636f..b0eb9019c70 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/Tag.java @@ -52,10 +52,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -78,10 +78,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/User.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/User.java index 2f20b61ae6e..09bcfa8dffd 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/User.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger1/src/main/java/org/openapitools/client/model/User.java @@ -76,10 +76,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_ID) @@ -102,10 +102,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_USERNAME) @@ -128,10 +128,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -154,10 +154,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -180,10 +180,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_EMAIL) @@ -206,10 +206,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -232,10 +232,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_PHONE) @@ -258,10 +258,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @ApiModelProperty(value = "User Status") @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Category.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Category.java index 96c69a85e74..ae3a3e6a1dd 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Category.java @@ -51,10 +51,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -77,10 +77,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java index f6c7383e446..31413bb7f5b 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -56,10 +56,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CODE) @@ -82,10 +82,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TYPE) @@ -108,10 +108,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Order.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Order.java index a9e4bb9ff7b..a27382ab46b 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Order.java @@ -105,10 +105,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -131,10 +131,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PET_ID) @@ -157,10 +157,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -183,10 +183,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -209,10 +209,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "Order Status") @JsonProperty(JSON_PROPERTY_STATUS) @@ -235,10 +235,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Pet.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Pet.java index df78caa4292..05abd30bbe5 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Pet.java @@ -109,10 +109,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -135,10 +135,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_CATEGORY) @@ -161,10 +161,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @Schema(example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) @@ -195,10 +195,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @Schema(requiredMode = Schema.RequiredMode.REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -229,10 +229,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_TAGS) @@ -256,11 +256,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "pet status in the store") diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Tag.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Tag.java index 12d40c2238c..3820f9959b2 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/Tag.java @@ -51,10 +51,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -77,10 +77,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/User.java b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/User.java index 768490f1d38..e24c8367d9e 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/User.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8-swagger2/src/main/java/org/openapitools/client/model/User.java @@ -75,10 +75,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_ID) @@ -101,10 +101,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_USERNAME) @@ -127,10 +127,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -153,10 +153,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -179,10 +179,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_EMAIL) @@ -205,10 +205,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -231,10 +231,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "") @JsonProperty(JSON_PROPERTY_PHONE) @@ -257,10 +257,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @Schema(requiredMode = Schema.RequiredMode.NOT_REQUIRED, description = "User Status") @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java index a32df497efb..573d9846d3c 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java @@ -87,10 +87,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapProperty * @return mapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -120,10 +120,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapOfMapProperty * @return mapOfMapProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_MAP_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -145,10 +145,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get anytype1 * @return anytype1 - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -178,10 +178,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype1 * @return mapWithUndeclaredPropertiesAnytype1 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE1) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,10 +203,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype2 * @return mapWithUndeclaredPropertiesAnytype2 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE2) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -236,10 +236,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesAnytype3 * @return mapWithUndeclaredPropertiesAnytype3 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_ANYTYPE3) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) @@ -261,10 +261,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * an object with no declared properties and no undeclared properties, hence it's an empty map. * @return emptyMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMPTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -294,10 +294,10 @@ public class AdditionalPropertiesClass { return this; } - /** + /** * Get mapWithUndeclaredPropertiesString * @return mapWithUndeclaredPropertiesString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_WITH_UNDECLARED_PROPERTIES_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java index 0e75fe989f6..ed68a1e2193 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Animal.java @@ -62,10 +62,10 @@ public class Animal { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,10 +87,10 @@ public class Animal { return this; } - /** + /** * Get color * @return color - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COLOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Apple.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Apple.java index cb08c48fcd9..b3177ecf976 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Apple.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Apple.java @@ -50,10 +50,10 @@ public class Apple { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Apple { return this; } - /** + /** * Get origin * @return origin - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ORIGIN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AppleReq.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AppleReq.java index d17ec8ac02a..0f6c09038a7 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AppleReq.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/AppleReq.java @@ -50,10 +50,10 @@ public class AppleReq { return this; } - /** + /** * Get cultivar * @return cultivar - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CULTIVAR) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -75,10 +75,10 @@ public class AppleReq { return this; } - /** + /** * Get mealy * @return mealy - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MEALY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java index 2f990b472a7..bcfcdeef400 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfArrayOfNumberOnly { return this; } - /** + /** * Get arrayArrayNumber * @return arrayArrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java index 44f6b97d97c..4f1942c3bfc 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java @@ -56,10 +56,10 @@ public class ArrayOfNumberOnly { return this; } - /** + /** * Get arrayNumber * @return arrayNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java index 1457023ecb7..9c4ea9e2604 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ArrayTest.java @@ -64,10 +64,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayOfString * @return arrayOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -97,10 +97,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -130,10 +130,10 @@ public class ArrayTest { return this; } - /** + /** * Get arrayArrayOfModel * @return arrayArrayOfModel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Banana.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Banana.java index d1e5353f1ec..d68e7d07e82 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Banana.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Banana.java @@ -47,10 +47,10 @@ public class Banana { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BananaReq.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BananaReq.java index 234c3475735..c554f894f93 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BananaReq.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BananaReq.java @@ -51,10 +51,10 @@ public class BananaReq { return this; } - /** + /** * Get lengthCm * @return lengthCm - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_LENGTH_CM) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -76,10 +76,10 @@ public class BananaReq { return this; } - /** + /** * Get sweet * @return sweet - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SWEET) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BasquePig.java index 415c42d5fdd..cae2208b9b1 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BasquePig.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/BasquePig.java @@ -45,10 +45,10 @@ public class BasquePig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java index 2e76806e9b6..9a86f6bc43b 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Capitalization.java @@ -65,10 +65,10 @@ public class Capitalization { return this; } - /** + /** * Get smallCamel * @return smallCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,10 +90,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalCamel * @return capitalCamel - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_CAMEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -115,10 +115,10 @@ public class Capitalization { return this; } - /** + /** * Get smallSnake * @return smallSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SMALL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -140,10 +140,10 @@ public class Capitalization { return this; } - /** + /** * Get capitalSnake * @return capitalSnake - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CAPITAL_SNAKE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,10 +165,10 @@ public class Capitalization { return this; } - /** + /** * Get scAETHFlowPoints * @return scAETHFlowPoints - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,10 +190,10 @@ public class Capitalization { return this; } - /** + /** * Name of the pet * @return ATT_NAME - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java index 8c2a45bda57..4e724794ffa 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Cat.java @@ -60,10 +60,10 @@ public class Cat extends Animal { return this; } - /** + /** * Get declawed * @return declawed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECLAWED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java index f220788eb81..30894b69fe2 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Category.java @@ -49,10 +49,10 @@ public class Category { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ChildCat.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ChildCat.java index 29f41ac8308..9e2ee57637d 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ChildCat.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ChildCat.java @@ -65,10 +65,10 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -98,10 +98,10 @@ public class ChildCat extends ParentPet { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java index 9825ca47924..6b82725db52 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ClassModel.java @@ -45,10 +45,10 @@ public class ClassModel { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java index f6f8b1c9921..c1c756e68ee 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Client.java @@ -45,10 +45,10 @@ public class Client { return this; } - /** + /** * Get client * @return client - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CLIENT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java index 988d200c0c1..9c8e37cbe93 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java @@ -53,10 +53,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -78,10 +78,10 @@ public class ComplexQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DanishPig.java index bb5a04c768a..b13a1face32 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DanishPig.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DanishPig.java @@ -45,10 +45,10 @@ public class DanishPig { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DeprecatedObject.java index d84252f8f55..b76d1571f97 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DeprecatedObject.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/DeprecatedObject.java @@ -47,10 +47,10 @@ public class DeprecatedObject { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java index 20faf7d8029..1b1763d1edd 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Dog.java @@ -59,10 +59,10 @@ public class Dog extends Animal { return this; } - /** + /** * Get breed * @return breed - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BREED) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Drawing.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Drawing.java index 9a44da56d67..431f46762b3 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Drawing.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Drawing.java @@ -71,10 +71,10 @@ public class Drawing { return this; } - /** + /** * Get mainShape * @return mainShape - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAIN_SHAPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -96,10 +96,10 @@ public class Drawing { return this; } - /** + /** * Get shapeOrNull * @return shapeOrNull - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -129,10 +129,10 @@ public class Drawing { return this; } - /** + /** * Get nullableShape * @return nullableShape - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -170,10 +170,10 @@ public class Drawing { return this; } - /** + /** * Get shapes * @return shapes - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHAPES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java index 699fca30a93..95ac4e0ca6a 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumArrays.java @@ -121,10 +121,10 @@ public class EnumArrays { return this; } - /** + /** * Get justSymbol * @return justSymbol - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_SYMBOL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -154,10 +154,10 @@ public class EnumArrays { return this; } - /** + /** * Get arrayEnum * @return arrayEnum - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ENUM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java index f9627a7e8ae..5eeda8575a9 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EnumTest.java @@ -265,10 +265,10 @@ public class EnumTest { return this; } - /** + /** * Get enumString * @return enumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -290,10 +290,10 @@ public class EnumTest { return this; } - /** + /** * Get enumStringRequired * @return enumStringRequired - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_ENUM_STRING_REQUIRED) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -315,10 +315,10 @@ public class EnumTest { return this; } - /** + /** * Get enumInteger * @return enumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -340,10 +340,10 @@ public class EnumTest { return this; } - /** + /** * Get enumIntegerOnly * @return enumIntegerOnly - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_INTEGER_ONLY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -365,10 +365,10 @@ public class EnumTest { return this; } - /** + /** * Get enumNumber * @return enumNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ENUM_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -390,10 +390,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnum * @return outerEnum - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -423,10 +423,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumInteger * @return outerEnumInteger - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -448,10 +448,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumDefaultValue * @return outerEnumDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -473,10 +473,10 @@ public class EnumTest { return this; } - /** + /** * Get outerEnumIntegerDefaultValue * @return outerEnumIntegerDefaultValue - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OUTER_ENUM_INTEGER_DEFAULT_VALUE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EquilateralTriangle.java index 0e7ee3ade3d..5d610ba50e0 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EquilateralTriangle.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/EquilateralTriangle.java @@ -53,10 +53,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -78,10 +78,10 @@ public class EquilateralTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java index 762d3046fe4..d981b37718f 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java @@ -52,10 +52,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get _file * @return _file - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -85,10 +85,10 @@ public class FileSchemaTestClass { return this; } - /** + /** * Get files * @return files - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FILES) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Foo.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Foo.java index ff94368149f..4d713657872 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Foo.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Foo.java @@ -45,10 +45,10 @@ public class Foo { return this; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java index 012abb5c0d4..70bf7dc5fd5 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java @@ -47,10 +47,10 @@ public class FooGetDefaultResponse { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java index 6d3886f7b7a..b2d615fb963 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java @@ -111,12 +111,12 @@ public class FormatTest { return this; } - /** + /** * Get integer * minimum: 10 * maximum: 100 * @return integer - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INTEGER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -138,12 +138,12 @@ public class FormatTest { return this; } - /** + /** * Get int32 * minimum: 20 * maximum: 200 * @return int32 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT32) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -165,10 +165,10 @@ public class FormatTest { return this; } - /** + /** * Get int64 * @return int64 - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INT64) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -190,12 +190,12 @@ public class FormatTest { return this; } - /** + /** * Get number * minimum: 32.1 * maximum: 543.2 * @return number - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NUMBER) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -217,12 +217,12 @@ public class FormatTest { return this; } - /** + /** * Get _float * minimum: 54.3 * maximum: 987.6 * @return _float - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FLOAT) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -244,12 +244,12 @@ public class FormatTest { return this; } - /** + /** * Get _double * minimum: 67.8 * maximum: 123.4 * @return _double - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DOUBLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -271,10 +271,10 @@ public class FormatTest { return this; } - /** + /** * Get decimal * @return decimal - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DECIMAL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -296,10 +296,10 @@ public class FormatTest { return this; } - /** + /** * Get string * @return string - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -321,10 +321,10 @@ public class FormatTest { return this; } - /** + /** * Get _byte * @return _byte - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_BYTE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -346,10 +346,10 @@ public class FormatTest { return this; } - /** + /** * Get binary * @return binary - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BINARY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -371,10 +371,10 @@ public class FormatTest { return this; } - /** + /** * Get date * @return date - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_DATE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -396,10 +396,10 @@ public class FormatTest { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -421,10 +421,10 @@ public class FormatTest { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -446,10 +446,10 @@ public class FormatTest { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -471,10 +471,10 @@ public class FormatTest { return this; } - /** + /** * A string that is a 10 digit number. Can have leading zeros. * @return patternWithDigits - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -496,10 +496,10 @@ public class FormatTest { return this; } - /** + /** * A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. * @return patternWithDigitsAndDelimiter - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PATTERN_WITH_DIGITS_AND_DELIMITER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/GrandparentAnimal.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/GrandparentAnimal.java index 88bed4ccafd..d0c85efe54d 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/GrandparentAnimal.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/GrandparentAnimal.java @@ -58,10 +58,10 @@ public class GrandparentAnimal { return this; } - /** + /** * Get petType * @return petType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PET_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java index f3e3d132d24..9a95c807a30 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java @@ -55,10 +55,10 @@ public class HasOnlyReadOnly { this.foo = foo; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -70,10 +70,10 @@ public class HasOnlyReadOnly { - /** + /** * Get foo * @return foo - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FOO) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HealthCheckResult.java index 0c93ed4c2e5..a2ed6b773db 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HealthCheckResult.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/HealthCheckResult.java @@ -49,10 +49,10 @@ public class HealthCheckResult { return this; } - /** + /** * Get nullableMessage * @return nullableMessage - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java index 613584397cf..d33c042a59f 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/IsoscelesTriangle.java @@ -49,10 +49,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -74,10 +74,10 @@ public class IsoscelesTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java index f70f39af214..28b19756a11 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MapTest.java @@ -102,10 +102,10 @@ public class MapTest { return this; } - /** + /** * Get mapMapOfString * @return mapMapOfString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_MAP_OF_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -135,10 +135,10 @@ public class MapTest { return this; } - /** + /** * Get mapOfEnumString * @return mapOfEnumString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP_OF_ENUM_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class MapTest { return this; } - /** + /** * Get directMap * @return directMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -201,10 +201,10 @@ public class MapTest { return this; } - /** + /** * Get indirectMap * @return indirectMap - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_INDIRECT_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java index 5d2d79ab40f..1bff4fc1081 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -58,10 +58,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -83,10 +83,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get dateTime * @return dateTime - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DATE_TIME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class MixedPropertiesAndAdditionalPropertiesClass { return this; } - /** + /** * Get map * @return map - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MAP) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java index eed2db74863..8b238021b97 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Model200Response.java @@ -50,10 +50,10 @@ public class Model200Response { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class Model200Response { return this; } - /** + /** * Get propertyClass * @return propertyClass - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY_CLASS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java index c273720b1d9..5ebd6eb3530 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelApiResponse.java @@ -54,10 +54,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get code * @return code - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java index 5a7b12470ca..d209835cae1 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelFile.java @@ -46,10 +46,10 @@ public class ModelFile { return this; } - /** + /** * Test capitalization * @return sourceURI - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOURCE_U_R_I) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java index 0d311354af5..f6bdbc022ae 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelList.java @@ -46,10 +46,10 @@ public class ModelList { return this; } - /** + /** * Get _123list * @return _123list - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123LIST) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java index b5eed858337..3a91e2253ae 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ModelReturn.java @@ -46,10 +46,10 @@ public class ModelReturn { return this; } - /** + /** * Get _return * @return _return - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_RETURN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java index db16949f0b1..14576f0c469 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Name.java @@ -67,10 +67,10 @@ public class Name { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -87,10 +87,10 @@ public class Name { } - /** + /** * Get snakeCase * @return snakeCase - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SNAKE_CASE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -107,10 +107,10 @@ public class Name { return this; } - /** + /** * Get property * @return property - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -127,10 +127,10 @@ public class Name { } - /** + /** * Get _123number * @return _123number - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_123NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NullableClass.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NullableClass.java index a7081a251ca..a571fd2e905 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NullableClass.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NullableClass.java @@ -104,10 +104,10 @@ public class NullableClass { return this; } - /** + /** * Get integerProp * @return integerProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -137,10 +137,10 @@ public class NullableClass { return this; } - /** + /** * Get numberProp * @return numberProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -170,10 +170,10 @@ public class NullableClass { return this; } - /** + /** * Get booleanProp * @return booleanProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -203,10 +203,10 @@ public class NullableClass { return this; } - /** + /** * Get stringProp * @return stringProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -236,10 +236,10 @@ public class NullableClass { return this; } - /** + /** * Get dateProp * @return dateProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -269,10 +269,10 @@ public class NullableClass { return this; } - /** + /** * Get datetimeProp * @return datetimeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -314,10 +314,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayNullableProp * @return arrayNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -359,10 +359,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayAndItemsNullableProp * @return arrayAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -400,10 +400,10 @@ public class NullableClass { return this; } - /** + /** * Get arrayItemsNullable * @return arrayItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ARRAY_ITEMS_NULLABLE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -437,10 +437,10 @@ public class NullableClass { return this; } - /** + /** * Get objectNullableProp * @return objectNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -482,10 +482,10 @@ public class NullableClass { return this; } - /** + /** * Get objectAndItemsNullableProp * @return objectAndItemsNullableProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -523,10 +523,10 @@ public class NullableClass { return this; } - /** + /** * Get objectItemsNullable * @return objectItemsNullable - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_ITEMS_NULLABLE) @JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java index c80c28b0062..ae0e2ca2636 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/NumberOnly.java @@ -46,10 +46,10 @@ public class NumberOnly { return this; } - /** + /** * Get justNumber * @return justNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_JUST_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java index 79ff4ed2b3f..a1156d77ea6 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java @@ -64,10 +64,10 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get uuid * @return uuid - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_UUID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -90,11 +90,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get id * @return id * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @@ -119,11 +119,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get deprecatedRef * @return deprecatedRef * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_DEPRECATED_REF) @@ -156,11 +156,11 @@ public class ObjectWithDeprecatedFields { return this; } - /** + /** * Get bars * @return bars * @deprecated - **/ + */ @Deprecated @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BARS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java index 0b6b9a4a710..42b02900b97 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Order.java @@ -103,10 +103,10 @@ public class Order { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -128,10 +128,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -153,10 +153,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -178,10 +178,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -203,10 +203,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -228,10 +228,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java index 0b11b06bba0..d61a23f1103 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/OuterComposite.java @@ -54,10 +54,10 @@ public class OuterComposite { return this; } - /** + /** * Get myNumber * @return myNumber - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_NUMBER) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class OuterComposite { return this; } - /** + /** * Get myString * @return myString - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_STRING) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class OuterComposite { return this; } - /** + /** * Get myBoolean * @return myBoolean - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_MY_BOOLEAN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java index 0b542ebac38..29edda0c277 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Pet.java @@ -106,10 +106,10 @@ public class Pet { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -131,10 +131,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -156,10 +156,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -189,10 +189,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -222,10 +222,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,10 +247,10 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java index e3a091d6c58..355c90b0f03 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java @@ -45,10 +45,10 @@ public class QuadrilateralInterface { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java index f243a996f36..6847dfb28bc 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java @@ -52,10 +52,10 @@ public class ReadOnlyFirst { this.bar = bar; } - /** + /** * Get bar * @return bar - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -72,10 +72,10 @@ public class ReadOnlyFirst { return this; } - /** + /** * Get baz * @return baz - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_BAZ) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ScaleneTriangle.java index 34f1d2a06e3..72fdf27f658 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ScaleneTriangle.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ScaleneTriangle.java @@ -53,10 +53,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -78,10 +78,10 @@ public class ScaleneTriangle { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ShapeInterface.java index bf5047a22f9..f16071eacdd 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ShapeInterface.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/ShapeInterface.java @@ -45,10 +45,10 @@ public class ShapeInterface { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java index ef7d26e7cb2..8f90f7c419e 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java @@ -53,10 +53,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get shapeType * @return shapeType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_SHAPE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) @@ -78,10 +78,10 @@ public class SimpleQuadrilateral { return this; } - /** + /** * Get quadrilateralType * @return quadrilateralType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_QUADRILATERAL_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java index f76740fe3d8..91b7b8d23ab 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/SpecialModelName.java @@ -50,10 +50,10 @@ public class SpecialModelName { return this; } - /** + /** * Get $specialPropertyName * @return $specialPropertyName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_$_SPECIAL_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -75,10 +75,10 @@ public class SpecialModelName { return this; } - /** + /** * Get specialModelName * @return specialModelName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SPECIAL_MODEL_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java index 1bc7538c92a..b05bef74e9d 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Tag.java @@ -49,10 +49,10 @@ public class Tag { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -74,10 +74,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java index c7853dbe3b1..5b06dcdb6fc 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequest.java @@ -50,10 +50,10 @@ public class TestInlineFreeformAdditionalPropertiesRequest { return this; } - /** + /** * Get someProperty * @return someProperty - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_SOME_PROPERTY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TriangleInterface.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TriangleInterface.java index c355ca88423..29ffc8a75c2 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TriangleInterface.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/TriangleInterface.java @@ -45,10 +45,10 @@ public class TriangleInterface { return this; } - /** + /** * Get triangleType * @return triangleType - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_TRIANGLE_TYPE) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java index 10072182af9..0c4d75049c6 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/User.java @@ -93,10 +93,10 @@ public class User { return this; } - /** + /** * Get id * @return id - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -118,10 +118,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -143,10 +143,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -168,10 +168,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -193,10 +193,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -218,10 +218,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -243,10 +243,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -268,10 +268,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -293,10 +293,10 @@ public class User { return this; } - /** + /** * test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. * @return objectWithNoDeclaredProps - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_OBJECT_WITH_NO_DECLARED_PROPS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -318,10 +318,10 @@ public class User { return this; } - /** + /** * test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. * @return objectWithNoDeclaredPropsNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -351,10 +351,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 * @return anyTypeProp - **/ + */ @javax.annotation.Nullable @JsonIgnore @@ -384,10 +384,10 @@ public class User { return this; } - /** + /** * test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. * @return anyTypePropNullable - **/ + */ @javax.annotation.Nullable @JsonIgnore diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Whale.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Whale.java index b74e660aad1..e5e36025b1c 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Whale.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Whale.java @@ -54,10 +54,10 @@ public class Whale { return this; } - /** + /** * Get hasBaleen * @return hasBaleen - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_HAS_BALEEN) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -79,10 +79,10 @@ public class Whale { return this; } - /** + /** * Get hasTeeth * @return hasTeeth - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_HAS_TEETH) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -104,10 +104,10 @@ public class Whale { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Zebra.java b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Zebra.java index e7452bdb453..6359d1252bc 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Zebra.java +++ b/samples/openapi3/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/Zebra.java @@ -91,10 +91,10 @@ public class Zebra { return this; } - /** + /** * Get type * @return type - **/ + */ @javax.annotation.Nullable @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -116,10 +116,10 @@ public class Zebra { return this; } - /** + /** * Get className * @return className - **/ + */ @javax.annotation.Nonnull @JsonProperty(JSON_PROPERTY_CLASS_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Category.java index c4651598a79..3e94da1ff6c 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Category.java @@ -32,7 +32,7 @@ public class Category { /** * Get id * @return id - */ + */ @JsonProperty("id") public Optional getId() { @@ -51,7 +51,7 @@ public class Category { /** * Get name * @return name - */ + */ @JsonProperty("name") public Optional<@Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") String> getName() { diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/ModelApiResponse.java index b1d7be2a631..5ce95665860 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -36,7 +36,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @JsonProperty("code") public Optional getCode() { @@ -55,7 +55,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @JsonProperty("type") public Optional getType() { @@ -74,7 +74,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @JsonProperty("message") public Optional getMessage() { diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Order.java index db395ff5eb9..9b81a84a765 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Order.java @@ -81,7 +81,7 @@ public class Order { /** * Get id * @return id - */ + */ @JsonProperty("id") public Optional getId() { @@ -100,7 +100,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @JsonProperty("petId") public Optional getPetId() { @@ -119,7 +119,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @JsonProperty("quantity") public Optional getQuantity() { @@ -138,7 +138,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @JsonProperty("shipDate") public Optional getShipDate() { @@ -157,7 +157,7 @@ public class Order { /** * Order Status * @return status - */ + */ @JsonProperty("status") public Optional getStatus() { @@ -176,7 +176,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @JsonProperty("complete") public Optional getComplete() { diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Pet.java index 2c96888f903..7f9a91f1be0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Pet.java @@ -98,7 +98,7 @@ public class Pet { /** * Get id * @return id - */ + */ @JsonProperty("id") public Optional getId() { @@ -117,7 +117,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @JsonProperty("category") public Optional getCategory() { @@ -136,7 +136,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { @@ -163,7 +163,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @JsonProperty("photoUrls") public List getPhotoUrls() { @@ -190,7 +190,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @JsonProperty("tags") public List<@Valid Tag> getTags() { @@ -210,7 +210,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @JsonProperty("status") @Deprecated @@ -220,7 +220,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(Optional status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Tag.java index 61b68a04b91..2bf243abd9c 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/Tag.java @@ -32,7 +32,7 @@ public class Tag { /** * Get id * @return id - */ + */ @JsonProperty("id") public Optional getId() { @@ -51,7 +51,7 @@ public class Tag { /** * Get name * @return name - */ + */ @JsonProperty("name") public Optional getName() { diff --git a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/User.java index 6e9852df908..7a3c115d30f 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud-3-with-optional/src/main/java/org/openapitools/model/User.java @@ -44,7 +44,7 @@ public class User { /** * Get id * @return id - */ + */ @JsonProperty("id") public Optional getId() { @@ -63,7 +63,7 @@ public class User { /** * Get username * @return username - */ + */ @JsonProperty("username") public Optional getUsername() { @@ -82,7 +82,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @JsonProperty("firstName") public Optional getFirstName() { @@ -101,7 +101,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @JsonProperty("lastName") public Optional getLastName() { @@ -120,7 +120,7 @@ public class User { /** * Get email * @return email - */ + */ @JsonProperty("email") public Optional getEmail() { @@ -139,7 +139,7 @@ public class User { /** * Get password * @return password - */ + */ @JsonProperty("password") public Optional getPassword() { @@ -158,7 +158,7 @@ public class User { /** * Get phone * @return phone - */ + */ @JsonProperty("phone") public Optional getPhone() { @@ -177,7 +177,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @JsonProperty("userStatus") public Optional getUserStatus() { diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Category.java index 370637242d4..b673ea45054 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/ModelApiResponse.java index 53f7e3680b6..b4d66a20084 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Order.java index 33e19eb56f4..e5fa009e290 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Pet.java index 4b1baaa3d45..8fa5b0091dc 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Tag.java index 45663a64cd6..5d5c47dae06 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/User.java index c2f0afa0daf..9ba29e03b9a 100644 --- a/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud-3/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud-async/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/model/Pet.java index 65b4dd3f2e5..7f767a771f9 100644 --- a/samples/openapi3/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/model/Pet.java @@ -58,7 +58,7 @@ public class Pet { /** * Get atType * @return atType - */ + */ @NotNull @Schema(name = "@type", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("@type") @@ -78,7 +78,7 @@ public class Pet { /** * Get age * @return age - */ + */ @Schema(name = "age", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("age") @@ -98,7 +98,7 @@ public class Pet { /** * Get happy * @return happy - */ + */ @Schema(name = "happy", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("happy") @@ -118,7 +118,7 @@ public class Pet { /** * Get price * @return price - */ + */ @Valid @Schema(name = "price", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("price") @@ -138,7 +138,7 @@ public class Pet { /** * Get lastFeed * @return lastFeed - */ + */ @Valid @Schema(name = "lastFeed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastFeed") @@ -158,7 +158,7 @@ public class Pet { /** * Get dateOfBirth * @return dateOfBirth - */ + */ @Valid @Schema(name = "dateOfBirth", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateOfBirth") diff --git a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-http-basic/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index ccf63375195..70ed8b09335 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 6881dd234e1..7a124362197 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 295ce50f7d5..be06c451b7b 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index caec6d92651..c73cda71e00 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @Schema(name = "map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_string") @@ -102,7 +102,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @Schema(name = "map_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_number") @@ -130,7 +130,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @Schema(name = "map_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_integer") @@ -158,7 +158,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @Schema(name = "map_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_boolean") @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @Schema(name = "map_array_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_integer") @@ -214,7 +214,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @Schema(name = "map_array_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_anytype") @@ -242,7 +242,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @Schema(name = "map_map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_string") @@ -270,7 +270,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @Schema(name = "map_map_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_anytype") @@ -290,7 +290,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @Schema(name = "anytype_1", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_1") @@ -310,7 +310,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @Schema(name = "anytype_2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_2") @@ -330,7 +330,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @Schema(name = "anytype_3", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_3") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 02be3686067..3b43d0da358 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 5be86fba091..97d02674ec6 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index a47f4357de6..4fdc0b05015 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index ae794e96ff2..9b045ffebb0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Animal.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Animal.java index e761fa91938..eb39e5da3aa 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Animal.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Animal.java @@ -51,7 +51,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @Schema(name = "className", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("className") @@ -71,7 +71,7 @@ public class Animal { /** * Get color * @return color - */ + */ @Schema(name = "color", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("color") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 0278df28903..a3e3f1b1025 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @Schema(name = "ArrayArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayArrayNumber") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index a2ed8c168b3..7a8a5216893 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @Schema(name = "ArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayNumber") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayTest.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayTest.java index fb1a17cd787..b556efec655 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @Schema(name = "array_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @Schema(name = "array_array_of_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @Schema(name = "array_array_of_model", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_model") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/BigCat.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/BigCat.java index cabb5a3d68c..005de19003c 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/BigCat.java @@ -80,7 +80,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @Schema(name = "kind", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("kind") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Capitalization.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Capitalization.java index e9804c9a1e6..7408b8cb7aa 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @Schema(name = "smallCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @Schema(name = "CapitalCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @Schema(name = "small_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @Schema(name = "Capital_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @Schema(name = "SCA_ETH_Flow_Points", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @Schema(name = "ATT_NAME", description = "Name of the pet ", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ATT_NAME") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Cat.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Cat.java index ab5fd547bbe..86c7183a4b8 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Cat.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Cat.java @@ -48,7 +48,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @Schema(name = "declawed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("declawed") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Category.java index 7c98792b6ed..dbcb67bd8bb 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Category.java @@ -37,7 +37,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -57,7 +57,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ChildWithNullable.java index de66f6c719b..46a462be8e3 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -39,7 +39,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @Schema(name = "otherProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("otherProperty") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ClassModel.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ClassModel.java index 9e27d3d33a4..6126b788ded 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "_class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("_class") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Client.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Client.java index afd91d6c5fb..21723cd0378 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Client.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @Schema(name = "client", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("client") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ContainerDefaultValue.java index a6171b29d01..fcd4190208e 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -58,7 +58,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @Schema(name = "nullable_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array") @@ -86,7 +86,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @Schema(name = "nullable_required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("nullable_required_array") @@ -114,7 +114,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @Schema(name = "required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("required_array") @@ -142,7 +142,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @Schema(name = "nullable_array_with_default", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array_with_default") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Dog.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Dog.java index ac1f127cb72..eff7ddb3e89 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Dog.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Dog.java @@ -40,7 +40,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @Schema(name = "breed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("breed") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumArrays.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumArrays.java index afdb86d0c6a..efa05bc32ea 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @Schema(name = "just_symbol", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @Schema(name = "array_enum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_enum") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumTest.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumTest.java index cb3a32cd0d6..d6ed1bfd768 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/EnumTest.java @@ -191,7 +191,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @Schema(name = "enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_string") @@ -211,7 +211,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @Schema(name = "enum_string_required", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("enum_string_required") @@ -231,7 +231,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @Schema(name = "enum_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_integer") @@ -251,7 +251,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @Schema(name = "enum_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_number") @@ -271,7 +271,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @Schema(name = "outerEnum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("outerEnum") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/File.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/File.java index b3a80b466d7..ec96357bbb7 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/File.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @Schema(name = "sourceURI", description = "Test capitalization", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("sourceURI") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FileSchemaTestClass.java index c19c90547ea..0fafd2083e8 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @Schema(name = "file", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @Schema(name = "files", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("files") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FormatTest.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FormatTest.java index 60f96dd9116..06a8ba7ceb3 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/FormatTest.java @@ -73,7 +73,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @Schema(name = "integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("integer") @@ -95,7 +95,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @Schema(name = "int32", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int32") @@ -115,7 +115,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @Schema(name = "int64", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int64") @@ -137,7 +137,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @Schema(name = "number", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number") @@ -159,7 +159,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @Schema(name = "float", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("float") @@ -181,7 +181,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @Schema(name = "double", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("double") @@ -201,7 +201,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @Schema(name = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("string") @@ -221,7 +221,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @Schema(name = "byte", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("byte") @@ -241,7 +241,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @Schema(name = "binary", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("binary") @@ -261,7 +261,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @Schema(name = "date", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("date") @@ -281,7 +281,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -301,7 +301,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -321,7 +321,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @Schema(name = "password", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("password") @@ -341,7 +341,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @Schema(name = "BigDecimal", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("BigDecimal") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index e504791906c..e2088c2e778 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @Schema(name = "foo", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MapTest.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MapTest.java index 36ae89dbc17..65991c277fb 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @Schema(name = "map_map_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @Schema(name = "map_of_enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @Schema(name = "direct_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @Schema(name = "indirect_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("indirect_map") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 020d04b7411..a371a767e67 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @Schema(name = "map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Model200Response.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Model200Response.java index 9ffa25ca597..2a46d99bad5 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("class") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelApiResponse.java index cbdfaeca7dc..8e2e78236c7 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelList.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelList.java index 5bec1e4192a..f77cc933f6d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @Schema(name = "123-list", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123-list") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelReturn.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelReturn.java index 92c63607830..613a20b8a24 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @Schema(name = "return", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("return") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Name.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Name.java index ff9d36c6292..82598b95c2d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Name.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Name.java @@ -42,7 +42,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -62,7 +62,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @Schema(name = "snake_case", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("snake_case") @@ -82,7 +82,7 @@ public class Name { /** * Get property * @return property - */ + */ @Schema(name = "property", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property") @@ -102,7 +102,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @Schema(name = "123Number", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123Number") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NullableMapProperty.java index 0cb8288e402..d31209ccafc 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -45,7 +45,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @Schema(name = "languageValues", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("languageValues") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NumberOnly.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NumberOnly.java index 46b1d19305d..d6ad5164f1c 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @Schema(name = "JustNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("JustNumber") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Order.java index 4c2cf39daf1..9e452a29b1d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/OuterComposite.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/OuterComposite.java index 5ddc334ca0e..9fc1f16c5b4 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @Schema(name = "my_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @Schema(name = "my_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @Schema(name = "my_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_boolean") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java index 1749253b10e..26366e74fb4 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -82,7 +82,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -102,7 +102,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @Schema(name = "nullableProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullableProperty") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Pet.java index e26e3e121f5..b89fdac1060 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Pet.java @@ -94,7 +94,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -114,7 +114,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -134,7 +134,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -162,7 +162,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -191,7 +191,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -212,7 +212,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -223,7 +223,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 83608394b3a..d881cbb0a8b 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @Schema(name = "baz", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("baz") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 5f604c88730..9f6c5494cc9 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @Schema(name = "normalPropertyName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @Schema(name = "UPPER_CASE_PROPERTY_SNAKE", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @Schema(name = "lower-case-property-dashes", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @Schema(name = "property name with spaces", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property name with spaces") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/SpecialModelName.java index 03b736e43ff..9397b3b4a00 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @Schema(name = "$special[property.name]", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("$special[property.name]") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Tag.java index e51dc6e80b9..50945536995 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderDefault.java index 565afa2c58b..72492a54637 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -48,7 +48,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -68,7 +68,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -88,7 +88,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -108,7 +108,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -136,7 +136,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderExample.java index adb27841c55..a04959a2990 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -50,7 +50,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", example = "what", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -70,7 +70,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -90,7 +90,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @Schema(name = "float_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("float_item") @@ -110,7 +110,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", example = "-2", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -130,7 +130,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", example = "true", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -158,7 +158,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", example = "[0,1,2,3]", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/User.java index cf2938851e8..fa92088bda9 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/XmlItem.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/XmlItem.java index 24854aa662a..8aa00e822f0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @Schema(name = "attribute_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @Schema(name = "attribute_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @Schema(name = "attribute_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @Schema(name = "attribute_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @Schema(name = "wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @Schema(name = "name_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @Schema(name = "name_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @Schema(name = "name_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @Schema(name = "name_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @Schema(name = "name_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @Schema(name = "name_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @Schema(name = "prefix_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @Schema(name = "prefix_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @Schema(name = "prefix_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @Schema(name = "prefix_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @Schema(name = "prefix_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @Schema(name = "prefix_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @Schema(name = "namespace_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @Schema(name = "namespace_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @Schema(name = "namespace_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @Schema(name = "namespace_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @Schema(name = "namespace_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @Schema(name = "namespace_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @Schema(name = "prefix_ns_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @Schema(name = "prefix_ns_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @Schema(name = "prefix_ns_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @Schema(name = "prefix_ns_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @Schema(name = "prefix_ns_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @Schema(name = "prefix_ns_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Category.java index ebbaf3dee07..32b5ecfeddf 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Pet.java index b735d6ed92a..68fa4c143f6 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Pet.java @@ -99,7 +99,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -139,7 +139,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -167,7 +167,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -195,7 +195,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -215,7 +215,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @Schema(name = "status", description = "pet status in the store", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-cloud/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-stubs-skip-default-interface/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/User.java b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/client/petstore/spring-stubs/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Addressable.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Addressable.java index aa7c26d30fd..c2ff8401326 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Addressable.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Addressable.java @@ -34,7 +34,7 @@ public class Addressable { /** * Hyperlink reference * @return href - */ + */ @Schema(name = "href", description = "Hyperlink reference", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("href") @@ -54,7 +54,7 @@ public class Addressable { /** * unique identifier * @return id - */ + */ @Schema(name = "id", description = "unique identifier", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Apple.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Apple.java index 923f6c057a0..0188b95dea0 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Apple.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Apple.java @@ -49,7 +49,7 @@ public class Apple implements Fruit { /** * Get seeds * @return seeds - */ + */ @NotNull @Schema(name = "seeds", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("seeds") @@ -69,7 +69,7 @@ public class Apple implements Fruit { /** * Get fruitType * @return fruitType - */ + */ @NotNull @Valid @Schema(name = "fruitType", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("fruitType") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Banana.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Banana.java index 914c78a8f96..c33eae2bc71 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Banana.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Banana.java @@ -49,7 +49,7 @@ public class Banana implements Fruit { /** * Get length * @return length - */ + */ @NotNull @Schema(name = "length", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("length") @@ -69,7 +69,7 @@ public class Banana implements Fruit { /** * Get fruitType * @return fruitType - */ + */ @NotNull @Valid @Schema(name = "fruitType", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("fruitType") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Bar.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Bar.java index e27db392046..2a01186cb84 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Bar.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Bar.java @@ -55,7 +55,7 @@ public class Bar extends Entity implements BarRefOrValue { /** * Get id * @return id - */ + */ @NotNull @Schema(name = "id", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("id") @@ -75,7 +75,7 @@ public class Bar extends Entity implements BarRefOrValue { /** * Get barPropA * @return barPropA - */ + */ @Schema(name = "barPropA", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("barPropA") @@ -95,7 +95,7 @@ public class Bar extends Entity implements BarRefOrValue { /** * Get fooPropB * @return fooPropB - */ + */ @Schema(name = "fooPropB", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("fooPropB") @@ -115,7 +115,7 @@ public class Bar extends Entity implements BarRefOrValue { /** * Get foo * @return foo - */ + */ @Valid @Schema(name = "foo", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/BarCreate.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/BarCreate.java index 32e6dbb3678..ebb633fc78b 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/BarCreate.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/BarCreate.java @@ -54,7 +54,7 @@ public class BarCreate extends Entity { /** * Get barPropA * @return barPropA - */ + */ @Schema(name = "barPropA", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("barPropA") @@ -74,7 +74,7 @@ public class BarCreate extends Entity { /** * Get fooPropB * @return fooPropB - */ + */ @Schema(name = "fooPropB", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("fooPropB") @@ -94,7 +94,7 @@ public class BarCreate extends Entity { /** * Get foo * @return foo - */ + */ @Valid @Schema(name = "foo", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Entity.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Entity.java index 284771ed599..6661e2bee71 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Entity.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Entity.java @@ -67,7 +67,7 @@ public class Entity { /** * Hyperlink reference * @return href - */ + */ @Schema(name = "href", description = "Hyperlink reference", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("href") @@ -87,7 +87,7 @@ public class Entity { /** * unique identifier * @return id - */ + */ @Schema(name = "id", description = "unique identifier", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -107,7 +107,7 @@ public class Entity { /** * A URI to a JSON-Schema file that defines additional attributes and relationships * @return atSchemaLocation - */ + */ @Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@schemaLocation") @@ -127,7 +127,7 @@ public class Entity { /** * When sub-classing, this defines the super-class * @return atBaseType - */ + */ @Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@baseType") @@ -147,7 +147,7 @@ public class Entity { /** * When sub-classing, this defines the sub-class Extensible name * @return atType - */ + */ @NotNull @Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("@type") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/EntityRef.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/EntityRef.java index f0b5f656476..4a4cad51941 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/EntityRef.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/EntityRef.java @@ -68,7 +68,7 @@ public class EntityRef { /** * Name of the related entity. * @return name - */ + */ @Schema(name = "name", description = "Name of the related entity.", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -88,7 +88,7 @@ public class EntityRef { /** * The actual type of the target instance when needed for disambiguation. * @return atReferredType - */ + */ @Schema(name = "@referredType", description = "The actual type of the target instance when needed for disambiguation.", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@referredType") @@ -108,7 +108,7 @@ public class EntityRef { /** * Hyperlink reference * @return href - */ + */ @Schema(name = "href", description = "Hyperlink reference", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("href") @@ -128,7 +128,7 @@ public class EntityRef { /** * unique identifier * @return id - */ + */ @Schema(name = "id", description = "unique identifier", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -148,7 +148,7 @@ public class EntityRef { /** * A URI to a JSON-Schema file that defines additional attributes and relationships * @return atSchemaLocation - */ + */ @Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@schemaLocation") @@ -168,7 +168,7 @@ public class EntityRef { /** * When sub-classing, this defines the super-class * @return atBaseType - */ + */ @Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@baseType") @@ -188,7 +188,7 @@ public class EntityRef { /** * When sub-classing, this defines the sub-class Extensible name * @return atType - */ + */ @NotNull @Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("@type") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Extensible.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Extensible.java index 160cbb673d5..555a8538fb4 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Extensible.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Extensible.java @@ -46,7 +46,7 @@ public class Extensible { /** * A URI to a JSON-Schema file that defines additional attributes and relationships * @return atSchemaLocation - */ + */ @Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@schemaLocation") @@ -66,7 +66,7 @@ public class Extensible { /** * When sub-classing, this defines the super-class * @return atBaseType - */ + */ @Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("@baseType") @@ -86,7 +86,7 @@ public class Extensible { /** * When sub-classing, this defines the sub-class Extensible name * @return atType - */ + */ @NotNull @Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("@type") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Foo.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Foo.java index 25ad0bc6d68..de1d2c73ec1 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Foo.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Foo.java @@ -49,7 +49,7 @@ public class Foo extends Entity implements FooRefOrValue { /** * Get fooPropA * @return fooPropA - */ + */ @Schema(name = "fooPropA", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("fooPropA") @@ -69,7 +69,7 @@ public class Foo extends Entity implements FooRefOrValue { /** * Get fooPropB * @return fooPropB - */ + */ @Schema(name = "fooPropB", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("fooPropB") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/FooRef.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/FooRef.java index 0ab64eee17a..a554c25cc15 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/FooRef.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/FooRef.java @@ -47,7 +47,7 @@ public class FooRef extends EntityRef implements FooRefOrValue { /** * Get foorefPropA * @return foorefPropA - */ + */ @Schema(name = "foorefPropA", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foorefPropA") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pasta.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pasta.java index 94d04f493d5..5b183d02812 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pasta.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pasta.java @@ -47,7 +47,7 @@ public class Pasta extends Entity { /** * Get vendor * @return vendor - */ + */ @Schema(name = "vendor", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("vendor") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pizza.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pizza.java index ff42417f0b7..753fbf72bf1 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pizza.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/Pizza.java @@ -56,7 +56,7 @@ public class Pizza extends Entity { /** * Get pizzaSize * @return pizzaSize - */ + */ @Valid @Schema(name = "pizzaSize", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("pizzaSize") diff --git a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/PizzaSpeziale.java b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/PizzaSpeziale.java index 07cca324df1..0db193af119 100644 --- a/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/PizzaSpeziale.java +++ b/samples/openapi3/server/petstore/spring-boot-oneof/src/main/java/org/openapitools/model/PizzaSpeziale.java @@ -48,7 +48,7 @@ public class PizzaSpeziale extends Pizza { /** * Get toppings * @return toppings - */ + */ @Schema(name = "toppings", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("toppings") diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/spring-boot-springdoc/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Category.java index bd208eedb50..5917b8b26f4 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Category.java @@ -10,6 +10,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -25,7 +26,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "Category") @XmlRootElement(name = "Category") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Category { @@ -38,8 +38,8 @@ public class Category { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Category(Long id, String name) { this.id = id; this.name = name; @@ -53,11 +53,12 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -74,11 +75,12 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/ModelApiResponse.java index c1510ebed19..be9dec71deb 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -11,6 +11,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -27,7 +28,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "ModelApiResponse") @XmlRootElement(name = "ModelApiResponse") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class ModelApiResponse { @@ -42,8 +42,8 @@ public class ModelApiResponse { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelApiResponse(Integer code, String type, String message) { this.code = code; this.type = type; @@ -58,11 +58,12 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @JacksonXmlProperty(localName = "code") + @XmlElement(name = "code") public Integer getCode() { return code; } @@ -79,11 +80,12 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @JacksonXmlProperty(localName = "type") + @XmlElement(name = "type") public String getType() { return type; } @@ -100,11 +102,12 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") @JacksonXmlProperty(localName = "message") + @XmlElement(name = "message") public String getMessage() { return message; } diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Order.java index ea4739c7a8b..a272b1deb4c 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Order.java @@ -13,6 +13,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -28,7 +29,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "Order") @XmlRootElement(name = "Order") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Order { @@ -87,8 +87,8 @@ public class Order { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Order(Long id, Long petId, Integer quantity, OffsetDateTime shipDate, StatusEnum status, Boolean complete) { this.id = id; this.petId = petId; @@ -106,11 +106,12 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -127,11 +128,12 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @JacksonXmlProperty(localName = "petId") + @XmlElement(name = "petId") public Long getPetId() { return petId; } @@ -148,11 +150,12 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @JacksonXmlProperty(localName = "quantity") + @XmlElement(name = "quantity") public Integer getQuantity() { return quantity; } @@ -169,11 +172,12 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @JacksonXmlProperty(localName = "shipDate") + @XmlElement(name = "shipDate") public OffsetDateTime getShipDate() { return shipDate; } @@ -190,11 +194,12 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @JacksonXmlProperty(localName = "status") + @XmlElement(name = "status") public StatusEnum getStatus() { return status; } @@ -211,11 +216,12 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") @JacksonXmlProperty(localName = "complete") + @XmlElement(name = "complete") public Boolean getComplete() { return complete; } diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Pet.java index 6354100a923..70282d91a2a 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Pet.java @@ -16,6 +16,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -31,7 +32,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "Pet") @XmlRootElement(name = "Pet") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Pet { @@ -100,8 +100,8 @@ public class Pet { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Pet(Long id, Category category, String name, List photoUrls, List<@Valid Tag> tags, StatusEnum status) { this.id = id; this.category = category; @@ -119,11 +119,12 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -140,11 +141,12 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @JacksonXmlProperty(localName = "Category") + @XmlElement(name = "Category") public Category getCategory() { return category; } @@ -161,11 +163,12 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } @@ -190,11 +193,14 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @JacksonXmlProperty(localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrl", useWrapping = true) + @XmlElement(name = "photoUrl") + @XmlElementWrapper(name = "photoUrl") public List getPhotoUrls() { return photoUrls; } @@ -219,11 +225,14 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") - @JacksonXmlProperty(localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) + @XmlElement(name = "Tag") + @XmlElementWrapper(name = "tag") public List<@Valid Tag> getTags() { return tags; } @@ -241,11 +250,12 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @JacksonXmlProperty(localName = "status") + @XmlElement(name = "status") @Deprecated public StatusEnum getStatus() { return status; @@ -253,7 +263,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Tag.java index 3834f2ef972..2e47e0a1b17 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/Tag.java @@ -10,6 +10,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -25,7 +26,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "Tag") @XmlRootElement(name = "Tag") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Tag { @@ -38,8 +38,8 @@ public class Tag { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Tag(Long id, String name) { this.id = id; this.name = name; @@ -53,11 +53,12 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -74,11 +75,12 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } diff --git a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/User.java index a8ddac3951a..8cdcb604b1c 100644 --- a/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/springboot-3/src/main/java/org/openapitools/model/User.java @@ -10,6 +10,7 @@ import jakarta.validation.Valid; import jakarta.validation.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.xml.bind.annotation.*; @@ -25,7 +26,6 @@ import jakarta.annotation.Generated; @JacksonXmlRootElement(localName = "User") @XmlRootElement(name = "User") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class User { @@ -50,8 +50,8 @@ public class User { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public User(Long id, String username, String firstName, String lastName, String email, String password, String phone, Integer userStatus) { this.id = id; this.username = username; @@ -71,11 +71,12 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -92,11 +93,12 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @JacksonXmlProperty(localName = "username") + @XmlElement(name = "username") public String getUsername() { return username; } @@ -113,11 +115,12 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @JacksonXmlProperty(localName = "firstName") + @XmlElement(name = "firstName") public String getFirstName() { return firstName; } @@ -134,11 +137,12 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @JacksonXmlProperty(localName = "lastName") + @XmlElement(name = "lastName") public String getLastName() { return lastName; } @@ -155,11 +159,12 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @JacksonXmlProperty(localName = "email") + @XmlElement(name = "email") public String getEmail() { return email; } @@ -176,11 +181,12 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @JacksonXmlProperty(localName = "password") + @XmlElement(name = "password") public String getPassword() { return password; } @@ -197,11 +203,12 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @JacksonXmlProperty(localName = "phone") + @XmlElement(name = "phone") public String getPhone() { return phone; } @@ -218,11 +225,12 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") @JacksonXmlProperty(localName = "userStatus") + @XmlElement(name = "userStatus") public Integer getUserStatus() { return userStatus; } diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index ccf63375195..70ed8b09335 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 6881dd234e1..7a124362197 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 295ce50f7d5..be06c451b7b 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index caec6d92651..c73cda71e00 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @Schema(name = "map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_string") @@ -102,7 +102,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @Schema(name = "map_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_number") @@ -130,7 +130,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @Schema(name = "map_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_integer") @@ -158,7 +158,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @Schema(name = "map_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_boolean") @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @Schema(name = "map_array_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_integer") @@ -214,7 +214,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @Schema(name = "map_array_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_anytype") @@ -242,7 +242,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @Schema(name = "map_map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_string") @@ -270,7 +270,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @Schema(name = "map_map_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_anytype") @@ -290,7 +290,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @Schema(name = "anytype_1", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_1") @@ -310,7 +310,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @Schema(name = "anytype_2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_2") @@ -330,7 +330,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @Schema(name = "anytype_3", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_3") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 02be3686067..3b43d0da358 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 5be86fba091..97d02674ec6 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index a47f4357de6..4fdc0b05015 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index ae794e96ff2..9b045ffebb0 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java index c82a3d8a8ae..818edc2cb5a 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @Schema(name = "className", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @Schema(name = "color", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("color") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 0278df28903..a3e3f1b1025 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @Schema(name = "ArrayArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayArrayNumber") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index a2ed8c168b3..7a8a5216893 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @Schema(name = "ArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayNumber") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java index fb1a17cd787..b556efec655 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @Schema(name = "array_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @Schema(name = "array_array_of_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @Schema(name = "array_array_of_model", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_model") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java index e499e9aa26a..65fcc1ca36e 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java @@ -87,7 +87,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @Schema(name = "kind", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("kind") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java index e9804c9a1e6..7408b8cb7aa 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @Schema(name = "smallCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @Schema(name = "CapitalCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @Schema(name = "small_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @Schema(name = "Capital_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @Schema(name = "SCA_ETH_Flow_Points", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @Schema(name = "ATT_NAME", description = "Name of the pet ", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ATT_NAME") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java index bf614bb89d6..e8c0d1795dd 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java @@ -55,7 +55,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @Schema(name = "declawed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("declawed") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java index ab4860b0fb3..2c649165997 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java @@ -44,7 +44,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -64,7 +64,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java index de66f6c719b..46a462be8e3 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -39,7 +39,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @Schema(name = "otherProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("otherProperty") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java index 9e27d3d33a4..6126b788ded 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "_class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("_class") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java index afd91d6c5fb..21723cd0378 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @Schema(name = "client", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("client") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java index ad3a548f2ff..226b605be00 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -66,7 +66,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @Schema(name = "nullable_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array") @@ -94,7 +94,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @Schema(name = "nullable_required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("nullable_required_array") @@ -122,7 +122,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @Schema(name = "required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("required_array") @@ -150,7 +150,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @Schema(name = "nullable_array_with_default", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array_with_default") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java index 81f91c77bee..c277d3de45c 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java @@ -47,7 +47,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @Schema(name = "breed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("breed") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java index afdb86d0c6a..efa05bc32ea 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @Schema(name = "just_symbol", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @Schema(name = "array_enum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_enum") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java index b222585be9f..0b082336103 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java @@ -198,7 +198,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @Schema(name = "enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_string") @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @Schema(name = "enum_string_required", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("enum_string_required") @@ -238,7 +238,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @Schema(name = "enum_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_integer") @@ -258,7 +258,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @Schema(name = "enum_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_number") @@ -278,7 +278,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @Schema(name = "outerEnum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("outerEnum") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java index b3a80b466d7..ec96357bbb7 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @Schema(name = "sourceURI", description = "Test capitalization", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("sourceURI") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java index c19c90547ea..0fafd2083e8 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @Schema(name = "file", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @Schema(name = "files", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("files") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java index 69c619a4ff5..0c78c317222 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java @@ -83,7 +83,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @Schema(name = "integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("integer") @@ -105,7 +105,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @Schema(name = "int32", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int32") @@ -125,7 +125,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @Schema(name = "int64", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int64") @@ -147,7 +147,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @Schema(name = "number", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number") @@ -169,7 +169,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @Schema(name = "float", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("float") @@ -191,7 +191,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @Schema(name = "double", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("double") @@ -211,7 +211,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @Schema(name = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("string") @@ -231,7 +231,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @Schema(name = "byte", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("byte") @@ -251,7 +251,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @Schema(name = "binary", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("binary") @@ -271,7 +271,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @Schema(name = "date", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("date") @@ -291,7 +291,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -311,7 +311,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -331,7 +331,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @Schema(name = "password", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("password") @@ -351,7 +351,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @Schema(name = "BigDecimal", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("BigDecimal") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index e504791906c..e2088c2e778 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @Schema(name = "foo", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java index 36ae89dbc17..65991c277fb 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @Schema(name = "map_map_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @Schema(name = "map_of_enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @Schema(name = "direct_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @Schema(name = "indirect_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("indirect_map") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 020d04b7411..a371a767e67 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @Schema(name = "map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java index 9ffa25ca597..2a46d99bad5 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("class") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java index cbdfaeca7dc..8e2e78236c7 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java index 5bec1e4192a..f77cc933f6d 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @Schema(name = "123-list", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123-list") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java index 92c63607830..613a20b8a24 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @Schema(name = "return", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("return") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java index 1309621e88f..078e4b6cb88 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java @@ -49,7 +49,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -69,7 +69,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @Schema(name = "snake_case", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("snake_case") @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - */ + */ @Schema(name = "property", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property") @@ -109,7 +109,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @Schema(name = "123Number", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123Number") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java index 0cb8288e402..d31209ccafc 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -45,7 +45,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @Schema(name = "languageValues", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("languageValues") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java index 46b1d19305d..d6ad5164f1c 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @Schema(name = "JustNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("JustNumber") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java index 4c2cf39daf1..9e452a29b1d 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java index 5ddc334ca0e..9fc1f16c5b4 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @Schema(name = "my_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @Schema(name = "my_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @Schema(name = "my_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_boolean") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java index 1749253b10e..26366e74fb4 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -82,7 +82,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -102,7 +102,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @Schema(name = "nullableProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullableProperty") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java index 780b2ff19f4..f9990b4d4b9 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java @@ -102,7 +102,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -122,7 +122,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -142,7 +142,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -170,7 +170,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -199,7 +199,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -220,7 +220,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -231,7 +231,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 83608394b3a..d881cbb0a8b 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @Schema(name = "baz", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("baz") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 5f604c88730..9f6c5494cc9 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @Schema(name = "normalPropertyName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @Schema(name = "UPPER_CASE_PROPERTY_SNAKE", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @Schema(name = "lower-case-property-dashes", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @Schema(name = "property name with spaces", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property name with spaces") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java index 03b736e43ff..9397b3b4a00 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @Schema(name = "$special[property.name]", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("$special[property.name]") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java index e51dc6e80b9..50945536995 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java index c724cf1aa72..3155f598ad3 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -59,7 +59,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -79,7 +79,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -99,7 +99,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -119,7 +119,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -147,7 +147,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java index eef6062e39e..202e1a07b43 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -62,7 +62,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", example = "what", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @Schema(name = "float_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("float_item") @@ -122,7 +122,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", example = "-2", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -142,7 +142,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", example = "true", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -170,7 +170,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", example = "[0,1,2,3]", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java index cf2938851e8..fa92088bda9 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java index 24854aa662a..8aa00e822f0 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @Schema(name = "attribute_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @Schema(name = "attribute_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @Schema(name = "attribute_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @Schema(name = "attribute_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @Schema(name = "wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @Schema(name = "name_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @Schema(name = "name_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @Schema(name = "name_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @Schema(name = "name_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @Schema(name = "name_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @Schema(name = "name_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @Schema(name = "prefix_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @Schema(name = "prefix_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @Schema(name = "prefix_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @Schema(name = "prefix_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @Schema(name = "prefix_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @Schema(name = "prefix_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @Schema(name = "namespace_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @Schema(name = "namespace_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @Schema(name = "namespace_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @Schema(name = "namespace_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @Schema(name = "namespace_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @Schema(name = "namespace_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @Schema(name = "prefix_ns_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @Schema(name = "prefix_ns_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @Schema(name = "prefix_ns_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @Schema(name = "prefix_ns_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @Schema(name = "prefix_ns_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @Schema(name = "prefix_ns_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index ccf63375195..70ed8b09335 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 6881dd234e1..7a124362197 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 295ce50f7d5..be06c451b7b 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index caec6d92651..c73cda71e00 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @Schema(name = "map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_string") @@ -102,7 +102,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @Schema(name = "map_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_number") @@ -130,7 +130,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @Schema(name = "map_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_integer") @@ -158,7 +158,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @Schema(name = "map_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_boolean") @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @Schema(name = "map_array_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_integer") @@ -214,7 +214,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @Schema(name = "map_array_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_anytype") @@ -242,7 +242,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @Schema(name = "map_map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_string") @@ -270,7 +270,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @Schema(name = "map_map_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_anytype") @@ -290,7 +290,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @Schema(name = "anytype_1", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_1") @@ -310,7 +310,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @Schema(name = "anytype_2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_2") @@ -330,7 +330,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @Schema(name = "anytype_3", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_3") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 02be3686067..3b43d0da358 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 5be86fba091..97d02674ec6 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index a47f4357de6..4fdc0b05015 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index ae794e96ff2..9b045ffebb0 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java index c82a3d8a8ae..818edc2cb5a 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @Schema(name = "className", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @Schema(name = "color", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("color") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 0278df28903..a3e3f1b1025 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @Schema(name = "ArrayArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayArrayNumber") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index a2ed8c168b3..7a8a5216893 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @Schema(name = "ArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayNumber") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java index fb1a17cd787..b556efec655 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @Schema(name = "array_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @Schema(name = "array_array_of_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @Schema(name = "array_array_of_model", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_model") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java index e499e9aa26a..65fcc1ca36e 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java @@ -87,7 +87,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @Schema(name = "kind", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("kind") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java index e9804c9a1e6..7408b8cb7aa 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @Schema(name = "smallCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @Schema(name = "CapitalCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @Schema(name = "small_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @Schema(name = "Capital_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @Schema(name = "SCA_ETH_Flow_Points", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @Schema(name = "ATT_NAME", description = "Name of the pet ", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ATT_NAME") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java index bf614bb89d6..e8c0d1795dd 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java @@ -55,7 +55,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @Schema(name = "declawed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("declawed") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java index ab4860b0fb3..2c649165997 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java @@ -44,7 +44,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -64,7 +64,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java index de66f6c719b..46a462be8e3 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -39,7 +39,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @Schema(name = "otherProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("otherProperty") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java index 9e27d3d33a4..6126b788ded 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "_class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("_class") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java index afd91d6c5fb..21723cd0378 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @Schema(name = "client", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("client") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java index ad3a548f2ff..226b605be00 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -66,7 +66,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @Schema(name = "nullable_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array") @@ -94,7 +94,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @Schema(name = "nullable_required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("nullable_required_array") @@ -122,7 +122,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @Schema(name = "required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("required_array") @@ -150,7 +150,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @Schema(name = "nullable_array_with_default", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array_with_default") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java index 81f91c77bee..c277d3de45c 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java @@ -47,7 +47,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @Schema(name = "breed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("breed") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java index afdb86d0c6a..efa05bc32ea 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @Schema(name = "just_symbol", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @Schema(name = "array_enum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_enum") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java index b222585be9f..0b082336103 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java @@ -198,7 +198,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @Schema(name = "enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_string") @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @Schema(name = "enum_string_required", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("enum_string_required") @@ -238,7 +238,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @Schema(name = "enum_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_integer") @@ -258,7 +258,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @Schema(name = "enum_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_number") @@ -278,7 +278,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @Schema(name = "outerEnum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("outerEnum") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java index b3a80b466d7..ec96357bbb7 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @Schema(name = "sourceURI", description = "Test capitalization", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("sourceURI") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java index c19c90547ea..0fafd2083e8 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @Schema(name = "file", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @Schema(name = "files", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("files") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java index 69c619a4ff5..0c78c317222 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java @@ -83,7 +83,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @Schema(name = "integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("integer") @@ -105,7 +105,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @Schema(name = "int32", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int32") @@ -125,7 +125,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @Schema(name = "int64", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int64") @@ -147,7 +147,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @Schema(name = "number", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number") @@ -169,7 +169,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @Schema(name = "float", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("float") @@ -191,7 +191,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @Schema(name = "double", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("double") @@ -211,7 +211,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @Schema(name = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("string") @@ -231,7 +231,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @Schema(name = "byte", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("byte") @@ -251,7 +251,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @Schema(name = "binary", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("binary") @@ -271,7 +271,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @Schema(name = "date", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("date") @@ -291,7 +291,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -311,7 +311,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -331,7 +331,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @Schema(name = "password", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("password") @@ -351,7 +351,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @Schema(name = "BigDecimal", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("BigDecimal") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index e504791906c..e2088c2e778 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @Schema(name = "foo", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java index 36ae89dbc17..65991c277fb 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @Schema(name = "map_map_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @Schema(name = "map_of_enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @Schema(name = "direct_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @Schema(name = "indirect_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("indirect_map") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 020d04b7411..a371a767e67 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @Schema(name = "map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java index 9ffa25ca597..2a46d99bad5 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("class") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java index cbdfaeca7dc..8e2e78236c7 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java index 5bec1e4192a..f77cc933f6d 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @Schema(name = "123-list", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123-list") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java index 92c63607830..613a20b8a24 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @Schema(name = "return", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("return") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java index 1309621e88f..078e4b6cb88 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java @@ -49,7 +49,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -69,7 +69,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @Schema(name = "snake_case", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("snake_case") @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - */ + */ @Schema(name = "property", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property") @@ -109,7 +109,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @Schema(name = "123Number", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123Number") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java index 0cb8288e402..d31209ccafc 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -45,7 +45,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @Schema(name = "languageValues", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("languageValues") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java index 46b1d19305d..d6ad5164f1c 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @Schema(name = "JustNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("JustNumber") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java index 4c2cf39daf1..9e452a29b1d 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java index 5ddc334ca0e..9fc1f16c5b4 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @Schema(name = "my_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @Schema(name = "my_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @Schema(name = "my_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_boolean") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java index 1749253b10e..26366e74fb4 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -82,7 +82,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -102,7 +102,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @Schema(name = "nullableProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullableProperty") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java index 780b2ff19f4..f9990b4d4b9 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java @@ -102,7 +102,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -122,7 +122,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -142,7 +142,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -170,7 +170,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -199,7 +199,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -220,7 +220,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -231,7 +231,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 83608394b3a..d881cbb0a8b 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @Schema(name = "baz", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("baz") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 5f604c88730..9f6c5494cc9 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @Schema(name = "normalPropertyName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @Schema(name = "UPPER_CASE_PROPERTY_SNAKE", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @Schema(name = "lower-case-property-dashes", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @Schema(name = "property name with spaces", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property name with spaces") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java index 03b736e43ff..9397b3b4a00 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @Schema(name = "$special[property.name]", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("$special[property.name]") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java index e51dc6e80b9..50945536995 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java index c724cf1aa72..3155f598ad3 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -59,7 +59,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -79,7 +79,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -99,7 +99,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -119,7 +119,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -147,7 +147,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java index eef6062e39e..202e1a07b43 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -62,7 +62,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", example = "what", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @Schema(name = "float_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("float_item") @@ -122,7 +122,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", example = "-2", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -142,7 +142,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", example = "true", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -170,7 +170,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", example = "[0,1,2,3]", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java index cf2938851e8..fa92088bda9 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java index 24854aa662a..8aa00e822f0 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @Schema(name = "attribute_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @Schema(name = "attribute_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @Schema(name = "attribute_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @Schema(name = "attribute_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @Schema(name = "wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @Schema(name = "name_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @Schema(name = "name_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @Schema(name = "name_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @Schema(name = "name_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @Schema(name = "name_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @Schema(name = "name_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @Schema(name = "prefix_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @Schema(name = "prefix_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @Schema(name = "prefix_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @Schema(name = "prefix_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @Schema(name = "prefix_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @Schema(name = "prefix_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @Schema(name = "namespace_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @Schema(name = "namespace_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @Schema(name = "namespace_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @Schema(name = "namespace_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @Schema(name = "namespace_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @Schema(name = "namespace_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @Schema(name = "prefix_ns_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @Schema(name = "prefix_ns_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @Schema(name = "prefix_ns_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @Schema(name = "prefix_ns_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @Schema(name = "prefix_ns_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @Schema(name = "prefix_ns_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Category.java index e72bc5e208b..629a49c7b1b 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Category.java @@ -32,7 +32,7 @@ public class Category { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -51,7 +51,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @JsonProperty("name") public String getName() { diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/ModelApiResponse.java index b67c9219958..a688be43078 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -36,7 +36,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @JsonProperty("code") public Integer getCode() { @@ -55,7 +55,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @JsonProperty("type") public String getType() { @@ -74,7 +74,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @JsonProperty("message") public String getMessage() { diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Order.java index f42addfd951..44836427f48 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Order.java @@ -81,7 +81,7 @@ public class Order { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -100,7 +100,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @JsonProperty("petId") public Long getPetId() { @@ -119,7 +119,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @JsonProperty("quantity") public Integer getQuantity() { @@ -138,7 +138,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @JsonProperty("shipDate") public OffsetDateTime getShipDate() { @@ -157,7 +157,7 @@ public class Order { /** * Order Status * @return status - */ + */ @JsonProperty("status") public StatusEnum getStatus() { @@ -176,7 +176,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @JsonProperty("complete") public Boolean getComplete() { diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Pet.java index 1a6771689c4..2cfd01b3902 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Pet.java @@ -98,7 +98,7 @@ public class Pet { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -117,7 +117,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @JsonProperty("category") public Category getCategory() { @@ -136,7 +136,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { @@ -163,7 +163,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @JsonProperty("photoUrls") public List getPhotoUrls() { @@ -190,7 +190,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @JsonProperty("tags") public List<@Valid Tag> getTags() { @@ -210,7 +210,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @JsonProperty("status") @Deprecated @@ -220,7 +220,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Tag.java index c287674666e..d754b75d6a1 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/Tag.java @@ -32,7 +32,7 @@ public class Tag { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -51,7 +51,7 @@ public class Tag { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/User.java index d6044eeb785..e64e514efd1 100644 --- a/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/springboot-source/src/main/java/org/openapitools/model/User.java @@ -44,7 +44,7 @@ public class User { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -63,7 +63,7 @@ public class User { /** * Get username * @return username - */ + */ @JsonProperty("username") public String getUsername() { @@ -82,7 +82,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @JsonProperty("firstName") public String getFirstName() { @@ -101,7 +101,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @JsonProperty("lastName") public String getLastName() { @@ -120,7 +120,7 @@ public class User { /** * Get email * @return email - */ + */ @JsonProperty("email") public String getEmail() { @@ -139,7 +139,7 @@ public class User { /** * Get password * @return password - */ + */ @JsonProperty("password") public String getPassword() { @@ -158,7 +158,7 @@ public class User { /** * Get phone * @return phone - */ + */ @JsonProperty("phone") public String getPhone() { @@ -177,7 +177,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @JsonProperty("userStatus") public Integer getUserStatus() { diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Category.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Category.java index 38df5004569..c43530017f0 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Category.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Category.java @@ -34,7 +34,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/ModelApiResponse.java index 5cf7f8d2c1c..2fe0744b759 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Order.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Order.java index 41b44e207bc..8d901a7a909 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Order.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Pet.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Pet.java index 3b189e40e65..3c1deb5719d 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Pet.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Pet.java @@ -100,7 +100,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -120,7 +120,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -140,7 +140,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -168,7 +168,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -196,7 +196,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -217,7 +217,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -228,7 +228,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Tag.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Tag.java index 70c7259427b..5147e0d0be0 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Tag.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/User.java b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/User.java index 1806e342c6d..888a0fa11a1 100644 --- a/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/User.java +++ b/samples/openapi3/server/petstore/springboot/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Category.java index 40572942859..3f88e13d895 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Category.java @@ -11,6 +11,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -26,7 +27,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "Category") @XmlRootElement(name = "Category") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Category { @@ -42,11 +42,12 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -63,11 +64,12 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/ModelApiResponse.java index 2694998b250..e84740d7a1e 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -12,6 +12,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -28,7 +29,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "ModelApiResponse") @XmlRootElement(name = "ModelApiResponse") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class ModelApiResponse { @@ -46,11 +46,12 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @JacksonXmlProperty(localName = "code") + @XmlElement(name = "code") public Integer getCode() { return code; } @@ -67,11 +68,12 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @JacksonXmlProperty(localName = "type") + @XmlElement(name = "type") public String getType() { return type; } @@ -88,11 +90,12 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") @JacksonXmlProperty(localName = "message") + @XmlElement(name = "message") public String getMessage() { return message; } diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Order.java index 0d03894d4e5..b94cabad22f 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Order.java @@ -14,6 +14,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -29,7 +30,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "Order") @XmlRootElement(name = "Order") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Order { @@ -91,11 +91,12 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -112,11 +113,12 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @JacksonXmlProperty(localName = "petId") + @XmlElement(name = "petId") public Long getPetId() { return petId; } @@ -133,11 +135,12 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @JacksonXmlProperty(localName = "quantity") + @XmlElement(name = "quantity") public Integer getQuantity() { return quantity; } @@ -154,11 +157,12 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @JacksonXmlProperty(localName = "shipDate") + @XmlElement(name = "shipDate") public Date getShipDate() { return shipDate; } @@ -175,11 +179,12 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @JacksonXmlProperty(localName = "status") + @XmlElement(name = "status") public StatusEnum getStatus() { return status; } @@ -196,11 +201,12 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") @JacksonXmlProperty(localName = "complete") + @XmlElement(name = "complete") public Boolean getComplete() { return complete; } diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Pet.java index 0c170455ef5..14562f78fb3 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Pet.java @@ -17,6 +17,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -32,7 +33,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "Pet") @XmlRootElement(name = "Pet") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Pet { @@ -108,11 +108,12 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -129,11 +130,12 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @JacksonXmlProperty(localName = "Category") + @XmlElement(name = "Category") public Category getCategory() { return category; } @@ -150,11 +152,12 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } @@ -179,11 +182,14 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @JacksonXmlProperty(localName = "photoUrl") + @JacksonXmlElementWrapper(localName = "photoUrl", useWrapping = true) + @XmlElement(name = "photoUrl") + @XmlElementWrapper(name = "photoUrl") public List getPhotoUrls() { return photoUrls; } @@ -208,11 +214,14 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") - @JacksonXmlProperty(localName = "tag") + @JacksonXmlProperty(localName = "Tag") + @JacksonXmlElementWrapper(localName = "tag", useWrapping = true) + @XmlElement(name = "Tag") + @XmlElementWrapper(name = "tag") public List<@Valid Tag> getTags() { return tags; } @@ -230,11 +239,12 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @JacksonXmlProperty(localName = "status") + @XmlElement(name = "status") @Deprecated public StatusEnum getStatus() { return status; @@ -242,7 +252,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Tag.java index 733478d43a2..47534cc67ba 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/Tag.java @@ -11,6 +11,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -26,7 +27,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "Tag") @XmlRootElement(name = "Tag") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class Tag { @@ -42,11 +42,12 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -63,11 +64,12 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @JacksonXmlProperty(localName = "name") + @XmlElement(name = "name") public String getName() { return name; } diff --git a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/User.java index 38a8a5c95dd..7a408335162 100644 --- a/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/java-camel/src/main/java/org/openapitools/model/User.java @@ -11,6 +11,7 @@ import javax.validation.constraints.*; import org.hibernate.validator.constraints.*; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; +import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper; import io.swagger.v3.oas.annotations.media.Schema; import javax.xml.bind.annotation.*; @@ -26,7 +27,6 @@ import javax.annotation.Generated; @JacksonXmlRootElement(localName = "User") @XmlRootElement(name = "User") @XmlAccessorType(XmlAccessType.FIELD) - @Generated(value = "org.openapitools.codegen.languages.JavaCamelServerCodegen", comments = "Generator version: 7.7.0-SNAPSHOT") public class User { @@ -54,11 +54,12 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @JacksonXmlProperty(localName = "id") + @XmlElement(name = "id") public Long getId() { return id; } @@ -75,11 +76,12 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @JacksonXmlProperty(localName = "username") + @XmlElement(name = "username") public String getUsername() { return username; } @@ -96,11 +98,12 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @JacksonXmlProperty(localName = "firstName") + @XmlElement(name = "firstName") public String getFirstName() { return firstName; } @@ -117,11 +120,12 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @JacksonXmlProperty(localName = "lastName") + @XmlElement(name = "lastName") public String getLastName() { return lastName; } @@ -138,11 +142,12 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @JacksonXmlProperty(localName = "email") + @XmlElement(name = "email") public String getEmail() { return email; } @@ -159,11 +164,12 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @JacksonXmlProperty(localName = "password") + @XmlElement(name = "password") public String getPassword() { return password; } @@ -180,11 +186,12 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @JacksonXmlProperty(localName = "phone") + @XmlElement(name = "phone") public String getPhone() { return phone; } @@ -201,11 +208,12 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") @JacksonXmlProperty(localName = "userStatus") + @XmlElement(name = "userStatus") public Integer getUserStatus() { return userStatus; } diff --git a/samples/server/petstore/java-helidon-server/v3/mp/src/main/resources/META-INF/openapi.yml b/samples/server/petstore/java-helidon-server/v3/mp/src/main/resources/META-INF/openapi.yml index 6fc0968bc33..a08bc26cc14 100644 --- a/samples/server/petstore/java-helidon-server/v3/mp/src/main/resources/META-INF/openapi.yml +++ b/samples/server/petstore/java-helidon-server/v3/mp/src/main/resources/META-INF/openapi.yml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/server/petstore/java-helidon-server/v3/se/src/main/resources/META-INF/openapi.yml b/samples/server/petstore/java-helidon-server/v3/se/src/main/resources/META-INF/openapi.yml index 6fc0968bc33..a08bc26cc14 100644 --- a/samples/server/petstore/java-helidon-server/v3/se/src/main/resources/META-INF/openapi.yml +++ b/samples/server/petstore/java-helidon-server/v3/se/src/main/resources/META-INF/openapi.yml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/server/petstore/java-helidon-server/v4/mp/src/main/resources/META-INF/openapi.yml b/samples/server/petstore/java-helidon-server/v4/mp/src/main/resources/META-INF/openapi.yml index 6fc0968bc33..a08bc26cc14 100644 --- a/samples/server/petstore/java-helidon-server/v4/mp/src/main/resources/META-INF/openapi.yml +++ b/samples/server/petstore/java-helidon-server/v4/mp/src/main/resources/META-INF/openapi.yml @@ -1560,10 +1560,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Category.java index d5cb5b5c95d..93959c01a43 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Category.java @@ -51,7 +51,7 @@ public class Category { /** * Get id * @return id - **/ + */ @Nullable @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_ID) @@ -74,7 +74,7 @@ public class Category { /** * Get name * @return name - **/ + */ @Nullable @Pattern(regexp="^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/ModelApiResponse.java index e34eb911efe..9074d6ad307 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -56,7 +56,7 @@ public class ModelApiResponse { /** * Get code * @return code - **/ + */ @Nullable @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_CODE) @@ -79,7 +79,7 @@ public class ModelApiResponse { /** * Get type * @return type - **/ + */ @Nullable @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_TYPE) @@ -102,7 +102,7 @@ public class ModelApiResponse { /** * Get message * @return message - **/ + */ @Nullable @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_MESSAGE) diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Order.java index 0df44b72f89..eadc2e3553e 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Order.java @@ -102,7 +102,7 @@ public class Order { /** * Get id * @return id - **/ + */ @Nullable @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_ID) @@ -125,7 +125,7 @@ public class Order { /** * Get petId * @return petId - **/ + */ @Nullable @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_PET_ID) @@ -148,7 +148,7 @@ public class Order { /** * Get quantity * @return quantity - **/ + */ @Nullable @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_QUANTITY) @@ -171,7 +171,7 @@ public class Order { /** * Get shipDate * @return shipDate - **/ + */ @Nullable @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_SHIP_DATE) @@ -196,7 +196,7 @@ public class Order { /** * Order Status * @return status - **/ + */ @Nullable @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_STATUS) @@ -219,7 +219,7 @@ public class Order { /** * Get complete * @return complete - **/ + */ @Nullable @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_COMPLETE) diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Pet.java index 52eed442b94..a212b39a869 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Pet.java @@ -108,7 +108,7 @@ public class Pet { /** * Get id * @return id - **/ + */ @Nullable @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_ID) @@ -131,7 +131,7 @@ public class Pet { /** * Get category * @return category - **/ + */ @Valid @Nullable @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @@ -155,7 +155,7 @@ public class Pet { /** * Get name * @return name - **/ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty(JSON_PROPERTY_NAME) @@ -183,7 +183,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - **/ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @@ -214,7 +214,7 @@ public class Pet { /** * Get tags * @return tags - **/ + */ @Nullable @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_TAGS) @@ -237,7 +237,7 @@ public class Pet { /** * pet status in the store * @return status - **/ + */ @Nullable @Schema(name = "status", description = "pet status in the store", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_STATUS) diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Tag.java index 44d88479113..d93647d8350 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/Tag.java @@ -51,7 +51,7 @@ public class Tag { /** * Get id * @return id - **/ + */ @Nullable @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_ID) @@ -74,7 +74,7 @@ public class Tag { /** * Get name * @return name - **/ + */ @Nullable @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_NAME) diff --git a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/User.java index 13ce30f2703..dfc61fbfc7a 100644 --- a/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/java-micronaut-server/src/main/java/org/openapitools/model/User.java @@ -75,7 +75,7 @@ public class User { /** * Get id * @return id - **/ + */ @Nullable @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_ID) @@ -98,7 +98,7 @@ public class User { /** * Get username * @return username - **/ + */ @Nullable @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_USERNAME) @@ -121,7 +121,7 @@ public class User { /** * Get firstName * @return firstName - **/ + */ @Nullable @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_FIRST_NAME) @@ -144,7 +144,7 @@ public class User { /** * Get lastName * @return lastName - **/ + */ @Nullable @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_LAST_NAME) @@ -167,7 +167,7 @@ public class User { /** * Get email * @return email - **/ + */ @Nullable @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_EMAIL) @@ -190,7 +190,7 @@ public class User { /** * Get password * @return password - **/ + */ @Nullable @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_PASSWORD) @@ -213,7 +213,7 @@ public class User { /** * Get phone * @return phone - **/ + */ @Nullable @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_PHONE) @@ -236,7 +236,7 @@ public class User { /** * User Status * @return userStatus - **/ + */ @Nullable @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty(JSON_PROPERTY_USER_STATUS) diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Category.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Category.java index 2437bd1de6d..27b1cee8d49 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Category.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Category.java @@ -26,7 +26,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A category for a pet - **/ + */ public class Category { @@ -38,10 +38,10 @@ public class Category { private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -49,8 +49,8 @@ public class Category { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -62,10 +62,10 @@ public class Category { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getName() { @@ -73,8 +73,8 @@ public class Category { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setName(String name) { @@ -88,8 +88,8 @@ public class Category { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/ModelApiResponse.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/ModelApiResponse.java index 915f8a093e5..95ea601a2ed 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/ModelApiResponse.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/ModelApiResponse.java @@ -28,7 +28,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; @JsonTypeName("ApiResponse") /** * Describes the result of uploading an image resource - **/ + */ public class ModelApiResponse { @@ -44,10 +44,10 @@ public class ModelApiResponse { private String message; - /** + /** * Get code * @return code - **/ + **/ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getCode() { @@ -55,8 +55,8 @@ public class ModelApiResponse { } /** - * Set code - **/ + * Set code + */ @JsonProperty(JSON_PROPERTY_CODE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCode(Integer code) { @@ -68,10 +68,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get type * @return type - **/ + **/ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getType() { @@ -79,8 +79,8 @@ public class ModelApiResponse { } /** - * Set type - **/ + * Set type + */ @JsonProperty(JSON_PROPERTY_TYPE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setType(String type) { @@ -92,10 +92,10 @@ public class ModelApiResponse { return this; } - /** + /** * Get message * @return message - **/ + **/ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getMessage() { @@ -103,8 +103,8 @@ public class ModelApiResponse { } /** - * Set message - **/ + * Set message + */ @JsonProperty(JSON_PROPERTY_MESSAGE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setMessage(String message) { @@ -118,8 +118,8 @@ public class ModelApiResponse { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Order.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Order.java index 977251b712e..2a4482666e1 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Order.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Order.java @@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * An order for a pets from the pet store - **/ + */ public class Order { @@ -85,8 +85,8 @@ public class Order { public static final String JSON_PROPERTY_STATUS = "status"; /** - * Order Status - **/ + * Order Status + */ private StatusEnum status; @@ -94,10 +94,10 @@ public class Order { private Boolean complete = false; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -105,8 +105,8 @@ public class Order { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -118,10 +118,10 @@ public class Order { return this; } - /** + /** * Get petId * @return petId - **/ + **/ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getPetId() { @@ -129,8 +129,8 @@ public class Order { } /** - * Set petId - **/ + * Set petId + */ @JsonProperty(JSON_PROPERTY_PET_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPetId(Long petId) { @@ -142,10 +142,10 @@ public class Order { return this; } - /** + /** * Get quantity * @return quantity - **/ + **/ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getQuantity() { @@ -153,8 +153,8 @@ public class Order { } /** - * Set quantity - **/ + * Set quantity + */ @JsonProperty(JSON_PROPERTY_QUANTITY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setQuantity(Integer quantity) { @@ -166,10 +166,10 @@ public class Order { return this; } - /** + /** * Get shipDate * @return shipDate - **/ + **/ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Date getShipDate() { @@ -177,8 +177,8 @@ public class Order { } /** - * Set shipDate - **/ + * Set shipDate + */ @JsonProperty(JSON_PROPERTY_SHIP_DATE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setShipDate(Date shipDate) { @@ -190,10 +190,10 @@ public class Order { return this; } - /** + /** * Order Status * @return status - **/ + **/ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public StatusEnum getStatus() { @@ -201,8 +201,8 @@ public class Order { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setStatus(StatusEnum status) { @@ -214,10 +214,10 @@ public class Order { return this; } - /** + /** * Get complete * @return complete - **/ + **/ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Boolean getComplete() { @@ -225,8 +225,8 @@ public class Order { } /** - * Set complete - **/ + * Set complete + */ @JsonProperty(JSON_PROPERTY_COMPLETE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setComplete(Boolean complete) { @@ -240,8 +240,8 @@ public class Order { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Pet.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Pet.java index 48be5c7f12f..881a1d6b516 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Pet.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Pet.java @@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A pet for sale in the pet store - **/ + */ public class Pet { @@ -93,15 +93,15 @@ public class Pet { public static final String JSON_PROPERTY_STATUS = "status"; /** - * pet status in the store - **/ + * pet status in the store + */ private StatusEnum status; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -109,8 +109,8 @@ public class Pet { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -122,10 +122,10 @@ public class Pet { return this; } - /** + /** * Get category * @return category - **/ + **/ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Category getCategory() { @@ -133,8 +133,8 @@ public class Pet { } /** - * Set category - **/ + * Set category + */ @JsonProperty(JSON_PROPERTY_CATEGORY) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCategory(Category category) { @@ -146,10 +146,10 @@ public class Pet { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) public String getName() { @@ -157,8 +157,8 @@ public class Pet { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.ALWAYS) public void setName(String name) { @@ -170,10 +170,10 @@ public class Pet { return this; } - /** + /** * Get photoUrls * @return photoUrls - **/ + **/ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) public List getPhotoUrls() { @@ -181,8 +181,8 @@ public class Pet { } /** - * Set photoUrls - **/ + * Set photoUrls + */ @JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonInclude(value = JsonInclude.Include.ALWAYS) public void setPhotoUrls(List photoUrls) { @@ -202,10 +202,10 @@ public class Pet { return this; } - /** + /** * Get tags * @return tags - **/ + **/ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getTags() { @@ -213,8 +213,8 @@ public class Pet { } /** - * Set tags - **/ + * Set tags + */ @JsonProperty(JSON_PROPERTY_TAGS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setTags(List tags) { @@ -234,11 +234,11 @@ public class Pet { return this; } - /** + /** * pet status in the store * @return status * @deprecated - **/ + **/ @Deprecated @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -247,8 +247,8 @@ public class Pet { } /** - * Set status - **/ + * Set status + */ @JsonProperty(JSON_PROPERTY_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setStatus(StatusEnum status) { @@ -262,8 +262,8 @@ public class Pet { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Tag.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Tag.java index fc166497373..662d5fbfa9c 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Tag.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/Tag.java @@ -26,7 +26,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A tag for a pet - **/ + */ public class Tag { @@ -38,10 +38,10 @@ public class Tag { private String name; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -49,8 +49,8 @@ public class Tag { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -62,10 +62,10 @@ public class Tag { return this; } - /** + /** * Get name * @return name - **/ + **/ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getName() { @@ -73,8 +73,8 @@ public class Tag { } /** - * Set name - **/ + * Set name + */ @JsonProperty(JSON_PROPERTY_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setName(String name) { @@ -88,8 +88,8 @@ public class Tag { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/User.java b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/User.java index f340936ab0c..85f00932850 100644 --- a/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/User.java +++ b/samples/server/petstore/java-microprofile/src/main/java/org/openapitools/server/model/User.java @@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonTypeName; }) /** * A User who is purchasing from the pet store - **/ + */ public class User { @@ -66,15 +66,15 @@ public class User { public static final String JSON_PROPERTY_USER_STATUS = "userStatus"; /** - * User Status - **/ + * User Status + */ private Integer userStatus; - /** + /** * Get id * @return id - **/ + **/ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Long getId() { @@ -82,8 +82,8 @@ public class User { } /** - * Set id - **/ + * Set id + */ @JsonProperty(JSON_PROPERTY_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setId(Long id) { @@ -95,10 +95,10 @@ public class User { return this; } - /** + /** * Get username * @return username - **/ + **/ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getUsername() { @@ -106,8 +106,8 @@ public class User { } /** - * Set username - **/ + * Set username + */ @JsonProperty(JSON_PROPERTY_USERNAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setUsername(String username) { @@ -119,10 +119,10 @@ public class User { return this; } - /** + /** * Get firstName * @return firstName - **/ + **/ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getFirstName() { @@ -130,8 +130,8 @@ public class User { } /** - * Set firstName - **/ + * Set firstName + */ @JsonProperty(JSON_PROPERTY_FIRST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setFirstName(String firstName) { @@ -143,10 +143,10 @@ public class User { return this; } - /** + /** * Get lastName * @return lastName - **/ + **/ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getLastName() { @@ -154,8 +154,8 @@ public class User { } /** - * Set lastName - **/ + * Set lastName + */ @JsonProperty(JSON_PROPERTY_LAST_NAME) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setLastName(String lastName) { @@ -167,10 +167,10 @@ public class User { return this; } - /** + /** * Get email * @return email - **/ + **/ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getEmail() { @@ -178,8 +178,8 @@ public class User { } /** - * Set email - **/ + * Set email + */ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setEmail(String email) { @@ -191,10 +191,10 @@ public class User { return this; } - /** + /** * Get password * @return password - **/ + **/ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getPassword() { @@ -202,8 +202,8 @@ public class User { } /** - * Set password - **/ + * Set password + */ @JsonProperty(JSON_PROPERTY_PASSWORD) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPassword(String password) { @@ -215,10 +215,10 @@ public class User { return this; } - /** + /** * Get phone * @return phone - **/ + **/ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getPhone() { @@ -226,8 +226,8 @@ public class User { } /** - * Set phone - **/ + * Set phone + */ @JsonProperty(JSON_PROPERTY_PHONE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setPhone(String phone) { @@ -239,10 +239,10 @@ public class User { return this; } - /** + /** * User Status * @return userStatus - **/ + **/ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Integer getUserStatus() { @@ -250,8 +250,8 @@ public class User { } /** - * Set userStatus - **/ + * Set userStatus + */ @JsonProperty(JSON_PROPERTY_USER_STATUS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setUserStatus(Integer userStatus) { @@ -265,8 +265,8 @@ public class User { /** - * Create a string representation of this pojo. - **/ + * Create a string representation of this pojo. + */ @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/main/resources/META-INF/openapi.yaml b/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/main/resources/META-INF/openapi.yaml index d456aa0a571..77a09d464d9 100644 --- a/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/main/resources/META-INF/openapi.yaml +++ b/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/main/resources/META-INF/openapi.yaml @@ -1650,10 +1650,11 @@ components: photoUrls: items: type: string + xml: + name: photoUrl type: array uniqueItems: true xml: - name: photoUrl wrapped: true tags: items: diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index ccf63375195..70ed8b09335 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 6881dd234e1..7a124362197 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 295ce50f7d5..be06c451b7b 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index caec6d92651..c73cda71e00 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @Schema(name = "map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_string") @@ -102,7 +102,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @Schema(name = "map_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_number") @@ -130,7 +130,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @Schema(name = "map_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_integer") @@ -158,7 +158,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @Schema(name = "map_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_boolean") @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @Schema(name = "map_array_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_integer") @@ -214,7 +214,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @Schema(name = "map_array_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_anytype") @@ -242,7 +242,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @Schema(name = "map_map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_string") @@ -270,7 +270,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @Schema(name = "map_map_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_anytype") @@ -290,7 +290,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @Schema(name = "anytype_1", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_1") @@ -310,7 +310,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @Schema(name = "anytype_2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_2") @@ -330,7 +330,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @Schema(name = "anytype_3", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_3") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 02be3686067..3b43d0da358 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 5be86fba091..97d02674ec6 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index a47f4357de6..4fdc0b05015 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index ae794e96ff2..9b045ffebb0 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Animal.java index c82a3d8a8ae..818edc2cb5a 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @Schema(name = "className", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @Schema(name = "color", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("color") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 0278df28903..a3e3f1b1025 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @Schema(name = "ArrayArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index a2ed8c168b3..7a8a5216893 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @Schema(name = "ArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayTest.java index fb1a17cd787..b556efec655 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @Schema(name = "array_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @Schema(name = "array_array_of_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @Schema(name = "array_array_of_model", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/BigCat.java index e499e9aa26a..65fcc1ca36e 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/BigCat.java @@ -87,7 +87,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @Schema(name = "kind", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("kind") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Capitalization.java index e9804c9a1e6..7408b8cb7aa 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @Schema(name = "smallCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @Schema(name = "CapitalCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @Schema(name = "small_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @Schema(name = "Capital_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @Schema(name = "SCA_ETH_Flow_Points", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @Schema(name = "ATT_NAME", description = "Name of the pet ", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Cat.java index bf614bb89d6..e8c0d1795dd 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Cat.java @@ -55,7 +55,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @Schema(name = "declawed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("declawed") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Category.java index ab4860b0fb3..2c649165997 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Category.java @@ -44,7 +44,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -64,7 +64,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ChildWithNullable.java index de66f6c719b..46a462be8e3 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -39,7 +39,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @Schema(name = "otherProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("otherProperty") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ClassModel.java index 9e27d3d33a4..6126b788ded 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "_class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("_class") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Client.java index afd91d6c5fb..21723cd0378 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @Schema(name = "client", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("client") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ContainerDefaultValue.java index ad3a548f2ff..226b605be00 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -66,7 +66,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @Schema(name = "nullable_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array") @@ -94,7 +94,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @Schema(name = "nullable_required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("nullable_required_array") @@ -122,7 +122,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @Schema(name = "required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("required_array") @@ -150,7 +150,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @Schema(name = "nullable_array_with_default", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Dog.java index 81f91c77bee..c277d3de45c 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Dog.java @@ -47,7 +47,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @Schema(name = "breed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("breed") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumArrays.java index afdb86d0c6a..efa05bc32ea 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @Schema(name = "just_symbol", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @Schema(name = "array_enum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_enum") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumTest.java index b222585be9f..0b082336103 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/EnumTest.java @@ -198,7 +198,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @Schema(name = "enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_string") @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @Schema(name = "enum_string_required", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("enum_string_required") @@ -238,7 +238,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @Schema(name = "enum_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_integer") @@ -258,7 +258,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @Schema(name = "enum_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_number") @@ -278,7 +278,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @Schema(name = "outerEnum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("outerEnum") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/File.java index b3a80b466d7..ec96357bbb7 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @Schema(name = "sourceURI", description = "Test capitalization", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("sourceURI") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FileSchemaTestClass.java index c19c90547ea..0fafd2083e8 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @Schema(name = "file", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @Schema(name = "files", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("files") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FormatTest.java index 69c619a4ff5..0c78c317222 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/FormatTest.java @@ -83,7 +83,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @Schema(name = "integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("integer") @@ -105,7 +105,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @Schema(name = "int32", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int32") @@ -125,7 +125,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @Schema(name = "int64", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int64") @@ -147,7 +147,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @Schema(name = "number", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number") @@ -169,7 +169,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @Schema(name = "float", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("float") @@ -191,7 +191,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @Schema(name = "double", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("double") @@ -211,7 +211,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @Schema(name = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("string") @@ -231,7 +231,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @Schema(name = "byte", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("byte") @@ -251,7 +251,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @Schema(name = "binary", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("binary") @@ -271,7 +271,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @Schema(name = "date", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("date") @@ -291,7 +291,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -311,7 +311,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -331,7 +331,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @Schema(name = "password", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("password") @@ -351,7 +351,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @Schema(name = "BigDecimal", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index e504791906c..e2088c2e778 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @Schema(name = "foo", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MapTest.java index 36ae89dbc17..65991c277fb 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @Schema(name = "map_map_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @Schema(name = "map_of_enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @Schema(name = "direct_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @Schema(name = "indirect_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("indirect_map") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 020d04b7411..a371a767e67 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @Schema(name = "map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Model200Response.java index 9ffa25ca597..2a46d99bad5 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("class") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelApiResponse.java index cbdfaeca7dc..8e2e78236c7 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelList.java index 5bec1e4192a..f77cc933f6d 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @Schema(name = "123-list", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123-list") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelReturn.java index 92c63607830..613a20b8a24 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @Schema(name = "return", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("return") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Name.java index 1309621e88f..078e4b6cb88 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Name.java @@ -49,7 +49,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -69,7 +69,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @Schema(name = "snake_case", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("snake_case") @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - */ + */ @Schema(name = "property", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property") @@ -109,7 +109,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @Schema(name = "123Number", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123Number") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NullableMapProperty.java index 0cb8288e402..d31209ccafc 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -45,7 +45,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @Schema(name = "languageValues", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("languageValues") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NumberOnly.java index 46b1d19305d..d6ad5164f1c 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @Schema(name = "JustNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("JustNumber") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Order.java index 4c2cf39daf1..9e452a29b1d 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/OuterComposite.java index 5ddc334ca0e..9fc1f16c5b4 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @Schema(name = "my_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @Schema(name = "my_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @Schema(name = "my_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_boolean") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java index 1749253b10e..26366e74fb4 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -82,7 +82,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -102,7 +102,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @Schema(name = "nullableProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Pet.java index 780b2ff19f4..f9990b4d4b9 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Pet.java @@ -102,7 +102,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -122,7 +122,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -142,7 +142,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -170,7 +170,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -199,7 +199,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -220,7 +220,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -231,7 +231,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 83608394b3a..d881cbb0a8b 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @Schema(name = "baz", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("baz") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 5f604c88730..9f6c5494cc9 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @Schema(name = "normalPropertyName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @Schema(name = "UPPER_CASE_PROPERTY_SNAKE", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @Schema(name = "lower-case-property-dashes", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @Schema(name = "property name with spaces", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/SpecialModelName.java index 03b736e43ff..9397b3b4a00 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @Schema(name = "$special[property.name]", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Tag.java index e51dc6e80b9..50945536995 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderDefault.java index c724cf1aa72..3155f598ad3 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -59,7 +59,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -79,7 +79,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -99,7 +99,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -119,7 +119,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -147,7 +147,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderExample.java index eef6062e39e..202e1a07b43 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -62,7 +62,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", example = "what", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @Schema(name = "float_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("float_item") @@ -122,7 +122,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", example = "-2", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -142,7 +142,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", example = "true", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -170,7 +170,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", example = "[0,1,2,3]", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/User.java index cf2938851e8..fa92088bda9 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/XmlItem.java index 24854aa662a..8aa00e822f0 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @Schema(name = "attribute_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @Schema(name = "attribute_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @Schema(name = "attribute_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @Schema(name = "attribute_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @Schema(name = "wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @Schema(name = "name_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @Schema(name = "name_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @Schema(name = "name_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @Schema(name = "name_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @Schema(name = "name_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @Schema(name = "name_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @Schema(name = "prefix_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @Schema(name = "prefix_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @Schema(name = "prefix_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @Schema(name = "prefix_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @Schema(name = "prefix_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @Schema(name = "prefix_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @Schema(name = "namespace_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @Schema(name = "namespace_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @Schema(name = "namespace_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @Schema(name = "namespace_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @Schema(name = "namespace_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @Schema(name = "namespace_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @Schema(name = "prefix_ns_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @Schema(name = "prefix_ns_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @Schema(name = "prefix_ns_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @Schema(name = "prefix_ns_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @Schema(name = "prefix_ns_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @Schema(name = "prefix_ns_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/spring-boot-nullable-set/src/main/java/org/openapitools/model/ObjectWithUniqueItems.java b/samples/server/petstore/spring-boot-nullable-set/src/main/java/org/openapitools/model/ObjectWithUniqueItems.java index 9e8dbf41917..0f9a7f005e7 100644 --- a/samples/server/petstore/spring-boot-nullable-set/src/main/java/org/openapitools/model/ObjectWithUniqueItems.java +++ b/samples/server/petstore/spring-boot-nullable-set/src/main/java/org/openapitools/model/ObjectWithUniqueItems.java @@ -65,7 +65,7 @@ public class ObjectWithUniqueItems { /** * Get nullSet * @return nullSet - */ + */ @Schema(name = "nullSet", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullSet") @@ -93,7 +93,7 @@ public class ObjectWithUniqueItems { /** * Get notNullSet * @return notNullSet - */ + */ @Schema(name = "notNullSet", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("notNullSet") @@ -122,7 +122,7 @@ public class ObjectWithUniqueItems { /** * Get nullList * @return nullList - */ + */ @Schema(name = "nullList", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullList") @@ -150,7 +150,7 @@ public class ObjectWithUniqueItems { /** * Get notNullList * @return notNullList - */ + */ @Schema(name = "notNullList", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("notNullList") @@ -170,7 +170,7 @@ public class ObjectWithUniqueItems { /** * Get notNullDateField * @return notNullDateField - */ + */ @Valid @Schema(name = "notNullDateField", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("notNullDateField") @@ -190,7 +190,7 @@ public class ObjectWithUniqueItems { /** * Get nullDateField * @return nullDateField - */ + */ @Valid @Schema(name = "nullDateField", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullDateField") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index c6b86a13183..3f7dd977443 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 18bca6a150a..9219cf31da8 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 172341b1a14..ae152796e10 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 9feafbc4fa5..ee0a3915277 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -71,7 +71,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -99,7 +99,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -127,7 +127,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -155,7 +155,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -183,7 +183,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -211,7 +211,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -239,7 +239,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -267,7 +267,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -287,7 +287,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -307,7 +307,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -327,7 +327,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 4c121a136b9..666447ef574 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 2a0d43bbc31..56af5d96406 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 8cb8d0945f0..ae5efca2170 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 01576ff1e27..ec3bf3c6374 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Animal.java index 9a3b75c1fbf..4deab5a8bd8 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 26aad067fe0..ef7aa874fd3 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 69f55c4ca83..e2779fa9243 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayTest.java index 4cec9d32570..b59c68eb0f2 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/BigCat.java index 3db0a9e5d42..d550c5b6561 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/BigCat.java @@ -87,7 +87,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Capitalization.java index f1de8fbf0bc..0d36cab466d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Cat.java index dd76e212340..55f2512ef50 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Cat.java @@ -55,7 +55,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Category.java index 283337c1a1f..abe08d5a8b0 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Category.java @@ -44,7 +44,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -64,7 +64,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ChildWithNullable.java index f2e570624fe..b6d0493782e 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -37,7 +37,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ClassModel.java index 06067d2a72d..f5034c4a47c 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Client.java index d98f5d316bc..99ff374b17d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ContainerDefaultValue.java index 65e3b1aac47..f6b661db138 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -64,7 +64,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -92,7 +92,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -120,7 +120,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -148,7 +148,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Dog.java index e86e34a1288..100866bb99c 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Dog.java @@ -47,7 +47,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumArrays.java index 631b548321a..3f770c79ab5 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumTest.java index 046cb8c9734..163a3639d22 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/EnumTest.java @@ -198,7 +198,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -238,7 +238,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -258,7 +258,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -278,7 +278,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/File.java index 1ddacd334aa..38680ffb1db 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FileSchemaTestClass.java index c09fb6e5c87..aaac9776c8d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FormatTest.java index e57b5aa8ced..2f10e8bf460 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/FormatTest.java @@ -83,7 +83,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -105,7 +105,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -125,7 +125,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -147,7 +147,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -169,7 +169,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -191,7 +191,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -211,7 +211,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -231,7 +231,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -251,7 +251,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -271,7 +271,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -291,7 +291,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -311,7 +311,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -331,7 +331,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -351,7 +351,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index 48c27b4b6c3..886c1e23cf8 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MapTest.java index b1d12d629a8..92ba11de393 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 685a673e04d..d9cf2118582 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Model200Response.java index b9ed322663e..98cc8f7a09b 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelApiResponse.java index 44c948c8245..9d555c06885 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelList.java index ec67c928887..8fbe42d5837 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelReturn.java index 56c76c76491..9ef6b04fe54 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Name.java index 5fb686a0253..6e5af0c8432 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Name.java @@ -49,7 +49,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -69,7 +69,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -109,7 +109,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NullableMapProperty.java index 818a5a3bb29..d3790614086 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -42,7 +42,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NumberOnly.java index af1010cca45..10c222a0f61 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Order.java index cf8b6f3e769..13a11bffcb1 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/OuterComposite.java index 22aedc44154..6a862cdf513 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java index e6b998778c8..c0273b2358e 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -79,7 +79,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -99,7 +99,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Pet.java index 1b4ba93f299..a4b0607751d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Pet.java @@ -102,7 +102,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -122,7 +122,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -142,7 +142,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -170,7 +170,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -199,7 +199,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -220,7 +220,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -231,7 +231,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 6929f394a51..05e3193fbbe 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 8b54d058e64..9367325bbb1 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/SpecialModelName.java index d7b775f429b..8f380775e6c 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Tag.java index 60ab1c2835d..8bc99b46fac 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderDefault.java index 26c4896310c..4b15806ad3d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -59,7 +59,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -79,7 +79,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -99,7 +99,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -119,7 +119,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -147,7 +147,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderExample.java index 545d1f2bac7..901591e12cb 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -62,7 +62,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -122,7 +122,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -142,7 +142,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -170,7 +170,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/User.java index f7e79942162..0c9994e95af 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/XmlItem.java index 0311ae1f4cf..39bac753e33 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index cec9229e6af..b6238d12175 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Animal.java index 518ea01bc0b..81ad988fd02 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/BigCat.java index 134bb697ed9..52f7abb6acc 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Cat.java index 3925a2c3075..aa52134df04 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ChildWithNullable.java index ae21492bb5e..3c12366801e 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ContainerDefaultValue.java index cc11ac3a219..dff1ec861b8 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NullableMapProperty.java index 426ef18252a..9df6f37d023 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java index 1358f00414a..c097da25f3b 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Pet.java index 6528c5b357b..6089ea80e18 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 97f1969d98f..d51d35661c1 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/SpecialModelName.java index f7ddab482bc..3102a21139e 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderDefault.java index a281394e588..eaf55cab107 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index cec9229e6af..b6238d12175 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Animal.java index 518ea01bc0b..81ad988fd02 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/BigCat.java index 134bb697ed9..52f7abb6acc 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Cat.java index 3925a2c3075..aa52134df04 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ChildWithNullable.java index ae21492bb5e..3c12366801e 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ContainerDefaultValue.java index cc11ac3a219..dff1ec861b8 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NullableMapProperty.java index 426ef18252a..9df6f37d023 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java index 1358f00414a..c097da25f3b 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Pet.java index 6528c5b357b..6089ea80e18 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 97f1969d98f..d51d35661c1 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/SpecialModelName.java index f7ddab482bc..3102a21139e 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java index a281394e588..eaf55cab107 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Category.java index c15327f3b22..e69dcad7a2a 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Category.java @@ -35,7 +35,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/ModelApiResponse.java index 4cbbaf729fd..beb8c406e91 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -39,7 +39,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -59,7 +59,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -79,7 +79,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Order.java index bc7c066e59e..59dbbb89f24 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Order.java @@ -84,7 +84,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -104,7 +104,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -124,7 +124,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -144,7 +144,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -164,7 +164,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -184,7 +184,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Pet.java index 1902a984b40..bfd489d624c 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Pet.java @@ -101,7 +101,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -121,7 +121,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -141,7 +141,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -169,7 +169,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -197,7 +197,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -218,7 +218,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -229,7 +229,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Tag.java index 5887c9efe1e..5452ab7e1af 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/Tag.java @@ -35,7 +35,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -55,7 +55,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/User.java index 881ccb2a1e1..1d7b1188625 100644 --- a/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-delegate-no-response-entity/src/main/java/org/openapitools/model/User.java @@ -47,7 +47,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -67,7 +67,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -87,7 +87,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -107,7 +107,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -127,7 +127,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -147,7 +147,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -167,7 +167,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -187,7 +187,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index a62950917aa..808bbe42de9 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -33,8 +33,8 @@ public class AdditionalPropertiesAnyType { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesAnyType(String name) { this.name = name; } @@ -47,7 +47,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 363bcdd2b87..aaa73cc3b77 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -34,8 +34,8 @@ public class AdditionalPropertiesArray { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesArray(String name) { this.name = name; } @@ -48,7 +48,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index a4033ed37a0..f9e0a14bac1 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -33,8 +33,8 @@ public class AdditionalPropertiesBoolean { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesBoolean(String name) { this.name = name; } @@ -47,7 +47,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index ff87f88f95d..c48f75302f1 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -64,8 +64,8 @@ public class AdditionalPropertiesClass { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesClass(Map mapString, Map mapNumber, Map mapInteger, Map mapBoolean, Map> mapArrayInteger, Map> mapArrayAnytype, Map> mapMapString, Map> mapMapAnytype, Object anytype1, Object anytype2, Object anytype3) { this.mapString = mapString; this.mapNumber = mapNumber; @@ -96,7 +96,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -124,7 +124,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -152,7 +152,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -180,7 +180,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -208,7 +208,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -236,7 +236,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -264,7 +264,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -292,7 +292,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -312,7 +312,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -332,7 +332,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -352,7 +352,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 7507e8ae7d2..a2eb0894dd9 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -33,8 +33,8 @@ public class AdditionalPropertiesInteger { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesInteger(String name) { this.name = name; } @@ -47,7 +47,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index cd6dde64276..78f276af0ff 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -34,8 +34,8 @@ public class AdditionalPropertiesNumber { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesNumber(String name) { this.name = name; } @@ -48,7 +48,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index dce80933a30..b3c91679bf1 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -34,8 +34,8 @@ public class AdditionalPropertiesObject { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesObject(String name) { this.name = name; } @@ -48,7 +48,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8c92fb08fd5..4007358bf83 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -33,8 +33,8 @@ public class AdditionalPropertiesString { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public AdditionalPropertiesString(String name) { this.name = name; } @@ -47,7 +47,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java index 0af818762af..7206c5f25f3 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Animal.java @@ -52,8 +52,8 @@ public class Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Animal(String className, String color) { this.className = className; this.color = color; @@ -67,7 +67,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -87,7 +87,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 1527825ffea..1844fb1521e 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -34,8 +34,8 @@ public class ArrayOfArrayOfNumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayOfArrayOfNumberOnly(List> arrayArrayNumber) { this.arrayArrayNumber = arrayArrayNumber; } @@ -56,7 +56,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 12f8755de1d..b2426dfb88a 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -34,8 +34,8 @@ public class ArrayOfNumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayOfNumberOnly(List arrayNumber) { this.arrayNumber = arrayNumber; } @@ -56,7 +56,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java index 1ba12e55e16..1dff8f35bac 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ArrayTest.java @@ -40,8 +40,8 @@ public class ArrayTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ArrayTest(List arrayOfString, List> arrayArrayOfInteger, List> arrayArrayOfModel) { this.arrayOfString = arrayOfString; this.arrayArrayOfInteger = arrayArrayOfInteger; @@ -64,7 +64,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -92,7 +92,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -120,7 +120,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java index bee79d5f60e..6249bcace9a 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/BigCat.java @@ -81,8 +81,8 @@ public class BigCat extends Cat { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public BigCat(KindEnum kind, Boolean declawed, String className, String color) { super(declawed, className, color); this.kind = kind; @@ -96,7 +96,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java index 392a270f474..2808789526d 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Capitalization.java @@ -39,8 +39,8 @@ public class Capitalization { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Capitalization(String smallCamel, String capitalCamel, String smallSnake, String capitalSnake, String scAETHFlowPoints, String ATT_NAME) { this.smallCamel = smallCamel; this.capitalCamel = capitalCamel; @@ -58,7 +58,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -78,7 +78,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -98,7 +98,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -118,7 +118,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -138,7 +138,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -158,7 +158,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java index 5a73c40ef3d..a80ea4dbcae 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Cat.java @@ -49,8 +49,8 @@ public class Cat extends Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Cat(Boolean declawed, String className, String color) { super(className, color); this.declawed = declawed; @@ -64,7 +64,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java index 25867a75d26..d3fecfb5c0b 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Category.java @@ -38,8 +38,8 @@ public class Category { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Category(Long id, String name) { this.id = id; this.name = name; @@ -53,7 +53,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -73,7 +73,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java index 67c4716f2ee..01598f9e390 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -37,8 +37,8 @@ public class ChildWithNullable extends ParentWithNullable { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ChildWithNullable(String otherProperty, TypeEnum type, String nullableProperty) { super(type, nullableProperty); this.otherProperty = otherProperty; @@ -52,7 +52,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java index 8ba0f6ca151..759eede2ac9 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ClassModel.java @@ -30,8 +30,8 @@ public class ClassModel { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ClassModel(String propertyClass) { this.propertyClass = propertyClass; } @@ -44,7 +44,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java index e7df9d9c28c..b3a413edc7d 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Client.java @@ -29,8 +29,8 @@ public class Client { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Client(String client) { this.client = client; } @@ -43,7 +43,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java index 95588e1ed81..55566514cea 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -52,8 +52,8 @@ public class ContainerDefaultValue { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ContainerDefaultValue(List nullableArray, List nullableRequiredArray, List requiredArray, List nullableArrayWithDefault) { this.nullableArray = JsonNullable.of(nullableArray); this.nullableRequiredArray = JsonNullable.of(nullableRequiredArray); @@ -77,7 +77,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -105,7 +105,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -133,7 +133,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -161,7 +161,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java index 06929a4dcd8..691347bb65c 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Dog.java @@ -41,8 +41,8 @@ public class Dog extends Animal { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Dog(String breed, String className, String color) { super(className, color); this.breed = breed; @@ -56,7 +56,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java index 2f0678d6c13..42017e2946c 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumArrays.java @@ -106,8 +106,8 @@ public class EnumArrays { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public EnumArrays(JustSymbolEnum justSymbol, List arrayEnum) { this.justSymbol = justSymbol; this.arrayEnum = arrayEnum; @@ -121,7 +121,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -149,7 +149,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java index 743174663f1..ca77777a5e0 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/EnumTest.java @@ -192,8 +192,8 @@ public class EnumTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public EnumTest(EnumStringEnum enumString, EnumStringRequiredEnum enumStringRequired, EnumIntegerEnum enumInteger, EnumNumberEnum enumNumber, OuterEnum outerEnum) { this.enumString = enumString; this.enumStringRequired = enumStringRequired; @@ -210,7 +210,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -230,7 +230,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -250,7 +250,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -270,7 +270,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -290,7 +290,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java index 4cc601114ed..e56a9f52839 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/File.java @@ -30,8 +30,8 @@ public class File { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public File(String sourceURI) { this.sourceURI = sourceURI; } @@ -44,7 +44,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 4696ea4c8ec..d26fade603d 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -36,8 +36,8 @@ public class FileSchemaTestClass { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FileSchemaTestClass(File file, List<@Valid File> files) { this.file = file; this.files = files; @@ -51,7 +51,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -79,7 +79,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java index 98e593d40a2..3da841cfbee 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/FormatTest.java @@ -75,8 +75,8 @@ public class FormatTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public FormatTest(Integer integer, Integer int32, Long int64, BigDecimal number, Float _float, Double _double, String string, byte[] _byte, org.springframework.core.io.Resource binary, LocalDate date, OffsetDateTime dateTime, UUID uuid, String password, BigDecimal bigDecimal) { this.integer = integer; this.int32 = int32; @@ -104,7 +104,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -126,7 +126,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -146,7 +146,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -168,7 +168,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -190,7 +190,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -212,7 +212,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -372,7 +372,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index 644947cf66e..9e04d2b70e6 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -33,8 +33,8 @@ public class HasOnlyReadOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public HasOnlyReadOnly(String bar, String foo) { this.bar = bar; this.foo = foo; @@ -48,7 +48,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -68,7 +68,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java index 132133c3a26..96722bbed1b 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MapTest.java @@ -77,8 +77,8 @@ public class MapTest { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public MapTest(Map> mapMapOfString, Map mapOfEnumString, Map directMap, Map indirectMap) { this.mapMapOfString = mapMapOfString; this.mapOfEnumString = mapOfEnumString; @@ -102,7 +102,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -130,7 +130,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -158,7 +158,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -186,7 +186,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index 22af51bb46b..16a111bd75f 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -41,8 +41,8 @@ public class MixedPropertiesAndAdditionalPropertiesClass { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public MixedPropertiesAndAdditionalPropertiesClass(UUID uuid, OffsetDateTime dateTime, Map map) { this.uuid = uuid; this.dateTime = dateTime; @@ -57,7 +57,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -77,7 +77,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -105,7 +105,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java index e119196f62d..93e34e55919 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Model200Response.java @@ -34,8 +34,8 @@ public class Model200Response { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Model200Response(Integer name, String propertyClass) { this.name = name; this.propertyClass = propertyClass; @@ -49,7 +49,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -69,7 +69,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java index 8430b03fe39..3fc0fc440c1 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -35,8 +35,8 @@ public class ModelApiResponse { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelApiResponse(Integer code, String type, String message) { this.code = code; this.type = type; @@ -51,7 +51,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -71,7 +71,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -91,7 +91,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java index 2039d9fd392..cb1f4f73f7b 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelList.java @@ -31,8 +31,8 @@ public class ModelList { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelList(String _123list) { this._123list = _123list; } @@ -45,7 +45,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java index ecd60b68ae0..c73cfec969e 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ModelReturn.java @@ -32,8 +32,8 @@ public class ModelReturn { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ModelReturn(Integer _return) { this._return = _return; } @@ -46,7 +46,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java index a80f4ac791e..99ed561ed2c 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Name.java @@ -43,8 +43,8 @@ public class Name { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Name(Integer name, Integer snakeCase, String property, Integer _123number) { this.name = name; this.snakeCase = snakeCase; @@ -60,7 +60,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -80,7 +80,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -100,7 +100,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -120,7 +120,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java index 996799027a3..7c71c5e7480 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -35,8 +35,8 @@ public class NullableMapProperty { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public NullableMapProperty(Map languageValues) { this.languageValues = JsonNullable.of(languageValues); } @@ -57,7 +57,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java index 81594263ca4..55b0aea82f8 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/NumberOnly.java @@ -30,8 +30,8 @@ public class NumberOnly { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public NumberOnly(BigDecimal justNumber) { this.justNumber = justNumber; } @@ -44,7 +44,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java index 96588b3f766..55f45c6b8f1 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Order.java @@ -80,8 +80,8 @@ public class Order { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Order(Long id, Long petId, Integer quantity, OffsetDateTime shipDate, StatusEnum status, Boolean complete) { this.id = id; this.petId = petId; @@ -99,7 +99,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -119,7 +119,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -139,7 +139,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -159,7 +159,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -179,7 +179,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -199,7 +199,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java index 8e71cc573cc..39d6da77a4e 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/OuterComposite.java @@ -34,8 +34,8 @@ public class OuterComposite { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public OuterComposite(BigDecimal myNumber, String myString, Boolean myBoolean) { this.myNumber = myNumber; this.myString = myString; @@ -50,7 +50,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -70,7 +70,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -90,7 +90,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java index 7b81d13e004..eb5cece2cb9 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -80,8 +80,8 @@ public class ParentWithNullable { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ParentWithNullable(TypeEnum type, String nullableProperty) { this.type = type; this.nullableProperty = JsonNullable.of(nullableProperty); @@ -95,7 +95,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -115,7 +115,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java index 327f677f72e..55823cdd3fb 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Pet.java @@ -96,8 +96,8 @@ public class Pet { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Pet(Long id, Category category, String name, Set photoUrls, List<@Valid Tag> tags, StatusEnum status) { this.id = id; this.category = category; @@ -115,7 +115,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -135,7 +135,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -155,7 +155,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -183,7 +183,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -212,7 +212,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -233,7 +233,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -244,7 +244,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e3c3391fdc..63c14ed5516 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -31,8 +31,8 @@ public class ReadOnlyFirst { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ReadOnlyFirst(String bar, String baz) { this.bar = bar; this.baz = baz; @@ -46,7 +46,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -66,7 +66,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 0d7b171ff0e..bcd44939226 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -35,8 +35,8 @@ public class ResponseObjectWithDifferentFieldNames { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public ResponseObjectWithDifferentFieldNames(String normalPropertyName, String UPPER_CASE_PROPERTY_SNAKE, String lowerCasePropertyDashes, String propertyNameWithSpaces) { this.normalPropertyName = normalPropertyName; this.UPPER_CASE_PROPERTY_SNAKE = UPPER_CASE_PROPERTY_SNAKE; @@ -52,7 +52,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -72,7 +72,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -92,7 +92,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -112,7 +112,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java index 8f6a1761bde..84eecdc4ed2 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/SpecialModelName.java @@ -31,8 +31,8 @@ public class SpecialModelName { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public SpecialModelName(Long $specialPropertyName) { this.$specialPropertyName = $specialPropertyName; } @@ -45,7 +45,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java index 4d9c0ee19f1..161d294cd5d 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/Tag.java @@ -31,8 +31,8 @@ public class Tag { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public Tag(Long id, String name) { this.id = id; this.name = name; @@ -46,7 +46,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java index 1ecc3983dcb..67315c12e72 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java index d98bc3625d8..298a128cbeb 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java index af28f1b281f..3d92b408220 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/User.java @@ -43,8 +43,8 @@ public class User { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public User(Long id, String username, String firstName, String lastName, String email, String password, String phone, Integer userStatus) { this.id = id; this.username = username; @@ -64,7 +64,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -84,7 +84,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -104,7 +104,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -124,7 +124,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -144,7 +144,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -164,7 +164,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -184,7 +184,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -204,7 +204,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java index 6fc966cbc8d..45b758015ce 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/XmlItem.java @@ -98,8 +98,8 @@ public class XmlItem { } /** - * Constructor with all args parameters - */ + * Constructor with all args parameters + */ public XmlItem(String attributeString, BigDecimal attributeNumber, Integer attributeInteger, Boolean attributeBoolean, List wrappedArray, String nameString, BigDecimal nameNumber, Integer nameInteger, Boolean nameBoolean, List nameArray, List nameWrappedArray, String prefixString, BigDecimal prefixNumber, Integer prefixInteger, Boolean prefixBoolean, List prefixArray, List prefixWrappedArray, String namespaceString, BigDecimal namespaceNumber, Integer namespaceInteger, Boolean namespaceBoolean, List namespaceArray, List namespaceWrappedArray, String prefixNsString, BigDecimal prefixNsNumber, Integer prefixNsInteger, Boolean prefixNsBoolean, List prefixNsArray, List prefixNsWrappedArray) { this.attributeString = attributeString; this.attributeNumber = attributeNumber; @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -180,7 +180,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -200,7 +200,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -288,7 +288,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -308,7 +308,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -336,7 +336,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -424,7 +424,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -444,7 +444,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -472,7 +472,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -560,7 +560,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -580,7 +580,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -608,7 +608,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -696,7 +696,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -716,7 +716,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -744,7 +744,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -772,7 +772,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Category.java index e72bc5e208b..629a49c7b1b 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Category.java @@ -32,7 +32,7 @@ public class Category { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -51,7 +51,7 @@ public class Category { /** * Get name * @return name - */ + */ @Pattern(regexp = "^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$") @JsonProperty("name") public String getName() { diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/ModelApiResponse.java index b67c9219958..a688be43078 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -36,7 +36,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @JsonProperty("code") public Integer getCode() { @@ -55,7 +55,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @JsonProperty("type") public String getType() { @@ -74,7 +74,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @JsonProperty("message") public String getMessage() { diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Order.java index f42addfd951..44836427f48 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Order.java @@ -81,7 +81,7 @@ public class Order { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -100,7 +100,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @JsonProperty("petId") public Long getPetId() { @@ -119,7 +119,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @JsonProperty("quantity") public Integer getQuantity() { @@ -138,7 +138,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @JsonProperty("shipDate") public OffsetDateTime getShipDate() { @@ -157,7 +157,7 @@ public class Order { /** * Order Status * @return status - */ + */ @JsonProperty("status") public StatusEnum getStatus() { @@ -176,7 +176,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @JsonProperty("complete") public Boolean getComplete() { diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Pet.java index 1a6771689c4..2cfd01b3902 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Pet.java @@ -98,7 +98,7 @@ public class Pet { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -117,7 +117,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @JsonProperty("category") public Category getCategory() { @@ -136,7 +136,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @JsonProperty("name") public String getName() { @@ -163,7 +163,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @JsonProperty("photoUrls") public List getPhotoUrls() { @@ -190,7 +190,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @JsonProperty("tags") public List<@Valid Tag> getTags() { @@ -210,7 +210,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @JsonProperty("status") @Deprecated @@ -220,7 +220,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Tag.java index c287674666e..d754b75d6a1 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/Tag.java @@ -32,7 +32,7 @@ public class Tag { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -51,7 +51,7 @@ public class Tag { /** * Get name * @return name - */ + */ @JsonProperty("name") public String getName() { diff --git a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/User.java index d6044eeb785..e64e514efd1 100644 --- a/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-implicitHeaders-annotationLibrary/src/main/java/org/openapitools/model/User.java @@ -44,7 +44,7 @@ public class User { /** * Get id * @return id - */ + */ @JsonProperty("id") public Long getId() { @@ -63,7 +63,7 @@ public class User { /** * Get username * @return username - */ + */ @JsonProperty("username") public String getUsername() { @@ -82,7 +82,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @JsonProperty("firstName") public String getFirstName() { @@ -101,7 +101,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @JsonProperty("lastName") public String getLastName() { @@ -120,7 +120,7 @@ public class User { /** * Get email * @return email - */ + */ @JsonProperty("email") public String getEmail() { @@ -139,7 +139,7 @@ public class User { /** * Get password * @return password - */ + */ @JsonProperty("password") public String getPassword() { @@ -158,7 +158,7 @@ public class User { /** * Get phone * @return phone - */ + */ @JsonProperty("phone") public String getPhone() { @@ -177,7 +177,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @JsonProperty("userStatus") public Integer getUserStatus() { diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index cec9229e6af..b6238d12175 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java index 518ea01bc0b..81ad988fd02 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java index 134bb697ed9..52f7abb6acc 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java index 3925a2c3075..aa52134df04 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java index ae21492bb5e..3c12366801e 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java index cc11ac3a219..dff1ec861b8 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java index 426ef18252a..9df6f37d023 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java index 1358f00414a..c097da25f3b 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java index 6528c5b357b..6089ea80e18 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 97f1969d98f..d51d35661c1 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java index f7ddab482bc..3102a21139e 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java index a281394e588..eaf55cab107 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index cec9229e6af..b6238d12175 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Animal.java index 518ea01bc0b..81ad988fd02 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/BigCat.java index 134bb697ed9..52f7abb6acc 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Cat.java index 3925a2c3075..aa52134df04 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ChildWithNullable.java index ae21492bb5e..3c12366801e 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ContainerDefaultValue.java index cc11ac3a219..dff1ec861b8 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NullableMapProperty.java index 426ef18252a..9df6f37d023 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java index 1358f00414a..c097da25f3b 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Pet.java index 6528c5b357b..6089ea80e18 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 97f1969d98f..d51d35661c1 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/SpecialModelName.java index f7ddab482bc..3102a21139e 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderDefault.java index a281394e588..eaf55cab107 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index cec9229e6af..b6238d12175 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Animal.java index 518ea01bc0b..81ad988fd02 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/BigCat.java index 134bb697ed9..52f7abb6acc 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Cat.java index 3925a2c3075..aa52134df04 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java index ae21492bb5e..3c12366801e 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java index cc11ac3a219..dff1ec861b8 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java index 426ef18252a..9df6f37d023 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java index 1358f00414a..c097da25f3b 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Pet.java index 6528c5b357b..6089ea80e18 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 97f1969d98f..d51d35661c1 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/SpecialModelName.java index f7ddab482bc..3102a21139e 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java index a281394e588..eaf55cab107 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 7a139fcd6fa..925d048e1c7 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -72,7 +72,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -100,7 +100,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -128,7 +128,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -156,7 +156,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -184,7 +184,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -212,7 +212,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -240,7 +240,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -268,7 +268,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -288,7 +288,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -308,7 +308,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -328,7 +328,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Animal.java index a6b5c0712c1..b7217bf2c87 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Cat.java index 4f5678d96f5..e3766d8c0c0 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Cat.java @@ -48,7 +48,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Pet.java index 940733a686a..f1733c2dfc5 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Pet.java @@ -99,7 +99,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -139,7 +139,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -167,7 +167,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -195,7 +195,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -215,7 +215,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java index 05d6080374e..315e2dc0995 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java index f5584666bf8..adff56ab1df 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern-without-j8/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 7a139fcd6fa..925d048e1c7 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -72,7 +72,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -100,7 +100,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -128,7 +128,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -156,7 +156,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -184,7 +184,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -212,7 +212,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -240,7 +240,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -268,7 +268,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -288,7 +288,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -308,7 +308,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -328,7 +328,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Animal.java index a6b5c0712c1..b7217bf2c87 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Cat.java index 4f5678d96f5..e3766d8c0c0 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Cat.java @@ -48,7 +48,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Pet.java index 940733a686a..f1733c2dfc5 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Pet.java @@ -99,7 +99,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -139,7 +139,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -167,7 +167,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -195,7 +195,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -215,7 +215,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/SpecialModelName.java index 05d6080374e..315e2dc0995 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderDefault.java index f5584666bf8..adff56ab1df 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-spring-pageable-delegatePattern/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 7a139fcd6fa..925d048e1c7 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -72,7 +72,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -100,7 +100,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -128,7 +128,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -156,7 +156,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -184,7 +184,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -212,7 +212,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -240,7 +240,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -268,7 +268,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -288,7 +288,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -308,7 +308,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -328,7 +328,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Animal.java index a6b5c0712c1..b7217bf2c87 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Cat.java index 4f5678d96f5..e3766d8c0c0 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Cat.java @@ -48,7 +48,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Pet.java index 940733a686a..f1733c2dfc5 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Pet.java @@ -99,7 +99,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -139,7 +139,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -167,7 +167,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -195,7 +195,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -215,7 +215,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java index 05d6080374e..315e2dc0995 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java index f5584666bf8..adff56ab1df 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-spring-pageable-without-j8/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index 3db821147ea..18d1a12907c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index bfa238fd9be..1c525214117 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index 2ddf8df68a4..1d4c1ac0c11 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index 7a139fcd6fa..925d048e1c7 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -72,7 +72,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -100,7 +100,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -128,7 +128,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -156,7 +156,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -184,7 +184,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -212,7 +212,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -240,7 +240,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -268,7 +268,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -288,7 +288,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -308,7 +308,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -328,7 +328,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 8d2f4829bd9..6e5fc3b4000 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index 73778c5bc0d..1ade4b2f850 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index 78373da5714..0bbde7dd225 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 8516945a40c..8536c1e9b80 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Animal.java index a6b5c0712c1..b7217bf2c87 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index 61abe8d063e..ef93fc965d2 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 1c8b1a9a9f5..7d17438059c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayTest.java index 8c6e3a0d185..33827ecf56c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Capitalization.java index 03577a92059..9d9f1625248 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Cat.java index 4f5678d96f5..e3766d8c0c0 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Cat.java @@ -48,7 +48,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Category.java index 7076b3e2d7e..7c312f3d222 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ClassModel.java index 4dc39fc5a2f..4dec2df39dc 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Client.java index 41a746347cc..b05210647bd 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Dog.java index 0d72a06783b..de979b60dba 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumArrays.java index 9d659cb8cbc..d9ec319c892 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumTest.java index 1dd03397ebc..920be6f8d74 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/File.java index f97360ca38e..d4546e7139c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FileSchemaTestClass.java index 0753839c126..f777671acd8 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FormatTest.java index 539fa05ee5b..83f6d7d9925 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index ad3d27b576d..8d8568c28ef 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MapTest.java index 606d0902d9d..d6d8de88baf 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index b1582dd84bc..fd2c32d282c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Model200Response.java index 20e4cf5e042..60ebd89e83d 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java index c603340eb7f..78d1f177a64 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelList.java index dfeb4771b1f..37baa88ef04 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelReturn.java index bda94a6413f..fedc40dbf20 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Name.java index b0ccca86ec7..82d366abb5c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/NumberOnly.java index 5ce32181833..37eee1c6a3c 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Order.java index 183135fc983..5d18b4e41f5 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/OuterComposite.java index 075bc1ee96f..4cac6702447 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Pet.java index 940733a686a..f1733c2dfc5 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Pet.java @@ -99,7 +99,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -119,7 +119,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -139,7 +139,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -167,7 +167,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -195,7 +195,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -215,7 +215,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 2e50c2b10d7..9033fa9dffe 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/SpecialModelName.java index 05d6080374e..315e2dc0995 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Tag.java index c4f6c2d9b89..6b56ddcc0e7 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderDefault.java index f5584666bf8..adff56ab1df 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderExample.java index 677078863b5..39115ee601e 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/User.java index 8254c146f3e..0f913577bec 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/XmlItem.java index e261ba752de..c9ba58e9bab 100644 --- a/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-spring-pageable/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Category.java index 9f92fccb071..d95864d13f9 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Category.java @@ -33,7 +33,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Category { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/ModelApiResponse.java index cbdfaeca7dc..8e2e78236c7 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Order.java index f034e3a1b27..015b9f1259a 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Pet.java index da29f1b8aeb..e795bdd55ba 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Pet.java @@ -98,7 +98,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -118,7 +118,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -138,7 +138,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -166,7 +166,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -194,7 +194,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -214,7 +214,7 @@ public class Pet { /** * pet status in the store * @return status - */ + */ @Schema(name = "status", description = "pet status in the store", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Tag.java index e51dc6e80b9..50945536995 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/User.java index cf2938851e8..fa92088bda9 100644 --- a/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-spring-provide-args/src/main/java/org/openapitools/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java index dc378d3fe42..b099dfa79df 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesAnyType.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java index 2097d51d456..75bc1a321aa 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesArray.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java index ec69313d658..90f08308d13 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesBoolean.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java index a53b960295d..78e15b82455 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesClass.java @@ -75,7 +75,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -103,7 +103,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -131,7 +131,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -159,7 +159,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -187,7 +187,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -215,7 +215,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -243,7 +243,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -271,7 +271,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -291,7 +291,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -311,7 +311,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -331,7 +331,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java index 841cc807b5f..f463c43c8d5 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesInteger.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java index a61782dde37..ee257b21e00 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesNumber.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java index f47bfff2d72..12a81852757 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesObject.java @@ -37,7 +37,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesString.java index 805e351951c..cfa25f75e34 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/AdditionalPropertiesString.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Animal.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Animal.java index f4e610a9d40..48e5f6e9a09 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Animal.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Animal.java @@ -59,7 +59,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -79,7 +79,7 @@ public class Animal { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java index d1ccfb02d64..d265d3b2937 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java index 9b2a007141d..1f7752a075b 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayOfNumberOnly.java @@ -45,7 +45,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayTest.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayTest.java index f7e0170cfa3..de29f0c4230 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayTest.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ArrayTest.java @@ -51,7 +51,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -79,7 +79,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -107,7 +107,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/BigCat.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/BigCat.java index 0983cb9706f..2c97f50294f 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/BigCat.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/BigCat.java @@ -88,7 +88,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Capitalization.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Capitalization.java index d4ba9ad6f2f..ccbe1688749 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Capitalization.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Capitalization.java @@ -42,7 +42,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -62,7 +62,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -82,7 +82,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -102,7 +102,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -122,7 +122,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -142,7 +142,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Cat.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Cat.java index df7b94bd5c0..e29ba078917 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Cat.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Cat.java @@ -56,7 +56,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Category.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Category.java index dd4c7bd56b5..b5f659ddd2d 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Category.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Category.java @@ -45,7 +45,7 @@ public class Category { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -65,7 +65,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ChildWithNullable.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ChildWithNullable.java index beea2b4f2ac..abd6bb41f62 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ChildWithNullable.java @@ -40,7 +40,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ClassModel.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ClassModel.java index 3e5ae92f6d6..6e2db4f83d9 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ClassModel.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ClassModel.java @@ -33,7 +33,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Client.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Client.java index 84472fa8a00..d87f0e48579 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Client.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Client.java @@ -32,7 +32,7 @@ public class Client { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ContainerDefaultValue.java index 3ea9a1ef001..5716ddfa7f9 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ContainerDefaultValue.java @@ -67,7 +67,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -95,7 +95,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -123,7 +123,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -151,7 +151,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Dog.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Dog.java index 22cccf84892..ed2c13cc2df 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Dog.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Dog.java @@ -48,7 +48,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumArrays.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumArrays.java index 1379b32fe11..b06595b6486 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumArrays.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumArrays.java @@ -109,7 +109,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -137,7 +137,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumTest.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumTest.java index a4aa9ad1e49..8480cdab9c6 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumTest.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/EnumTest.java @@ -199,7 +199,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/File.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/File.java index b1c2874aa56..037b1d19a51 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/File.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/File.java @@ -33,7 +33,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FileSchemaTestClass.java index aaa8eb557a5..a6e078ee88c 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FileSchemaTestClass.java @@ -39,7 +39,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -67,7 +67,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FormatTest.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FormatTest.java index 8dffe732395..4c2ecb1dfdc 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FormatTest.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/FormatTest.java @@ -84,7 +84,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/HasOnlyReadOnly.java index 6c170690f46..487452020cc 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/HasOnlyReadOnly.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MapTest.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MapTest.java index 27713cc941d..8d6503d7a72 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MapTest.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MapTest.java @@ -88,7 +88,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -116,7 +116,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -144,7 +144,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -172,7 +172,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java index f28fab4d616..508de46d2ad 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -44,7 +44,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -64,7 +64,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -92,7 +92,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Model200Response.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Model200Response.java index 3c47ee88964..5ad1aaab3b7 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Model200Response.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Model200Response.java @@ -37,7 +37,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelApiResponse.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelApiResponse.java index 5792f8ed571..660581f110c 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelApiResponse.java @@ -38,7 +38,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelList.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelList.java index c2ec158ddd4..8d8c6135d96 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelList.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelList.java @@ -34,7 +34,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelReturn.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelReturn.java index 133de3ccaa2..cf56bb07e06 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelReturn.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ModelReturn.java @@ -35,7 +35,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Name.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Name.java index 26d45e6cc6d..2bbad71b51c 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Name.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Name.java @@ -50,7 +50,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -70,7 +70,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -90,7 +90,7 @@ public class Name { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -110,7 +110,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NullableMapProperty.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NullableMapProperty.java index 9929ea70292..d90f022293e 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NullableMapProperty.java @@ -46,7 +46,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NumberOnly.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NumberOnly.java index 7763fc988e8..8f2df887527 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NumberOnly.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/NumberOnly.java @@ -33,7 +33,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Order.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Order.java index 9ba1113d43e..9ac0464dcb4 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Order.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Order.java @@ -83,7 +83,7 @@ public class Order { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -103,7 +103,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -123,7 +123,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -143,7 +143,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -163,7 +163,7 @@ public class Order { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -183,7 +183,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/OuterComposite.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/OuterComposite.java index c425cae4458..6e4df70cd7a 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/OuterComposite.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/OuterComposite.java @@ -37,7 +37,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -57,7 +57,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -77,7 +77,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java index 44440d260b0..97734f4d518 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -83,7 +83,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -103,7 +103,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Pet.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Pet.java index 1ae439ee149..ab9ee06e6cd 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Pet.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Pet.java @@ -103,7 +103,7 @@ public class Pet { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -123,7 +123,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -143,7 +143,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -171,7 +171,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -200,7 +200,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -221,7 +221,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -232,7 +232,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(Optional status) { this.status = status; diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ReadOnlyFirst.java index 5ee2cde127d..90dab70e14f 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ReadOnlyFirst.java @@ -34,7 +34,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -54,7 +54,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java index 182e3b7b4b7..92a80d7d633 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNames.java @@ -38,7 +38,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -58,7 +58,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -78,7 +78,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -98,7 +98,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/SpecialModelName.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/SpecialModelName.java index 9f6b43f7a2a..3fb4b46d0af 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/SpecialModelName.java @@ -34,7 +34,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Tag.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Tag.java index dea15625302..1998bb01c23 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Tag.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/Tag.java @@ -34,7 +34,7 @@ public class Tag { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -54,7 +54,7 @@ public class Tag { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderDefault.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderDefault.java index ee06405a491..49f3058637e 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderDefault.java @@ -60,7 +60,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -80,7 +80,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -100,7 +100,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -120,7 +120,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -148,7 +148,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderExample.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderExample.java index a14a55401c7..91301d6297f 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/TypeHolderExample.java @@ -63,7 +63,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -83,7 +83,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -103,7 +103,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -123,7 +123,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -143,7 +143,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -171,7 +171,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/User.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/User.java index 985c6fa1491..8f09a987aef 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/User.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/User.java @@ -46,7 +46,7 @@ public class User { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -66,7 +66,7 @@ public class User { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -86,7 +86,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -106,7 +106,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -126,7 +126,7 @@ public class User { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -146,7 +146,7 @@ public class User { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -166,7 +166,7 @@ public class User { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -186,7 +186,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/XmlItem.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/XmlItem.java index ba12c7e5c9e..43eec94d6ad 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/XmlItem.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/XmlItem.java @@ -101,7 +101,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -121,7 +121,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -141,7 +141,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -161,7 +161,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -189,7 +189,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -209,7 +209,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -229,7 +229,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -249,7 +249,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -269,7 +269,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -297,7 +297,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -325,7 +325,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -345,7 +345,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -365,7 +365,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -385,7 +385,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -405,7 +405,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -433,7 +433,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -461,7 +461,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -481,7 +481,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -501,7 +501,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -521,7 +521,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -541,7 +541,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -569,7 +569,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -597,7 +597,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -617,7 +617,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -637,7 +637,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -657,7 +657,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -677,7 +677,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -705,7 +705,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -733,7 +733,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesAnyType.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesAnyType.java index e34e795140e..20adedf4e17 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesAnyType.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesAnyType.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesAnyType { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesArray.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesArray.java index 60c394e892f..f3c8dc29d31 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesArray.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesArray.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesArray { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesBoolean.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesBoolean.java index 514ae38a48a..bad14a6053e 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesBoolean.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesBoolean.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesBoolean { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesClass.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesClass.java index 6284bd0159c..1f5f1a2b71d 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesClass.java @@ -74,7 +74,7 @@ public class AdditionalPropertiesClass { /** * Get mapString * @return mapString - */ + */ @Schema(name = "map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_string") @@ -102,7 +102,7 @@ public class AdditionalPropertiesClass { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @Schema(name = "map_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_number") @@ -130,7 +130,7 @@ public class AdditionalPropertiesClass { /** * Get mapInteger * @return mapInteger - */ + */ @Schema(name = "map_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_integer") @@ -158,7 +158,7 @@ public class AdditionalPropertiesClass { /** * Get mapBoolean * @return mapBoolean - */ + */ @Schema(name = "map_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_boolean") @@ -186,7 +186,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @Schema(name = "map_array_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_integer") @@ -214,7 +214,7 @@ public class AdditionalPropertiesClass { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @Schema(name = "map_array_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_array_anytype") @@ -242,7 +242,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @Schema(name = "map_map_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_string") @@ -270,7 +270,7 @@ public class AdditionalPropertiesClass { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @Schema(name = "map_map_anytype", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_anytype") @@ -290,7 +290,7 @@ public class AdditionalPropertiesClass { /** * Get anytype1 * @return anytype1 - */ + */ @Schema(name = "anytype_1", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_1") @@ -310,7 +310,7 @@ public class AdditionalPropertiesClass { /** * Get anytype2 * @return anytype2 - */ + */ @Schema(name = "anytype_2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_2") @@ -330,7 +330,7 @@ public class AdditionalPropertiesClass { /** * Get anytype3 * @return anytype3 - */ + */ @Schema(name = "anytype_3", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesInteger.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesInteger.java index 7a6e9239a29..6fc9777b334 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesInteger.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesInteger.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesInteger { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesNumber.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesNumber.java index fec175b406f..9a75e880f5c 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesNumber.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesNumber.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesNumber { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesObject.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesObject.java index a8246d64591..83957308773 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesObject.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesObject.java @@ -36,7 +36,7 @@ public class AdditionalPropertiesObject { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesString.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesString.java index 870221d3a18..5eed16c6dc6 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesString.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/AdditionalPropertiesString.java @@ -35,7 +35,7 @@ public class AdditionalPropertiesString { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Animal.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Animal.java index 146af42bbca..036d6921567 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Animal.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Animal.java @@ -58,7 +58,7 @@ public class Animal { /** * Get className * @return className - */ + */ @NotNull @Schema(name = "className", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("className") @@ -78,7 +78,7 @@ public class Animal { /** * Get color * @return color - */ + */ @Schema(name = "color", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("color") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfArrayOfNumberOnly.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfArrayOfNumberOnly.java index 200729c0347..6ea77633fc6 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnly { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @Schema(name = "ArrayArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfNumberOnly.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfNumberOnly.java index 422af1e4b3a..0af18a94ecd 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfNumberOnly.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayOfNumberOnly.java @@ -44,7 +44,7 @@ public class ArrayOfNumberOnly { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @Schema(name = "ArrayNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayTest.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayTest.java index c1f12a760ae..0eff0975540 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayTest.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ArrayTest.java @@ -50,7 +50,7 @@ public class ArrayTest { /** * Get arrayOfString * @return arrayOfString - */ + */ @Schema(name = "array_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_of_string") @@ -78,7 +78,7 @@ public class ArrayTest { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @Schema(name = "array_array_of_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_integer") @@ -106,7 +106,7 @@ public class ArrayTest { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @Schema(name = "array_array_of_model", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/BigCat.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/BigCat.java index b98f82bc651..8feefcd8dc2 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/BigCat.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/BigCat.java @@ -87,7 +87,7 @@ public class BigCat extends Cat { /** * Get kind * @return kind - */ + */ @Schema(name = "kind", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("kind") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Capitalization.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Capitalization.java index 19fcf7b932b..826fc791ce3 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Capitalization.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Capitalization.java @@ -41,7 +41,7 @@ public class Capitalization { /** * Get smallCamel * @return smallCamel - */ + */ @Schema(name = "smallCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("smallCamel") @@ -61,7 +61,7 @@ public class Capitalization { /** * Get capitalCamel * @return capitalCamel - */ + */ @Schema(name = "CapitalCamel", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("CapitalCamel") @@ -81,7 +81,7 @@ public class Capitalization { /** * Get smallSnake * @return smallSnake - */ + */ @Schema(name = "small_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("small_Snake") @@ -101,7 +101,7 @@ public class Capitalization { /** * Get capitalSnake * @return capitalSnake - */ + */ @Schema(name = "Capital_Snake", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("Capital_Snake") @@ -121,7 +121,7 @@ public class Capitalization { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @Schema(name = "SCA_ETH_Flow_Points", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("SCA_ETH_Flow_Points") @@ -141,7 +141,7 @@ public class Capitalization { /** * Name of the pet * @return ATT_NAME - */ + */ @Schema(name = "ATT_NAME", description = "Name of the pet ", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Cat.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Cat.java index facc2d6cd56..b605fc78429 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Cat.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Cat.java @@ -55,7 +55,7 @@ public class Cat extends Animal { /** * Get declawed * @return declawed - */ + */ @Schema(name = "declawed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Category.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Category.java index 076fe28b5ee..3b428aa9236 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Category.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Category.java @@ -44,7 +44,7 @@ public class Category { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -64,7 +64,7 @@ public class Category { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ChildWithNullable.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ChildWithNullable.java index 5d52e2976f7..d8e7ee9fb87 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ChildWithNullable.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ChildWithNullable.java @@ -39,7 +39,7 @@ public class ChildWithNullable extends ParentWithNullable { /** * Get otherProperty * @return otherProperty - */ + */ @Schema(name = "otherProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ClassModel.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ClassModel.java index 23ac0594041..1b00f3a22fa 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ClassModel.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ClassModel.java @@ -32,7 +32,7 @@ public class ClassModel { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "_class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("_class") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Client.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Client.java index eacf1b02ef9..31633805baf 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Client.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Client.java @@ -31,7 +31,7 @@ public class Client { /** * Get client * @return client - */ + */ @Schema(name = "client", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("client") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ContainerDefaultValue.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ContainerDefaultValue.java index 024d098f167..0e0c71f9255 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ContainerDefaultValue.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ContainerDefaultValue.java @@ -66,7 +66,7 @@ public class ContainerDefaultValue { /** * Get nullableArray * @return nullableArray - */ + */ @Schema(name = "nullable_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array") @@ -94,7 +94,7 @@ public class ContainerDefaultValue { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @Schema(name = "nullable_required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("nullable_required_array") @@ -122,7 +122,7 @@ public class ContainerDefaultValue { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @Schema(name = "required_array", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("required_array") @@ -150,7 +150,7 @@ public class ContainerDefaultValue { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @Schema(name = "nullable_array_with_default", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Dog.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Dog.java index e695ead66be..39fb3c138e2 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Dog.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Dog.java @@ -47,7 +47,7 @@ public class Dog extends Animal { /** * Get breed * @return breed - */ + */ @Schema(name = "breed", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("breed") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumArrays.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumArrays.java index 3ebd84e9021..9c412ac8635 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumArrays.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumArrays.java @@ -108,7 +108,7 @@ public class EnumArrays { /** * Get justSymbol * @return justSymbol - */ + */ @Schema(name = "just_symbol", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("just_symbol") @@ -136,7 +136,7 @@ public class EnumArrays { /** * Get arrayEnum * @return arrayEnum - */ + */ @Schema(name = "array_enum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumTest.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumTest.java index 21a12688ff0..3f74eca2339 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumTest.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/EnumTest.java @@ -198,7 +198,7 @@ public class EnumTest { /** * Get enumString * @return enumString - */ + */ @Schema(name = "enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_string") @@ -218,7 +218,7 @@ public class EnumTest { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @Schema(name = "enum_string_required", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("enum_string_required") @@ -238,7 +238,7 @@ public class EnumTest { /** * Get enumInteger * @return enumInteger - */ + */ @Schema(name = "enum_integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_integer") @@ -258,7 +258,7 @@ public class EnumTest { /** * Get enumNumber * @return enumNumber - */ + */ @Schema(name = "enum_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("enum_number") @@ -278,7 +278,7 @@ public class EnumTest { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @Schema(name = "outerEnum", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/File.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/File.java index 09f1c5046b2..22991ac0eee 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/File.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/File.java @@ -32,7 +32,7 @@ public class File { /** * Test capitalization * @return sourceURI - */ + */ @Schema(name = "sourceURI", description = "Test capitalization", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FileSchemaTestClass.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FileSchemaTestClass.java index 68126cfc5b4..ef5a8000757 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FileSchemaTestClass.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FileSchemaTestClass.java @@ -38,7 +38,7 @@ public class FileSchemaTestClass { /** * Get file * @return file - */ + */ @Valid @Schema(name = "file", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("file") @@ -66,7 +66,7 @@ public class FileSchemaTestClass { /** * Get files * @return files - */ + */ @Valid @Schema(name = "files", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("files") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FormatTest.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FormatTest.java index 475fd20a8c4..3fc564f82ec 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FormatTest.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/FormatTest.java @@ -83,7 +83,7 @@ public class FormatTest { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @Schema(name = "integer", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("integer") @@ -105,7 +105,7 @@ public class FormatTest { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @Schema(name = "int32", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int32") @@ -125,7 +125,7 @@ public class FormatTest { /** * Get int64 * @return int64 - */ + */ @Schema(name = "int64", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("int64") @@ -147,7 +147,7 @@ public class FormatTest { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @Schema(name = "number", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number") @@ -169,7 +169,7 @@ public class FormatTest { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @Schema(name = "float", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("float") @@ -191,7 +191,7 @@ public class FormatTest { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @Schema(name = "double", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("double") @@ -211,7 +211,7 @@ public class FormatTest { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @Schema(name = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("string") @@ -231,7 +231,7 @@ public class FormatTest { /** * Get _byte * @return _byte - */ + */ @NotNull @Schema(name = "byte", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("byte") @@ -251,7 +251,7 @@ public class FormatTest { /** * Get binary * @return binary - */ + */ @Valid @Schema(name = "binary", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("binary") @@ -271,7 +271,7 @@ public class FormatTest { /** * Get date * @return date - */ + */ @NotNull @Valid @Schema(name = "date", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("date") @@ -291,7 +291,7 @@ public class FormatTest { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -311,7 +311,7 @@ public class FormatTest { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", example = "72f98069-206d-4f12-9f12-3d1e525a8e84", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -331,7 +331,7 @@ public class FormatTest { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @Schema(name = "password", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("password") @@ -351,7 +351,7 @@ public class FormatTest { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @Schema(name = "BigDecimal", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/HasOnlyReadOnly.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/HasOnlyReadOnly.java index 64b95f630d9..be184c75181 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/HasOnlyReadOnly.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/HasOnlyReadOnly.java @@ -35,7 +35,7 @@ public class HasOnlyReadOnly { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -55,7 +55,7 @@ public class HasOnlyReadOnly { /** * Get foo * @return foo - */ + */ @Schema(name = "foo", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("foo") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MapTest.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MapTest.java index 916b8221cff..bb8e6cb632b 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MapTest.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MapTest.java @@ -87,7 +87,7 @@ public class MapTest { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @Schema(name = "map_map_of_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_map_of_string") @@ -115,7 +115,7 @@ public class MapTest { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @Schema(name = "map_of_enum_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map_of_enum_string") @@ -143,7 +143,7 @@ public class MapTest { /** * Get directMap * @return directMap - */ + */ @Schema(name = "direct_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("direct_map") @@ -171,7 +171,7 @@ public class MapTest { /** * Get indirectMap * @return indirectMap - */ + */ @Schema(name = "indirect_map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MixedPropertiesAndAdditionalPropertiesClass.java index fb3eb924e93..cc282a3a4b6 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MixedPropertiesAndAdditionalPropertiesClass.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/MixedPropertiesAndAdditionalPropertiesClass.java @@ -43,7 +43,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get uuid * @return uuid - */ + */ @Valid @Schema(name = "uuid", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("uuid") @@ -63,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get dateTime * @return dateTime - */ + */ @Valid @Schema(name = "dateTime", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("dateTime") @@ -91,7 +91,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass { /** * Get map * @return map - */ + */ @Valid @Schema(name = "map", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("map") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Model200Response.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Model200Response.java index fe7aae944ea..ea8b88815c7 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Model200Response.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Model200Response.java @@ -36,7 +36,7 @@ public class Model200Response { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") @@ -56,7 +56,7 @@ public class Model200Response { /** * Get propertyClass * @return propertyClass - */ + */ @Schema(name = "class", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("class") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelApiResponse.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelApiResponse.java index 1651a0a8acd..5e96065651d 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelApiResponse.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelApiResponse.java @@ -37,7 +37,7 @@ public class ModelApiResponse { /** * Get code * @return code - */ + */ @Schema(name = "code", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("code") @@ -57,7 +57,7 @@ public class ModelApiResponse { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -77,7 +77,7 @@ public class ModelApiResponse { /** * Get message * @return message - */ + */ @Schema(name = "message", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("message") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelList.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelList.java index 0c369c17f51..3b6033a4a16 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelList.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelList.java @@ -33,7 +33,7 @@ public class ModelList { /** * Get _123list * @return _123list - */ + */ @Schema(name = "123-list", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelReturn.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelReturn.java index a85c5799ddb..e1e8f0a0631 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelReturn.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ModelReturn.java @@ -34,7 +34,7 @@ public class ModelReturn { /** * Get _return * @return _return - */ + */ @Schema(name = "return", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("return") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Name.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Name.java index 4edf6aca5b8..90c84719288 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Name.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Name.java @@ -49,7 +49,7 @@ public class Name { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -69,7 +69,7 @@ public class Name { /** * Get snakeCase * @return snakeCase - */ + */ @Schema(name = "snake_case", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("snake_case") @@ -89,7 +89,7 @@ public class Name { /** * Get property * @return property - */ + */ @Schema(name = "property", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property") @@ -109,7 +109,7 @@ public class Name { /** * Get _123number * @return _123number - */ + */ @Schema(name = "123Number", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NullableMapProperty.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NullableMapProperty.java index 8a638731148..245bafcab2b 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NullableMapProperty.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NullableMapProperty.java @@ -45,7 +45,7 @@ public class NullableMapProperty { /** * Get languageValues * @return languageValues - */ + */ @Schema(name = "languageValues", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NumberOnly.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NumberOnly.java index f7230082732..d69d125101e 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NumberOnly.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/NumberOnly.java @@ -32,7 +32,7 @@ public class NumberOnly { /** * Get justNumber * @return justNumber - */ + */ @Valid @Schema(name = "JustNumber", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Order.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Order.java index 633753b4ce0..4963c95bcc7 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Order.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Order.java @@ -82,7 +82,7 @@ public class Order { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -102,7 +102,7 @@ public class Order { /** * Get petId * @return petId - */ + */ @Schema(name = "petId", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("petId") @@ -122,7 +122,7 @@ public class Order { /** * Get quantity * @return quantity - */ + */ @Schema(name = "quantity", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("quantity") @@ -142,7 +142,7 @@ public class Order { /** * Get shipDate * @return shipDate - */ + */ @Valid @Schema(name = "shipDate", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("shipDate") @@ -162,7 +162,7 @@ public class Order { /** * Order Status * @return status - */ + */ @Schema(name = "status", description = "Order Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -182,7 +182,7 @@ public class Order { /** * Get complete * @return complete - */ + */ @Schema(name = "complete", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("complete") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/OuterComposite.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/OuterComposite.java index 8b9639e64bd..06ddfad8e20 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/OuterComposite.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/OuterComposite.java @@ -36,7 +36,7 @@ public class OuterComposite { /** * Get myNumber * @return myNumber - */ + */ @Valid @Schema(name = "my_number", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_number") @@ -56,7 +56,7 @@ public class OuterComposite { /** * Get myString * @return myString - */ + */ @Schema(name = "my_string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_string") @@ -76,7 +76,7 @@ public class OuterComposite { /** * Get myBoolean * @return myBoolean - */ + */ @Schema(name = "my_boolean", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java index d053a7c0341..4130e21af4c 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java @@ -82,7 +82,7 @@ public class ParentWithNullable { /** * Get type * @return type - */ + */ @Schema(name = "type", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("type") @@ -102,7 +102,7 @@ public class ParentWithNullable { /** * Get nullableProperty * @return nullableProperty - */ + */ @Schema(name = "nullableProperty", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Pet.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Pet.java index eac0bcd38b4..0526a3dc5e9 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Pet.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Pet.java @@ -102,7 +102,7 @@ public class Pet { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -122,7 +122,7 @@ public class Pet { /** * Get category * @return category - */ + */ @Valid @Schema(name = "category", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("category") @@ -142,7 +142,7 @@ public class Pet { /** * Get name * @return name - */ + */ @NotNull @Schema(name = "name", example = "doggie", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("name") @@ -170,7 +170,7 @@ public class Pet { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @Schema(name = "photoUrls", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("photoUrls") @@ -199,7 +199,7 @@ public class Pet { /** * Get tags * @return tags - */ + */ @Valid @Schema(name = "tags", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("tags") @@ -220,7 +220,7 @@ public class Pet { * pet status in the store * @return status * @deprecated - */ + */ @Schema(name = "status", description = "pet status in the store", deprecated = true, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("status") @@ -231,7 +231,7 @@ public class Pet { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ReadOnlyFirst.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ReadOnlyFirst.java index a8d4e4c8f32..fc8ca900de2 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ReadOnlyFirst.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ReadOnlyFirst.java @@ -33,7 +33,7 @@ public class ReadOnlyFirst { /** * Get bar * @return bar - */ + */ @Schema(name = "bar", accessMode = Schema.AccessMode.READ_ONLY, requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("bar") @@ -53,7 +53,7 @@ public class ReadOnlyFirst { /** * Get baz * @return baz - */ + */ @Schema(name = "baz", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("baz") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ResponseObjectWithDifferentFieldNames.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ResponseObjectWithDifferentFieldNames.java index 0c039b259bb..401abc1458c 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ResponseObjectWithDifferentFieldNames.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ResponseObjectWithDifferentFieldNames.java @@ -37,7 +37,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @Schema(name = "normalPropertyName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("normalPropertyName") @@ -57,7 +57,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @Schema(name = "UPPER_CASE_PROPERTY_SNAKE", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -77,7 +77,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @Schema(name = "lower-case-property-dashes", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lower-case-property-dashes") @@ -97,7 +97,7 @@ public class ResponseObjectWithDifferentFieldNames { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @Schema(name = "property name with spaces", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/SpecialModelName.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/SpecialModelName.java index 969ce8ff2b7..e136b5ae659 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/SpecialModelName.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/SpecialModelName.java @@ -33,7 +33,7 @@ public class SpecialModelName { /** * Get $specialPropertyName * @return $specialPropertyName - */ + */ @Schema(name = "$special[property.name]", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Tag.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Tag.java index 20224c532fb..cfd8cbd70ef 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Tag.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/Tag.java @@ -33,7 +33,7 @@ public class Tag { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -53,7 +53,7 @@ public class Tag { /** * Get name * @return name - */ + */ @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderDefault.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderDefault.java index 7c8453ec51c..2a97914e414 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderDefault.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderDefault.java @@ -59,7 +59,7 @@ public class TypeHolderDefault { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -79,7 +79,7 @@ public class TypeHolderDefault { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -99,7 +99,7 @@ public class TypeHolderDefault { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -119,7 +119,7 @@ public class TypeHolderDefault { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -147,7 +147,7 @@ public class TypeHolderDefault { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderExample.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderExample.java index 9742ce14682..7acd99b9609 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderExample.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/TypeHolderExample.java @@ -62,7 +62,7 @@ public class TypeHolderExample { /** * Get stringItem * @return stringItem - */ + */ @NotNull @Schema(name = "string_item", example = "what", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderExample { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @Schema(name = "number_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderExample { /** * Get floatItem * @return floatItem - */ + */ @NotNull @Schema(name = "float_item", example = "1.234", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("float_item") @@ -122,7 +122,7 @@ public class TypeHolderExample { /** * Get integerItem * @return integerItem - */ + */ @NotNull @Schema(name = "integer_item", example = "-2", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("integer_item") @@ -142,7 +142,7 @@ public class TypeHolderExample { /** * Get boolItem * @return boolItem - */ + */ @NotNull @Schema(name = "bool_item", example = "true", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("bool_item") @@ -170,7 +170,7 @@ public class TypeHolderExample { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @Schema(name = "array_item", example = "[0,1,2,3]", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/User.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/User.java index 1acdf015254..3263d2c4ef1 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/User.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/User.java @@ -45,7 +45,7 @@ public class User { /** * Get id * @return id - */ + */ @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("id") @@ -65,7 +65,7 @@ public class User { /** * Get username * @return username - */ + */ @Schema(name = "username", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("username") @@ -85,7 +85,7 @@ public class User { /** * Get firstName * @return firstName - */ + */ @Schema(name = "firstName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("firstName") @@ -105,7 +105,7 @@ public class User { /** * Get lastName * @return lastName - */ + */ @Schema(name = "lastName", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("lastName") @@ -125,7 +125,7 @@ public class User { /** * Get email * @return email - */ + */ @Schema(name = "email", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("email") @@ -145,7 +145,7 @@ public class User { /** * Get password * @return password - */ + */ @Schema(name = "password", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("password") @@ -165,7 +165,7 @@ public class User { /** * Get phone * @return phone - */ + */ @Schema(name = "phone", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("phone") @@ -185,7 +185,7 @@ public class User { /** * User Status * @return userStatus - */ + */ @Schema(name = "userStatus", description = "User Status", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/XmlItem.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/XmlItem.java index 3fa364e0a45..99edb8648e7 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/XmlItem.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/XmlItem.java @@ -100,7 +100,7 @@ public class XmlItem { /** * Get attributeString * @return attributeString - */ + */ @Schema(name = "attribute_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_string") @@ -120,7 +120,7 @@ public class XmlItem { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @Schema(name = "attribute_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_number") @@ -140,7 +140,7 @@ public class XmlItem { /** * Get attributeInteger * @return attributeInteger - */ + */ @Schema(name = "attribute_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_integer") @@ -160,7 +160,7 @@ public class XmlItem { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @Schema(name = "attribute_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("attribute_boolean") @@ -188,7 +188,7 @@ public class XmlItem { /** * Get wrappedArray * @return wrappedArray - */ + */ @Schema(name = "wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("wrapped_array") @@ -208,7 +208,7 @@ public class XmlItem { /** * Get nameString * @return nameString - */ + */ @Schema(name = "name_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_string") @@ -228,7 +228,7 @@ public class XmlItem { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @Schema(name = "name_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_number") @@ -248,7 +248,7 @@ public class XmlItem { /** * Get nameInteger * @return nameInteger - */ + */ @Schema(name = "name_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_integer") @@ -268,7 +268,7 @@ public class XmlItem { /** * Get nameBoolean * @return nameBoolean - */ + */ @Schema(name = "name_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_boolean") @@ -296,7 +296,7 @@ public class XmlItem { /** * Get nameArray * @return nameArray - */ + */ @Schema(name = "name_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_array") @@ -324,7 +324,7 @@ public class XmlItem { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @Schema(name = "name_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("name_wrapped_array") @@ -344,7 +344,7 @@ public class XmlItem { /** * Get prefixString * @return prefixString - */ + */ @Schema(name = "prefix_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_string") @@ -364,7 +364,7 @@ public class XmlItem { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @Schema(name = "prefix_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_number") @@ -384,7 +384,7 @@ public class XmlItem { /** * Get prefixInteger * @return prefixInteger - */ + */ @Schema(name = "prefix_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_integer") @@ -404,7 +404,7 @@ public class XmlItem { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @Schema(name = "prefix_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_boolean") @@ -432,7 +432,7 @@ public class XmlItem { /** * Get prefixArray * @return prefixArray - */ + */ @Schema(name = "prefix_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_array") @@ -460,7 +460,7 @@ public class XmlItem { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @Schema(name = "prefix_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_wrapped_array") @@ -480,7 +480,7 @@ public class XmlItem { /** * Get namespaceString * @return namespaceString - */ + */ @Schema(name = "namespace_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_string") @@ -500,7 +500,7 @@ public class XmlItem { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @Schema(name = "namespace_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_number") @@ -520,7 +520,7 @@ public class XmlItem { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @Schema(name = "namespace_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_integer") @@ -540,7 +540,7 @@ public class XmlItem { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @Schema(name = "namespace_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_boolean") @@ -568,7 +568,7 @@ public class XmlItem { /** * Get namespaceArray * @return namespaceArray - */ + */ @Schema(name = "namespace_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_array") @@ -596,7 +596,7 @@ public class XmlItem { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @Schema(name = "namespace_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("namespace_wrapped_array") @@ -616,7 +616,7 @@ public class XmlItem { /** * Get prefixNsString * @return prefixNsString - */ + */ @Schema(name = "prefix_ns_string", example = "string", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_string") @@ -636,7 +636,7 @@ public class XmlItem { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @Schema(name = "prefix_ns_number", example = "1.234", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_number") @@ -656,7 +656,7 @@ public class XmlItem { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @Schema(name = "prefix_ns_integer", example = "-2", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_integer") @@ -676,7 +676,7 @@ public class XmlItem { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @Schema(name = "prefix_ns_boolean", example = "true", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_boolean") @@ -704,7 +704,7 @@ public class XmlItem { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @Schema(name = "prefix_ns_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_array") @@ -732,7 +732,7 @@ public class XmlItem { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @Schema(name = "prefix_ns_wrapped_array", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("prefix_ns_wrapped_array") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java index 30b02140e51..4f49ad30ae7 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesAnyTypeDto.java @@ -38,7 +38,7 @@ public class AdditionalPropertiesAnyTypeDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java index 7824541755c..ea716170484 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesArrayDto.java @@ -39,7 +39,7 @@ public class AdditionalPropertiesArrayDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java index 360d1a15917..ebb783cd9bb 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesBooleanDto.java @@ -38,7 +38,7 @@ public class AdditionalPropertiesBooleanDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java index a22e27a0d04..c308861a5d5 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesClassDto.java @@ -77,7 +77,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapString * @return mapString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_string") @@ -105,7 +105,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapNumber * @return mapNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_number") @@ -133,7 +133,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapInteger * @return mapInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_integer") @@ -161,7 +161,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapBoolean * @return mapBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_boolean") @@ -189,7 +189,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapArrayInteger * @return mapArrayInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_integer") @@ -217,7 +217,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapArrayAnytype * @return mapArrayAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_array_anytype") @@ -245,7 +245,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapMapString * @return mapMapString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_string") @@ -273,7 +273,7 @@ public class AdditionalPropertiesClassDto { /** * Get mapMapAnytype * @return mapMapAnytype - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_anytype") @@ -293,7 +293,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype1 * @return anytype1 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_1") @@ -313,7 +313,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype2 * @return anytype2 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_2") @@ -333,7 +333,7 @@ public class AdditionalPropertiesClassDto { /** * Get anytype3 * @return anytype3 - */ + */ @ApiModelProperty(value = "") @JsonProperty("anytype_3") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java index 6fd7f4d8161..68538d47f19 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesIntegerDto.java @@ -38,7 +38,7 @@ public class AdditionalPropertiesIntegerDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java index 15ce97f4de4..51adab20c2f 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesNumberDto.java @@ -39,7 +39,7 @@ public class AdditionalPropertiesNumberDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java index fbe004bc217..21086b90138 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesObjectDto.java @@ -39,7 +39,7 @@ public class AdditionalPropertiesObjectDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java index 48ca6d80025..df5df623dc7 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AdditionalPropertiesStringDto.java @@ -38,7 +38,7 @@ public class AdditionalPropertiesStringDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AnimalDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AnimalDto.java index 277c7171edc..648183fec11 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AnimalDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/AnimalDto.java @@ -60,7 +60,7 @@ public class AnimalDto { /** * Get className * @return className - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("className") @@ -80,7 +80,7 @@ public class AnimalDto { /** * Get color * @return color - */ + */ @ApiModelProperty(value = "") @JsonProperty("color") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ApiResponseDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ApiResponseDto.java index 501a5e4189c..4b65aa93c45 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ApiResponseDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ApiResponseDto.java @@ -38,7 +38,7 @@ public class ApiResponseDto { /** * Get code * @return code - */ + */ @ApiModelProperty(value = "") @JsonProperty("code") @@ -58,7 +58,7 @@ public class ApiResponseDto { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -78,7 +78,7 @@ public class ApiResponseDto { /** * Get message * @return message - */ + */ @ApiModelProperty(value = "") @JsonProperty("message") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java index 02223af69eb..d3147f8cdd1 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfArrayOfNumberOnlyDto.java @@ -47,7 +47,7 @@ public class ArrayOfArrayOfNumberOnlyDto { /** * Get arrayArrayNumber * @return arrayArrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayArrayNumber") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java index 870b3e960a2..9eade3bbdb3 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayOfNumberOnlyDto.java @@ -47,7 +47,7 @@ public class ArrayOfNumberOnlyDto { /** * Get arrayNumber * @return arrayNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("ArrayNumber") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayTestDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayTestDto.java index bdfd53d6f73..a04d3d5a1e9 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayTestDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ArrayTestDto.java @@ -53,7 +53,7 @@ public class ArrayTestDto { /** * Get arrayOfString * @return arrayOfString - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_of_string") @@ -81,7 +81,7 @@ public class ArrayTestDto { /** * Get arrayArrayOfInteger * @return arrayArrayOfInteger - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_integer") @@ -109,7 +109,7 @@ public class ArrayTestDto { /** * Get arrayArrayOfModel * @return arrayArrayOfModel - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("array_array_of_model") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/BigCatDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/BigCatDto.java index 62e4b921966..3e7cb784302 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/BigCatDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/BigCatDto.java @@ -90,7 +90,7 @@ public class BigCatDto extends CatDto { /** * Get kind * @return kind - */ + */ @ApiModelProperty(value = "") @JsonProperty("kind") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CapitalizationDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CapitalizationDto.java index b0d865de9d0..4ef288d786a 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CapitalizationDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CapitalizationDto.java @@ -44,7 +44,7 @@ public class CapitalizationDto { /** * Get smallCamel * @return smallCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("smallCamel") @@ -64,7 +64,7 @@ public class CapitalizationDto { /** * Get capitalCamel * @return capitalCamel - */ + */ @ApiModelProperty(value = "") @JsonProperty("CapitalCamel") @@ -84,7 +84,7 @@ public class CapitalizationDto { /** * Get smallSnake * @return smallSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("small_Snake") @@ -104,7 +104,7 @@ public class CapitalizationDto { /** * Get capitalSnake * @return capitalSnake - */ + */ @ApiModelProperty(value = "") @JsonProperty("Capital_Snake") @@ -124,7 +124,7 @@ public class CapitalizationDto { /** * Get scAETHFlowPoints * @return scAETHFlowPoints - */ + */ @ApiModelProperty(value = "") @JsonProperty("SCA_ETH_Flow_Points") @@ -144,7 +144,7 @@ public class CapitalizationDto { /** * Name of the pet * @return ATT_NAME - */ + */ @ApiModelProperty(value = "Name of the pet ") @JsonProperty("ATT_NAME") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CatDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CatDto.java index ec9afcbe80d..9e8349a7f2c 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CatDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CatDto.java @@ -57,7 +57,7 @@ public class CatDto extends AnimalDto { /** * Get declawed * @return declawed - */ + */ @ApiModelProperty(value = "") @JsonProperty("declawed") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CategoryDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CategoryDto.java index 4ff104f4817..06fd9921930 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CategoryDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/CategoryDto.java @@ -47,7 +47,7 @@ public class CategoryDto { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -67,7 +67,7 @@ public class CategoryDto { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ChildWithNullableDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ChildWithNullableDto.java index b5f6371f89b..c5634c76fbd 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ChildWithNullableDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ChildWithNullableDto.java @@ -42,7 +42,7 @@ public class ChildWithNullableDto extends ParentWithNullableDto { /** * Get otherProperty * @return otherProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("otherProperty") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClassModelDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClassModelDto.java index 85f8ff2fc79..3a9ccef2f81 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClassModelDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClassModelDto.java @@ -35,7 +35,7 @@ public class ClassModelDto { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("_class") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClientDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClientDto.java index 288c046aa3d..8c7790bb866 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClientDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ClientDto.java @@ -34,7 +34,7 @@ public class ClientDto { /** * Get client * @return client - */ + */ @ApiModelProperty(value = "") @JsonProperty("client") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java index 0d6eecce869..f7f6dc07381 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ContainerDefaultValueDto.java @@ -69,7 +69,7 @@ public class ContainerDefaultValueDto { /** * Get nullableArray * @return nullableArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array") @@ -97,7 +97,7 @@ public class ContainerDefaultValueDto { /** * Get nullableRequiredArray * @return nullableRequiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("nullable_required_array") @@ -125,7 +125,7 @@ public class ContainerDefaultValueDto { /** * Get requiredArray * @return requiredArray - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("required_array") @@ -153,7 +153,7 @@ public class ContainerDefaultValueDto { /** * Get nullableArrayWithDefault * @return nullableArrayWithDefault - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullable_array_with_default") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/DogDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/DogDto.java index f2813e7d582..092e98b17fe 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/DogDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/DogDto.java @@ -50,7 +50,7 @@ public class DogDto extends AnimalDto { /** * Get breed * @return breed - */ + */ @ApiModelProperty(value = "") @JsonProperty("breed") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumArraysDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumArraysDto.java index 4c59fd93ee5..678350cd3f8 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumArraysDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumArraysDto.java @@ -111,7 +111,7 @@ public class EnumArraysDto { /** * Get justSymbol * @return justSymbol - */ + */ @ApiModelProperty(value = "") @JsonProperty("just_symbol") @@ -139,7 +139,7 @@ public class EnumArraysDto { /** * Get arrayEnum * @return arrayEnum - */ + */ @ApiModelProperty(value = "") @JsonProperty("array_enum") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumTestDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumTestDto.java index 1c869873668..a1c6cdbe0f9 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumTestDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/EnumTestDto.java @@ -199,7 +199,7 @@ public class EnumTestDto { /** * Get enumString * @return enumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_string") @@ -219,7 +219,7 @@ public class EnumTestDto { /** * Get enumStringRequired * @return enumStringRequired - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("enum_string_required") @@ -239,7 +239,7 @@ public class EnumTestDto { /** * Get enumInteger * @return enumInteger - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_integer") @@ -259,7 +259,7 @@ public class EnumTestDto { /** * Get enumNumber * @return enumNumber - */ + */ @ApiModelProperty(value = "") @JsonProperty("enum_number") @@ -279,7 +279,7 @@ public class EnumTestDto { /** * Get outerEnum * @return outerEnum - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("outerEnum") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileDto.java index 7620236c603..5b6f73dddd7 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileDto.java @@ -35,7 +35,7 @@ public class FileDto { /** * Test capitalization * @return sourceURI - */ + */ @ApiModelProperty(value = "Test capitalization") @JsonProperty("sourceURI") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java index 752faf5f4fc..ef443697994 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java @@ -41,7 +41,7 @@ public class FileSchemaTestClassDto { /** * Get file * @return file - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("file") @@ -69,7 +69,7 @@ public class FileSchemaTestClassDto { /** * Get files * @return files - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("files") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FormatTestDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FormatTestDto.java index 1fed1b3f6d4..23309cab974 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FormatTestDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/FormatTestDto.java @@ -84,7 +84,7 @@ public class FormatTestDto { * minimum: 10 * maximum: 100 * @return integer - */ + */ @Min(10) @Max(100) @ApiModelProperty(value = "") @JsonProperty("integer") @@ -106,7 +106,7 @@ public class FormatTestDto { * minimum: 20 * maximum: 200 * @return int32 - */ + */ @Min(20) @Max(200) @ApiModelProperty(value = "") @JsonProperty("int32") @@ -126,7 +126,7 @@ public class FormatTestDto { /** * Get int64 * @return int64 - */ + */ @ApiModelProperty(value = "") @JsonProperty("int64") @@ -148,7 +148,7 @@ public class FormatTestDto { * minimum: 32.1 * maximum: 543.2 * @return number - */ + */ @NotNull @Valid @DecimalMin("32.1") @DecimalMax("543.2") @ApiModelProperty(required = true, value = "") @JsonProperty("number") @@ -170,7 +170,7 @@ public class FormatTestDto { * minimum: 54.3 * maximum: 987.6 * @return _float - */ + */ @DecimalMin("54.3") @DecimalMax("987.6") @ApiModelProperty(value = "") @JsonProperty("float") @@ -192,7 +192,7 @@ public class FormatTestDto { * minimum: 67.8 * maximum: 123.4 * @return _double - */ + */ @DecimalMin("67.8") @DecimalMax("123.4") @ApiModelProperty(value = "") @JsonProperty("double") @@ -212,7 +212,7 @@ public class FormatTestDto { /** * Get string * @return string - */ + */ @Pattern(regexp = "/[a-z]/i") @ApiModelProperty(value = "") @JsonProperty("string") @@ -232,7 +232,7 @@ public class FormatTestDto { /** * Get _byte * @return _byte - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("byte") @@ -252,7 +252,7 @@ public class FormatTestDto { /** * Get binary * @return binary - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("binary") @@ -272,7 +272,7 @@ public class FormatTestDto { /** * Get date * @return date - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("date") @@ -292,7 +292,7 @@ public class FormatTestDto { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -312,7 +312,7 @@ public class FormatTestDto { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "") @JsonProperty("uuid") @@ -332,7 +332,7 @@ public class FormatTestDto { /** * Get password * @return password - */ + */ @NotNull @Size(min = 10, max = 64) @ApiModelProperty(required = true, value = "") @JsonProperty("password") @@ -352,7 +352,7 @@ public class FormatTestDto { /** * Get bigDecimal * @return bigDecimal - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("BigDecimal") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java index 8e8a2efe989..ac51fd11836 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/HasOnlyReadOnlyDto.java @@ -36,7 +36,7 @@ public class HasOnlyReadOnlyDto { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class HasOnlyReadOnlyDto { /** * Get foo * @return foo - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("foo") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ListDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ListDto.java index f2dbade9f3e..d1d3fe2d861 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ListDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ListDto.java @@ -34,7 +34,7 @@ public class ListDto { /** * Get _123List * @return _123List - */ + */ @ApiModelProperty(value = "") @JsonProperty("123-list") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MapTestDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MapTestDto.java index 127c62a29b6..6c98296627d 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MapTestDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MapTestDto.java @@ -90,7 +90,7 @@ public class MapTestDto { /** * Get mapMapOfString * @return mapMapOfString - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map_map_of_string") @@ -118,7 +118,7 @@ public class MapTestDto { /** * Get mapOfEnumString * @return mapOfEnumString - */ + */ @ApiModelProperty(value = "") @JsonProperty("map_of_enum_string") @@ -146,7 +146,7 @@ public class MapTestDto { /** * Get directMap * @return directMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("direct_map") @@ -174,7 +174,7 @@ public class MapTestDto { /** * Get indirectMap * @return indirectMap - */ + */ @ApiModelProperty(value = "") @JsonProperty("indirect_map") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java index f561fb2ee27..e53545f57dc 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/MixedPropertiesAndAdditionalPropertiesClassDto.java @@ -46,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get uuid * @return uuid - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("uuid") @@ -66,7 +66,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get dateTime * @return dateTime - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("dateTime") @@ -94,7 +94,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassDto { /** * Get map * @return map - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("map") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/Model200ResponseDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/Model200ResponseDto.java index 2c49c931488..435cc8aa1d3 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/Model200ResponseDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/Model200ResponseDto.java @@ -37,7 +37,7 @@ public class Model200ResponseDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") @@ -57,7 +57,7 @@ public class Model200ResponseDto { /** * Get propertyClass * @return propertyClass - */ + */ @ApiModelProperty(value = "") @JsonProperty("class") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NameDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NameDto.java index 37cce23a30b..6eec93b0794 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NameDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NameDto.java @@ -52,7 +52,7 @@ public class NameDto { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("name") @@ -72,7 +72,7 @@ public class NameDto { /** * Get snakeCase * @return snakeCase - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("snake_case") @@ -92,7 +92,7 @@ public class NameDto { /** * Get property * @return property - */ + */ @ApiModelProperty(value = "") @JsonProperty("property") @@ -112,7 +112,7 @@ public class NameDto { /** * Get _123Number * @return _123Number - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("123Number") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NullableMapPropertyDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NullableMapPropertyDto.java index d915159c3c4..0799027a919 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NullableMapPropertyDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NullableMapPropertyDto.java @@ -48,7 +48,7 @@ public class NullableMapPropertyDto { /** * Get languageValues * @return languageValues - */ + */ @ApiModelProperty(value = "") @JsonProperty("languageValues") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NumberOnlyDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NumberOnlyDto.java index 3b0128ab0bd..2c293d9359a 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NumberOnlyDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/NumberOnlyDto.java @@ -35,7 +35,7 @@ public class NumberOnlyDto { /** * Get justNumber * @return justNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("JustNumber") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OrderDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OrderDto.java index c1beaed3e34..8c16893e5ab 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OrderDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OrderDto.java @@ -85,7 +85,7 @@ public class OrderDto { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -105,7 +105,7 @@ public class OrderDto { /** * Get petId * @return petId - */ + */ @ApiModelProperty(value = "") @JsonProperty("petId") @@ -125,7 +125,7 @@ public class OrderDto { /** * Get quantity * @return quantity - */ + */ @ApiModelProperty(value = "") @JsonProperty("quantity") @@ -145,7 +145,7 @@ public class OrderDto { /** * Get shipDate * @return shipDate - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("shipDate") @@ -165,7 +165,7 @@ public class OrderDto { /** * Order Status * @return status - */ + */ @ApiModelProperty(value = "Order Status") @JsonProperty("status") @@ -185,7 +185,7 @@ public class OrderDto { /** * Get complete * @return complete - */ + */ @ApiModelProperty(value = "") @JsonProperty("complete") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OuterCompositeDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OuterCompositeDto.java index 1343cefbea1..14ae28c46c1 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OuterCompositeDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/OuterCompositeDto.java @@ -39,7 +39,7 @@ public class OuterCompositeDto { /** * Get myNumber * @return myNumber - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("my_number") @@ -59,7 +59,7 @@ public class OuterCompositeDto { /** * Get myString * @return myString - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_string") @@ -79,7 +79,7 @@ public class OuterCompositeDto { /** * Get myBoolean * @return myBoolean - */ + */ @ApiModelProperty(value = "") @JsonProperty("my_boolean") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java index a2f04a5f5d3..bec23a0b987 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java @@ -84,7 +84,7 @@ public class ParentWithNullableDto { /** * Get type * @return type - */ + */ @ApiModelProperty(value = "") @JsonProperty("type") @@ -104,7 +104,7 @@ public class ParentWithNullableDto { /** * Get nullableProperty * @return nullableProperty - */ + */ @ApiModelProperty(value = "") @JsonProperty("nullableProperty") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/PetDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/PetDto.java index 7d79f123270..a86fa9d7ff0 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/PetDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/PetDto.java @@ -105,7 +105,7 @@ public class PetDto { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -125,7 +125,7 @@ public class PetDto { /** * Get category * @return category - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("category") @@ -145,7 +145,7 @@ public class PetDto { /** * Get name * @return name - */ + */ @NotNull @ApiModelProperty(example = "doggie", required = true, value = "") @JsonProperty("name") @@ -173,7 +173,7 @@ public class PetDto { /** * Get photoUrls * @return photoUrls - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("photoUrls") @@ -202,7 +202,7 @@ public class PetDto { /** * Get tags * @return tags - */ + */ @Valid @ApiModelProperty(value = "") @JsonProperty("tags") @@ -223,7 +223,7 @@ public class PetDto { * pet status in the store * @return status * @deprecated - */ + */ @ApiModelProperty(value = "pet status in the store") @JsonProperty("status") @@ -234,7 +234,7 @@ public class PetDto { /** * @deprecated - */ + */ @Deprecated public void setStatus(StatusEnum status) { this.status = status; diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java index e9a128f8d87..4e8e02a8866 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReadOnlyFirstDto.java @@ -36,7 +36,7 @@ public class ReadOnlyFirstDto { /** * Get bar * @return bar - */ + */ @ApiModelProperty(readOnly = true, value = "") @JsonProperty("bar") @@ -56,7 +56,7 @@ public class ReadOnlyFirstDto { /** * Get baz * @return baz - */ + */ @ApiModelProperty(value = "") @JsonProperty("baz") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java index 322c4ab83aa..794d808c87f 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ResponseObjectWithDifferentFieldNamesDto.java @@ -40,7 +40,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get normalPropertyName * @return normalPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("normalPropertyName") @@ -60,7 +60,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get UPPER_CASE_PROPERTY_SNAKE * @return UPPER_CASE_PROPERTY_SNAKE - */ + */ @ApiModelProperty(value = "") @JsonProperty("UPPER_CASE_PROPERTY_SNAKE") @@ -80,7 +80,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get lowerCasePropertyDashes * @return lowerCasePropertyDashes - */ + */ @ApiModelProperty(value = "") @JsonProperty("lower-case-property-dashes") @@ -100,7 +100,7 @@ public class ResponseObjectWithDifferentFieldNamesDto { /** * Get propertyNameWithSpaces * @return propertyNameWithSpaces - */ + */ @ApiModelProperty(value = "") @JsonProperty("property name with spaces") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReturnDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReturnDto.java index df0afe36bb7..def2be43f63 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReturnDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ReturnDto.java @@ -35,7 +35,7 @@ public class ReturnDto { /** * Get _return * @return _return - */ + */ @ApiModelProperty(value = "") @JsonProperty("return") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/SpecialModelNameDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/SpecialModelNameDto.java index 7fbb1e5b6e8..15d0c92fbde 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/SpecialModelNameDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/SpecialModelNameDto.java @@ -34,7 +34,7 @@ public class SpecialModelNameDto { /** * Get $SpecialPropertyName * @return $SpecialPropertyName - */ + */ @ApiModelProperty(value = "") @JsonProperty("$special[property.name]") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TagDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TagDto.java index f681239a2f4..7ba520ba50f 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TagDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TagDto.java @@ -36,7 +36,7 @@ public class TagDto { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -56,7 +56,7 @@ public class TagDto { /** * Get name * @return name - */ + */ @ApiModelProperty(value = "") @JsonProperty("name") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java index 9bee0a0f8e2..58ff542e016 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderDefaultDto.java @@ -62,7 +62,7 @@ public class TypeHolderDefaultDto { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("string_item") @@ -82,7 +82,7 @@ public class TypeHolderDefaultDto { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(required = true, value = "") @JsonProperty("number_item") @@ -102,7 +102,7 @@ public class TypeHolderDefaultDto { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("integer_item") @@ -122,7 +122,7 @@ public class TypeHolderDefaultDto { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("bool_item") @@ -150,7 +150,7 @@ public class TypeHolderDefaultDto { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderExampleDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderExampleDto.java index d104dba174d..027a7ab2485 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderExampleDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/TypeHolderExampleDto.java @@ -65,7 +65,7 @@ public class TypeHolderExampleDto { /** * Get stringItem * @return stringItem - */ + */ @NotNull @ApiModelProperty(example = "what", required = true, value = "") @JsonProperty("string_item") @@ -85,7 +85,7 @@ public class TypeHolderExampleDto { /** * Get numberItem * @return numberItem - */ + */ @NotNull @Valid @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("number_item") @@ -105,7 +105,7 @@ public class TypeHolderExampleDto { /** * Get floatItem * @return floatItem - */ + */ @NotNull @ApiModelProperty(example = "1.234", required = true, value = "") @JsonProperty("float_item") @@ -125,7 +125,7 @@ public class TypeHolderExampleDto { /** * Get integerItem * @return integerItem - */ + */ @NotNull @ApiModelProperty(example = "-2", required = true, value = "") @JsonProperty("integer_item") @@ -145,7 +145,7 @@ public class TypeHolderExampleDto { /** * Get boolItem * @return boolItem - */ + */ @NotNull @ApiModelProperty(example = "true", required = true, value = "") @JsonProperty("bool_item") @@ -173,7 +173,7 @@ public class TypeHolderExampleDto { /** * Get arrayItem * @return arrayItem - */ + */ @NotNull @ApiModelProperty(example = "[0,1,2,3]", required = true, value = "") @JsonProperty("array_item") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/UserDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/UserDto.java index e469bb98a5b..9c7a9c248fc 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/UserDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/UserDto.java @@ -48,7 +48,7 @@ public class UserDto { /** * Get id * @return id - */ + */ @ApiModelProperty(value = "") @JsonProperty("id") @@ -68,7 +68,7 @@ public class UserDto { /** * Get username * @return username - */ + */ @ApiModelProperty(value = "") @JsonProperty("username") @@ -88,7 +88,7 @@ public class UserDto { /** * Get firstName * @return firstName - */ + */ @ApiModelProperty(value = "") @JsonProperty("firstName") @@ -108,7 +108,7 @@ public class UserDto { /** * Get lastName * @return lastName - */ + */ @ApiModelProperty(value = "") @JsonProperty("lastName") @@ -128,7 +128,7 @@ public class UserDto { /** * Get email * @return email - */ + */ @ApiModelProperty(value = "") @JsonProperty("email") @@ -148,7 +148,7 @@ public class UserDto { /** * Get password * @return password - */ + */ @ApiModelProperty(value = "") @JsonProperty("password") @@ -168,7 +168,7 @@ public class UserDto { /** * Get phone * @return phone - */ + */ @ApiModelProperty(value = "") @JsonProperty("phone") @@ -188,7 +188,7 @@ public class UserDto { /** * User Status * @return userStatus - */ + */ @ApiModelProperty(value = "User Status") @JsonProperty("userStatus") diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/XmlItemDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/XmlItemDto.java index 24b7fd9a622..013e6014ed5 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/XmlItemDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/XmlItemDto.java @@ -103,7 +103,7 @@ public class XmlItemDto { /** * Get attributeString * @return attributeString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("attribute_string") @@ -123,7 +123,7 @@ public class XmlItemDto { /** * Get attributeNumber * @return attributeNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("attribute_number") @@ -143,7 +143,7 @@ public class XmlItemDto { /** * Get attributeInteger * @return attributeInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("attribute_integer") @@ -163,7 +163,7 @@ public class XmlItemDto { /** * Get attributeBoolean * @return attributeBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("attribute_boolean") @@ -191,7 +191,7 @@ public class XmlItemDto { /** * Get wrappedArray * @return wrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("wrapped_array") @@ -211,7 +211,7 @@ public class XmlItemDto { /** * Get nameString * @return nameString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("name_string") @@ -231,7 +231,7 @@ public class XmlItemDto { /** * Get nameNumber * @return nameNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("name_number") @@ -251,7 +251,7 @@ public class XmlItemDto { /** * Get nameInteger * @return nameInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("name_integer") @@ -271,7 +271,7 @@ public class XmlItemDto { /** * Get nameBoolean * @return nameBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("name_boolean") @@ -299,7 +299,7 @@ public class XmlItemDto { /** * Get nameArray * @return nameArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_array") @@ -327,7 +327,7 @@ public class XmlItemDto { /** * Get nameWrappedArray * @return nameWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("name_wrapped_array") @@ -347,7 +347,7 @@ public class XmlItemDto { /** * Get prefixString * @return prefixString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_string") @@ -367,7 +367,7 @@ public class XmlItemDto { /** * Get prefixNumber * @return prefixNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_number") @@ -387,7 +387,7 @@ public class XmlItemDto { /** * Get prefixInteger * @return prefixInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_integer") @@ -407,7 +407,7 @@ public class XmlItemDto { /** * Get prefixBoolean * @return prefixBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_boolean") @@ -435,7 +435,7 @@ public class XmlItemDto { /** * Get prefixArray * @return prefixArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_array") @@ -463,7 +463,7 @@ public class XmlItemDto { /** * Get prefixWrappedArray * @return prefixWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_wrapped_array") @@ -483,7 +483,7 @@ public class XmlItemDto { /** * Get namespaceString * @return namespaceString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("namespace_string") @@ -503,7 +503,7 @@ public class XmlItemDto { /** * Get namespaceNumber * @return namespaceNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("namespace_number") @@ -523,7 +523,7 @@ public class XmlItemDto { /** * Get namespaceInteger * @return namespaceInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("namespace_integer") @@ -543,7 +543,7 @@ public class XmlItemDto { /** * Get namespaceBoolean * @return namespaceBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("namespace_boolean") @@ -571,7 +571,7 @@ public class XmlItemDto { /** * Get namespaceArray * @return namespaceArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_array") @@ -599,7 +599,7 @@ public class XmlItemDto { /** * Get namespaceWrappedArray * @return namespaceWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("namespace_wrapped_array") @@ -619,7 +619,7 @@ public class XmlItemDto { /** * Get prefixNsString * @return prefixNsString - */ + */ @ApiModelProperty(example = "string", value = "") @JsonProperty("prefix_ns_string") @@ -639,7 +639,7 @@ public class XmlItemDto { /** * Get prefixNsNumber * @return prefixNsNumber - */ + */ @Valid @ApiModelProperty(example = "1.234", value = "") @JsonProperty("prefix_ns_number") @@ -659,7 +659,7 @@ public class XmlItemDto { /** * Get prefixNsInteger * @return prefixNsInteger - */ + */ @ApiModelProperty(example = "-2", value = "") @JsonProperty("prefix_ns_integer") @@ -679,7 +679,7 @@ public class XmlItemDto { /** * Get prefixNsBoolean * @return prefixNsBoolean - */ + */ @ApiModelProperty(example = "true", value = "") @JsonProperty("prefix_ns_boolean") @@ -707,7 +707,7 @@ public class XmlItemDto { /** * Get prefixNsArray * @return prefixNsArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_array") @@ -735,7 +735,7 @@ public class XmlItemDto { /** * Get prefixNsWrappedArray * @return prefixNsWrappedArray - */ + */ @ApiModelProperty(value = "") @JsonProperty("prefix_ns_wrapped_array")