[JAVA] [SPRING] [PKMST] [MICRONAUT] XML wireformat: Fix Jackson useWrapping=false, JAXB+Jackson namespaces (#18870)

* Fix XML annotations on model properties (JavaSpring)

* generate JAXB annotations for attributes and elements

* generate wrapper annotations (JAXB and Jackson)

* use XML config from items for annotations of containers

* Add test for Jackson XML wrapper correctness

* Add additional test cases to cover all xml applications in spec

Test now covers all use cases described in
- https://web.archive.org/web/20240424203304/https://swagger.io/docs/specification/data-models/representing-xml/
- https://spec.openapis.org/oas/v3.0.0#xml-arrays

* Fix basename used instead of xmlName when items.xmlName is unset

See last example in spec: https://spec.openapis.org/oas/v3.0.0#xml-arrays

* Harmonize spacing between Annotation attribute name and value

* Refactor and group JAXB vs. Jackson XML annotations, only generate latter if enabled

This is in line with the way the class annotations in `xmlAnnotations.mustache`
are rendered – which only renders the `@Jackson`… xml annotations if
additionalProperty jackson is true.

Also reorder annotation attributes in the following order:
- localName/name
- namespace (optional)
- isAttribute/useWrapping (optional)

* Explicitly render `useWrapping = true` to @JacksonXmlElementWrapper

This was slightly inspired by @jzrebiec via PR #5371.

Wrapping is the default since Jackson 2.1 – so explicitly rendering
this will:
- make generated model work out-of-the-box in Jackson 2.0 for instance
- ensure the models still work if the local `XmlWrapper` was
  configured with `useXmlWrapper(false)`

* Move xml test spec to java resources folder (not spring specific)

* Make test class name match class-under-test

This makes discovery & cross-navigation in IDE easier.

* Add complete xml annotations test for Java generators

* Fix Java PKMST generator not generating @JacksonXmlElementWrapper

* Fix Java microprofile generator missing @JacksonXmlRootElement

* Fix Java microprofile generator not using wrapper annotations and namespaces

* Fix Java Micronaut Client creating invalid (unclosed) @XmlAttribute annotations

* Fix Micronaut Client using wrong localName for @JacksonXmlElementWrapper

* Fix Micronaut client rendering @JacksonXmlProperty annotation twice

* Make Java Micronaut render @JacksonXmlElementWrapper(useWrapping=false) for non-wrapped elements

* Fix Jackson element using `xml.name` when it should be `items.xml.name`

Closes #5989
Closes #3223
Relates to #9371

* Fix JAXB element using `baseName` instead of `xmlName` when items.xmlName is unset

* Remove XML generation debug output from templates

* Remove redundant newline between XML class annotations and class

Brings the SpringCodegen in line with other Java Codegen's

* Remove redundant newline between XML setter annotations and setter

* Fix multiline JavaDoc block indentation and format

* Simplify / condense xml annotation template into single lines

May look a bit more complex, but cuts out a lot of repetitiveness.
Also reorders annotation attributes in the following order:
- localName/name
- namespace (optional)
- isAttribute/useWrapping (optional)

* Harmonize spacing between Annotation attribute name and value

* Remove unused jackson_annotations partial

Was not referenced anywhere in java-helidon resources folder

---------

Co-authored-by: Christian Schuster <christian@dnup.de>
This commit is contained in:
Philzen
2024-06-15 17:02:32 +02:00
committed by GitHub
parent 13facdaab5
commit 642b1a3a95
2726 changed files with 20424 additions and 20024 deletions

View File

@@ -46,10 +46,10 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -47,10 +47,10 @@ public class AdditionalPropertiesArray extends HashMap<String, List> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -46,10 +46,10 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -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)

View File

@@ -46,10 +46,10 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -47,10 +47,10 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -46,10 +46,10 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -46,10 +46,10 @@ public class AdditionalPropertiesString extends HashMap<String, String> {
return this;
}
/**
/**
* Get name
* @return name
**/
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)