Compare commits

...

1 Commits

Author SHA1 Message Date
William Cheng
56eb5a63bf set useJakartaEe to true by default 2024-04-03 16:24:18 +08:00
4327 changed files with 14354 additions and 14299 deletions

View File

@ -8,3 +8,4 @@ additionalProperties:
hideGenerationTimestamp: "true" hideGenerationTimestamp: "true"
disallowAdditionalPropertiesIfNotPresent: false disallowAdditionalPropertiesIfNotPresent: false
useSingleRequestParameter: true useSingleRequestParameter: true
useBeanValidation: true

View File

@ -140,7 +140,7 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
protected boolean implicitHeaders = false; protected boolean implicitHeaders = false;
protected String implicitHeadersRegex = null; protected String implicitHeadersRegex = null;
protected boolean camelCaseDollarSign = false; protected boolean camelCaseDollarSign = false;
protected boolean useJakartaEe = false; protected boolean useJakartaEe = true;
protected boolean containerDefaultToNull = false; protected boolean containerDefaultToNull = false;
private Map<String, String> schemaKeyToModelNameCache = new HashMap<>(); private Map<String, String> schemaKeyToModelNameCache = new HashMap<>();

View File

@ -240,8 +240,8 @@
<version>${jackson-databind-version}</version> <version>${jackson-databind-version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId> <groupId>com.fasterxml.jackson.jakarta.rs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId> <artifactId>jackson-jakarta-rs-json-provider</artifactId>
<version>${jackson-version}</version> <version>${jackson-version}</version>
</dependency> </dependency>
<dependency> <dependency>
@ -274,7 +274,7 @@
<jackson-version>2.15.2</jackson-version> <jackson-version>2.15.2</jackson-version>
<jackson-databind-version>2.15.2</jackson-databind-version> <jackson-databind-version>2.15.2</jackson-databind-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version> <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<junit-version>4.13.2</junit-version> <junit-version>4.13.2</junit-version>
</properties> </properties>
</project> </project>

View File

@ -81,7 +81,7 @@ import org.openapitools.client.auth.Authentication;
import org.openapitools.client.auth.HttpBasicAuth; import org.openapitools.client.auth.HttpBasicAuth;
import org.openapitools.client.auth.HttpBearerAuth; import org.openapitools.client.auth.HttpBearerAuth;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiClient extends JavaTimeFormatter { public class ApiClient extends JavaTimeFormatter {
private Map<String, String> defaultHeaderMap = new HashMap<String, String>(); private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
private Map<String, String> defaultCookieMap = new HashMap<String, String>(); private Map<String, String> defaultCookieMap = new HashMap<String, String>();

View File

@ -16,7 +16,7 @@ package org.openapitools.client;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiException extends Exception { public class ApiException extends Exception {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -17,7 +17,7 @@ import com.fasterxml.jackson.core.type.TypeReference;
import java.util.Collections; import java.util.Collections;
import java.util.Map; import java.util.Map;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public abstract class BaseApi { public abstract class BaseApi {
protected ApiClient apiClient; protected ApiClient apiClient;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Configuration { public class Configuration {
public static final String VERSION = "0.1.0"; public static final String VERSION = "0.1.0";

View File

@ -20,7 +20,7 @@ import java.time.format.DateTimeParseException;
* Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class. * Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class.
* It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}. * It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}.
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class JavaTimeFormatter { public class JavaTimeFormatter {
private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME; private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pair { public class Pair {
private String name = ""; private String name = "";
private String value = ""; private String value = "";

View File

@ -16,7 +16,7 @@ package org.openapitools.client;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class StringUtil { public class StringUtil {
/** /**
* Check if the given array contains the given value (with case-insensitive comparison). * Check if the given array contains the given value (with case-insensitive comparison).

View File

@ -29,7 +29,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class AuthApi extends BaseApi { public class AuthApi extends BaseApi {
public AuthApi() { public AuthApi() {

View File

@ -33,7 +33,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class BodyApi extends BaseApi { public class BodyApi extends BaseApi {
public BodyApi() { public BodyApi() {

View File

@ -30,7 +30,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class FormApi extends BaseApi { public class FormApi extends BaseApi {
public FormApi() { public FormApi() {

View File

@ -30,7 +30,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class HeaderApi extends BaseApi { public class HeaderApi extends BaseApi {
public HeaderApi() { public HeaderApi() {

View File

@ -30,7 +30,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class PathApi extends BaseApi { public class PathApi extends BaseApi {
public PathApi() { public PathApi() {

View File

@ -36,7 +36,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.StringJoiner; import java.util.StringJoiner;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class QueryApi extends BaseApi { public class QueryApi extends BaseApi {
public QueryApi() { public QueryApi() {

View File

@ -18,7 +18,7 @@ import org.openapitools.client.Pair;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiKeyAuth implements Authentication { public class ApiKeyAuth implements Authentication {
private final String location; private final String location;
private final String paramName; private final String paramName;

View File

@ -21,7 +21,7 @@ import java.nio.charset.StandardCharsets;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class HttpBasicAuth implements Authentication { public class HttpBasicAuth implements Authentication {
private String username; private String username;
private String password; private String password;

View File

@ -20,7 +20,7 @@ import java.util.Map;
import java.util.Optional; import java.util.Optional;
import java.util.function.Supplier; import java.util.function.Supplier;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class HttpBearerAuth implements Authentication { public class HttpBearerAuth implements Authentication {
private final String scheme; private final String scheme;
private Supplier<String> tokenSupplier; private Supplier<String> tokenSupplier;

View File

@ -33,7 +33,7 @@ import java.util.StringJoiner;
Bird.JSON_PROPERTY_SIZE, Bird.JSON_PROPERTY_SIZE,
Bird.JSON_PROPERTY_COLOR Bird.JSON_PROPERTY_COLOR
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Bird { public class Bird {
public static final String JSON_PROPERTY_SIZE = "size"; public static final String JSON_PROPERTY_SIZE = "size";
private String size; private String size;
@ -54,7 +54,7 @@ public class Bird {
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SIZE) @JsonProperty(JSON_PROPERTY_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Bird {
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COLOR) @JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -33,7 +33,7 @@ import java.util.StringJoiner;
Category.JSON_PROPERTY_ID, Category.JSON_PROPERTY_ID,
Category.JSON_PROPERTY_NAME Category.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Category { public class Category {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -54,7 +54,7 @@ public class Category {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Category {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -39,7 +39,7 @@ import java.util.StringJoiner;
DataQuery.JSON_PROPERTY_TEXT, DataQuery.JSON_PROPERTY_TEXT,
DataQuery.JSON_PROPERTY_DATE DataQuery.JSON_PROPERTY_DATE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DataQuery extends Query { public class DataQuery extends Query {
public static final String JSON_PROPERTY_SUFFIX = "suffix"; public static final String JSON_PROPERTY_SUFFIX = "suffix";
private String suffix; private String suffix;
@ -64,7 +64,7 @@ public class DataQuery extends Query {
* test suffix * test suffix
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUFFIX) @JsonProperty(JSON_PROPERTY_SUFFIX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -90,7 +90,7 @@ public class DataQuery extends Query {
* Some text containing white spaces * Some text containing white spaces
* @return text * @return text
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TEXT) @JsonProperty(JSON_PROPERTY_TEXT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -116,7 +116,7 @@ public class DataQuery extends Query {
* A date * A date
* @return date * @return date
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATE) @JsonProperty(JSON_PROPERTY_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -47,7 +47,7 @@ import java.util.StringJoiner;
DefaultValue.JSON_PROPERTY_ARRAY_STRING_EXTENSION_NULLABLE, DefaultValue.JSON_PROPERTY_ARRAY_STRING_EXTENSION_NULLABLE,
DefaultValue.JSON_PROPERTY_STRING_NULLABLE DefaultValue.JSON_PROPERTY_STRING_NULLABLE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DefaultValue { public class DefaultValue {
public static final String JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default"; public static final String JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default";
private List<StringEnumRef> arrayStringEnumRefDefault = new ArrayList<>(Arrays.asList(StringEnumRef.SUCCESS, StringEnumRef.FAILURE)); private List<StringEnumRef> arrayStringEnumRefDefault = new ArrayList<>(Arrays.asList(StringEnumRef.SUCCESS, StringEnumRef.FAILURE));
@ -131,7 +131,7 @@ public class DefaultValue {
* Get arrayStringEnumRefDefault * Get arrayStringEnumRefDefault
* @return arrayStringEnumRefDefault * @return arrayStringEnumRefDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -165,7 +165,7 @@ public class DefaultValue {
* Get arrayStringEnumDefault * Get arrayStringEnumDefault
* @return arrayStringEnumDefault * @return arrayStringEnumDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -199,7 +199,7 @@ public class DefaultValue {
* Get arrayStringDefault * Get arrayStringDefault
* @return arrayStringDefault * @return arrayStringDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -233,7 +233,7 @@ public class DefaultValue {
* Get arrayIntegerDefault * Get arrayIntegerDefault
* @return arrayIntegerDefault * @return arrayIntegerDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -267,7 +267,7 @@ public class DefaultValue {
* Get arrayString * Get arrayString
* @return arrayString * @return arrayString
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonProperty(JSON_PROPERTY_ARRAY_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -305,7 +305,7 @@ public class DefaultValue {
* Get arrayStringNullable * Get arrayStringNullable
* @return arrayStringNullable * @return arrayStringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public List<String> getArrayStringNullable() { public List<String> getArrayStringNullable() {
@ -351,7 +351,7 @@ public class DefaultValue {
* Get arrayStringExtensionNullable * Get arrayStringExtensionNullable
* @return arrayStringExtensionNullable * @return arrayStringExtensionNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public List<String> getArrayStringExtensionNullable() { public List<String> getArrayStringExtensionNullable() {
@ -385,7 +385,7 @@ public class DefaultValue {
* Get stringNullable * Get stringNullable
* @return stringNullable * @return stringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public String getStringNullable() { public String getStringNullable() {

View File

@ -35,7 +35,7 @@ import java.util.StringJoiner;
NumberPropertiesOnly.JSON_PROPERTY_FLOAT, NumberPropertiesOnly.JSON_PROPERTY_FLOAT,
NumberPropertiesOnly.JSON_PROPERTY_DOUBLE NumberPropertiesOnly.JSON_PROPERTY_DOUBLE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class NumberPropertiesOnly { public class NumberPropertiesOnly {
public static final String JSON_PROPERTY_NUMBER = "number"; public static final String JSON_PROPERTY_NUMBER = "number";
private BigDecimal number; private BigDecimal number;
@ -59,7 +59,7 @@ public class NumberPropertiesOnly {
* Get number * Get number
* @return number * @return number
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NUMBER) @JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -85,7 +85,7 @@ public class NumberPropertiesOnly {
* Get _float * Get _float
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLOAT) @JsonProperty(JSON_PROPERTY_FLOAT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -113,7 +113,7 @@ public class NumberPropertiesOnly {
* maximum: 50.2 * maximum: 50.2
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DOUBLE) @JsonProperty(JSON_PROPERTY_DOUBLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -42,7 +42,7 @@ import java.util.StringJoiner;
Pet.JSON_PROPERTY_TAGS, Pet.JSON_PROPERTY_TAGS,
Pet.JSON_PROPERTY_STATUS Pet.JSON_PROPERTY_STATUS
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pet { public class Pet {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -112,7 +112,7 @@ public class Pet {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -138,7 +138,7 @@ public class Pet {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS) @JsonInclude(value = JsonInclude.Include.ALWAYS)
@ -164,7 +164,7 @@ public class Pet {
* Get category * Get category
* @return category * @return category
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CATEGORY) @JsonProperty(JSON_PROPERTY_CATEGORY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -198,7 +198,7 @@ public class Pet {
* Get photoUrls * Get photoUrls
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonProperty(JSON_PROPERTY_PHOTO_URLS)
@JsonInclude(value = JsonInclude.Include.ALWAYS) @JsonInclude(value = JsonInclude.Include.ALWAYS)
@ -232,7 +232,7 @@ public class Pet {
* Get tags * Get tags
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TAGS) @JsonProperty(JSON_PROPERTY_TAGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -258,7 +258,7 @@ public class Pet {
* pet status in the store * pet status in the store
* @return status * @return status
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATUS) @JsonProperty(JSON_PROPERTY_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -36,7 +36,7 @@ import java.util.StringJoiner;
Query.JSON_PROPERTY_ID, Query.JSON_PROPERTY_ID,
Query.JSON_PROPERTY_OUTCOMES Query.JSON_PROPERTY_OUTCOMES
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Query { public class Query {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -94,7 +94,7 @@ public class Query {
* Query * Query
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -128,7 +128,7 @@ public class Query {
* Get outcomes * Get outcomes
* @return outcomes * @return outcomes
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonProperty(JSON_PROPERTY_OUTCOMES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -33,7 +33,7 @@ import java.util.StringJoiner;
Tag.JSON_PROPERTY_ID, Tag.JSON_PROPERTY_ID,
Tag.JSON_PROPERTY_NAME Tag.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Tag { public class Tag {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -54,7 +54,7 @@ public class Tag {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Tag {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -33,7 +33,7 @@ import java.util.StringJoiner;
TestFormObjectMultipartRequestMarker.JSON_PROPERTY_NAME TestFormObjectMultipartRequestMarker.JSON_PROPERTY_NAME
}) })
@JsonTypeName("test_form_object_multipart_request_marker") @JsonTypeName("test_form_object_multipart_request_marker")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestFormObjectMultipartRequestMarker { public class TestFormObjectMultipartRequestMarker {
public static final String JSON_PROPERTY_NAME = "name"; public static final String JSON_PROPERTY_NAME = "name";
private String name; private String name;
@ -51,7 +51,7 @@ public class TestFormObjectMultipartRequestMarker {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -36,7 +36,7 @@ import java.util.StringJoiner;
TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_NAME TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_NAME
}) })
@JsonTypeName("test_query_style_deepObject_explode_true_object_allOf_query_object_parameter") @JsonTypeName("test_query_style_deepObject_explode_true_object_allOf_query_object_parameter")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter { public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter {
public static final String JSON_PROPERTY_SIZE = "size"; public static final String JSON_PROPERTY_SIZE = "size";
private String size; private String size;
@ -63,7 +63,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SIZE) @JsonProperty(JSON_PROPERTY_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -89,7 +89,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COLOR) @JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -115,7 +115,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -141,7 +141,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -36,7 +36,7 @@ import java.util.StringJoiner;
TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.JSON_PROPERTY_VALUES TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.JSON_PROPERTY_VALUES
}) })
@JsonTypeName("test_query_style_form_explode_true_array_string_query_object_parameter") @JsonTypeName("test_query_style_form_explode_true_array_string_query_object_parameter")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
public static final String JSON_PROPERTY_VALUES = "values"; public static final String JSON_PROPERTY_VALUES = "values";
private List<String> values = new ArrayList<>(); private List<String> values = new ArrayList<>();
@ -62,7 +62,7 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* Get values * Get values
* @return values * @return values
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUES) @JsonProperty(JSON_PROPERTY_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -305,7 +305,7 @@
<gson-version>2.10.1</gson-version> <gson-version>2.10.1</gson-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version> <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jackson-databind-version>2.15.2</jackson-databind-version> <jackson-databind-version>2.15.2</jackson-databind-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<junit-version>5.10.0</junit-version> <junit-version>5.10.0</junit-version>
<maven-plugin-version>1.0.0</maven-plugin-version> <maven-plugin-version>1.0.0</maven-plugin-version>
<scribejava-version>8.3.3</scribejava-version> <scribejava-version>8.3.3</scribejava-version>

View File

@ -18,7 +18,7 @@ import org.openapitools.client.auth.HttpBearerAuth;
import org.openapitools.client.auth.ApiKeyAuth; import org.openapitools.client.auth.ApiKeyAuth;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiClient { public class ApiClient {
private static final Logger log = Logger.getLogger(ApiClient.class.getName()); private static final Logger log = Logger.getLogger(ApiClient.class.getName());

View File

@ -16,7 +16,7 @@ package org.openapitools.client;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class StringUtil { public class StringUtil {
/** /**
* Check if the given array contains the given value (with case-insensitive comparison). * Check if the given array contains the given value (with case-insensitive comparison).

View File

@ -11,7 +11,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface AuthApi extends ApiClient.Api { public interface AuthApi extends ApiClient.Api {

View File

@ -15,7 +15,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface BodyApi extends ApiClient.Api { public interface BodyApi extends ApiClient.Api {

View File

@ -12,7 +12,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface FormApi extends ApiClient.Api { public interface FormApi extends ApiClient.Api {

View File

@ -12,7 +12,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface HeaderApi extends ApiClient.Api { public interface HeaderApi extends ApiClient.Api {

View File

@ -12,7 +12,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface PathApi extends ApiClient.Api { public interface PathApi extends ApiClient.Api {

View File

@ -18,7 +18,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import feign.*; import feign.*;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public interface QueryApi extends ApiClient.Api { public interface QueryApi extends ApiClient.Api {

View File

@ -25,7 +25,7 @@ import java.io.IOException;
/** /**
* Bird * Bird
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Bird { public class Bird {
public static final String SERIALIZED_NAME_SIZE = "size"; public static final String SERIALIZED_NAME_SIZE = "size";
@SerializedName(SERIALIZED_NAME_SIZE) @SerializedName(SERIALIZED_NAME_SIZE)
@ -48,7 +48,7 @@ public class Bird {
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
@ -70,7 +70,7 @@ public class Bird {
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;

View File

@ -25,7 +25,7 @@ import java.io.IOException;
/** /**
* Category * Category
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Category { public class Category {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -48,7 +48,7 @@ public class Category {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
@ -70,7 +70,7 @@ public class Category {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;

View File

@ -30,7 +30,7 @@ import org.openapitools.client.model.Query;
/** /**
* DataQuery * DataQuery
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DataQuery extends Query { public class DataQuery extends Query {
public static final String SERIALIZED_NAME_SUFFIX = "suffix"; public static final String SERIALIZED_NAME_SUFFIX = "suffix";
@SerializedName(SERIALIZED_NAME_SUFFIX) @SerializedName(SERIALIZED_NAME_SUFFIX)
@ -58,7 +58,7 @@ public class DataQuery extends Query {
* test suffix * test suffix
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSuffix() { public String getSuffix() {
return suffix; return suffix;
@ -80,7 +80,7 @@ public class DataQuery extends Query {
* Some text containing white spaces * Some text containing white spaces
* @return text * @return text
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getText() { public String getText() {
return text; return text;
@ -102,7 +102,7 @@ public class DataQuery extends Query {
* A date * A date
* @return date * @return date
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public OffsetDateTime getDate() { public OffsetDateTime getDate() {
return date; return date;

View File

@ -30,7 +30,7 @@ import org.openapitools.jackson.nullable.JsonNullable;
/** /**
* to test the default value of properties * to test the default value of properties
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DefaultValue { public class DefaultValue {
public static final String SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default"; public static final String SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default";
@SerializedName(SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT) @SerializedName(SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT)
@ -134,7 +134,7 @@ public class DefaultValue {
* Get arrayStringEnumRefDefault * Get arrayStringEnumRefDefault
* @return arrayStringEnumRefDefault * @return arrayStringEnumRefDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<StringEnumRef> getArrayStringEnumRefDefault() { public List<StringEnumRef> getArrayStringEnumRefDefault() {
return arrayStringEnumRefDefault; return arrayStringEnumRefDefault;
@ -164,7 +164,7 @@ public class DefaultValue {
* Get arrayStringEnumDefault * Get arrayStringEnumDefault
* @return arrayStringEnumDefault * @return arrayStringEnumDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() { public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() {
return arrayStringEnumDefault; return arrayStringEnumDefault;
@ -194,7 +194,7 @@ public class DefaultValue {
* Get arrayStringDefault * Get arrayStringDefault
* @return arrayStringDefault * @return arrayStringDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringDefault() { public List<String> getArrayStringDefault() {
return arrayStringDefault; return arrayStringDefault;
@ -224,7 +224,7 @@ public class DefaultValue {
* Get arrayIntegerDefault * Get arrayIntegerDefault
* @return arrayIntegerDefault * @return arrayIntegerDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<Integer> getArrayIntegerDefault() { public List<Integer> getArrayIntegerDefault() {
return arrayIntegerDefault; return arrayIntegerDefault;
@ -254,7 +254,7 @@ public class DefaultValue {
* Get arrayString * Get arrayString
* @return arrayString * @return arrayString
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayString() { public List<String> getArrayString() {
return arrayString; return arrayString;
@ -284,7 +284,7 @@ public class DefaultValue {
* Get arrayStringNullable * Get arrayStringNullable
* @return arrayStringNullable * @return arrayStringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringNullable() { public List<String> getArrayStringNullable() {
return arrayStringNullable; return arrayStringNullable;
@ -314,7 +314,7 @@ public class DefaultValue {
* Get arrayStringExtensionNullable * Get arrayStringExtensionNullable
* @return arrayStringExtensionNullable * @return arrayStringExtensionNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringExtensionNullable() { public List<String> getArrayStringExtensionNullable() {
return arrayStringExtensionNullable; return arrayStringExtensionNullable;
@ -336,7 +336,7 @@ public class DefaultValue {
* Get stringNullable * Get stringNullable
* @return stringNullable * @return stringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getStringNullable() { public String getStringNullable() {
return stringNullable; return stringNullable;

View File

@ -26,7 +26,7 @@ import java.math.BigDecimal;
/** /**
* NumberPropertiesOnly * NumberPropertiesOnly
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class NumberPropertiesOnly { public class NumberPropertiesOnly {
public static final String SERIALIZED_NAME_NUMBER = "number"; public static final String SERIALIZED_NAME_NUMBER = "number";
@SerializedName(SERIALIZED_NAME_NUMBER) @SerializedName(SERIALIZED_NAME_NUMBER)
@ -53,7 +53,7 @@ public class NumberPropertiesOnly {
* Get number * Get number
* @return number * @return number
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public BigDecimal getNumber() { public BigDecimal getNumber() {
return number; return number;
@ -75,7 +75,7 @@ public class NumberPropertiesOnly {
* Get _float * Get _float
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Float getFloat() { public Float getFloat() {
return _float; return _float;
@ -99,7 +99,7 @@ public class NumberPropertiesOnly {
* maximum: 50.2 * maximum: 50.2
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Double getDouble() { public Double getDouble() {
return _double; return _double;

View File

@ -30,7 +30,7 @@ import org.openapitools.client.model.Tag;
/** /**
* Pet * Pet
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pet { public class Pet {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -118,7 +118,7 @@ public class Pet {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
@ -140,7 +140,7 @@ public class Pet {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
@ -162,7 +162,7 @@ public class Pet {
* Get category * Get category
* @return category * @return category
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
@ -192,7 +192,7 @@ public class Pet {
* Get photoUrls * Get photoUrls
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
public List<String> getPhotoUrls() { public List<String> getPhotoUrls() {
return photoUrls; return photoUrls;
@ -222,7 +222,7 @@ public class Pet {
* Get tags * Get tags
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
@ -244,7 +244,7 @@ public class Pet {
* pet status in the store * pet status in the store
* @return status * @return status
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;

View File

@ -28,7 +28,7 @@ import java.util.List;
/** /**
* Query * Query
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Query { public class Query {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -100,7 +100,7 @@ public class Query {
* Query * Query
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
@ -130,7 +130,7 @@ public class Query {
* Get outcomes * Get outcomes
* @return outcomes * @return outcomes
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<OutcomesEnum> getOutcomes() { public List<OutcomesEnum> getOutcomes() {
return outcomes; return outcomes;

View File

@ -25,7 +25,7 @@ import java.io.IOException;
/** /**
* Tag * Tag
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Tag { public class Tag {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -48,7 +48,7 @@ public class Tag {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
@ -70,7 +70,7 @@ public class Tag {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;

View File

@ -25,7 +25,7 @@ import java.io.IOException;
/** /**
* TestFormObjectMultipartRequestMarker * TestFormObjectMultipartRequestMarker
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestFormObjectMultipartRequestMarker { public class TestFormObjectMultipartRequestMarker {
public static final String SERIALIZED_NAME_NAME = "name"; public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME) @SerializedName(SERIALIZED_NAME_NAME)
@ -44,7 +44,7 @@ public class TestFormObjectMultipartRequestMarker {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;

View File

@ -25,7 +25,7 @@ import java.io.IOException;
/** /**
* TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter * TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter { public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter {
public static final String SERIALIZED_NAME_SIZE = "size"; public static final String SERIALIZED_NAME_SIZE = "size";
@SerializedName(SERIALIZED_NAME_SIZE) @SerializedName(SERIALIZED_NAME_SIZE)
@ -56,7 +56,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
@ -78,7 +78,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
@ -100,7 +100,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
@ -122,7 +122,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;

View File

@ -28,7 +28,7 @@ import java.util.List;
/** /**
* TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter * TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
public static final String SERIALIZED_NAME_VALUES = "values"; public static final String SERIALIZED_NAME_VALUES = "values";
@SerializedName(SERIALIZED_NAME_VALUES) @SerializedName(SERIALIZED_NAME_VALUES)
@ -55,7 +55,7 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* Get values * Get values
* @return values * @return values
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getValues() { public List<String> getValues() {
return values; return values;

View File

@ -255,7 +255,7 @@
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
<jackson-version>2.15.2</jackson-version> <jackson-version>2.15.2</jackson-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version> <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<httpmime-version>4.5.14</httpmime-version> <httpmime-version>4.5.14</httpmime-version>
<junit-version>4.13.2</junit-version> <junit-version>4.13.2</junit-version>
<spotless.version>2.27.2</spotless.version> <spotless.version>2.27.2</spotless.version>

View File

@ -51,7 +51,7 @@ import static java.nio.charset.StandardCharsets.UTF_8;
* <p>The setter methods of this class return the current object to facilitate * <p>The setter methods of this class return the current object to facilitate
* a fluent style of configuration.</p> * a fluent style of configuration.</p>
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiClient { public class ApiClient {
private HttpClient.Builder builder; private HttpClient.Builder builder;

View File

@ -15,7 +15,7 @@ package org.openapitools.client;
import java.net.http.HttpHeaders; import java.net.http.HttpHeaders;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiException extends Exception { public class ApiException extends Exception {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Configuration { public class Configuration {
public static final String VERSION = "0.1.0"; public static final String VERSION = "0.1.0";

View File

@ -13,7 +13,7 @@ import java.util.HashSet;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.Set;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class JSON { public class JSON {
private ObjectMapper mapper; private ObjectMapper mapper;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pair { public class Pair {
private String name = ""; private String name = "";
private String value = ""; private String value = "";

View File

@ -43,7 +43,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class AuthApi { public class AuthApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -53,7 +53,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class BodyApi { public class BodyApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -50,7 +50,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class FormApi { public class FormApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -50,7 +50,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class HeaderApi { public class HeaderApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -50,7 +50,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class PathApi { public class PathApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -56,7 +56,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class QueryApi { public class QueryApi {
private final HttpClient memberVarHttpClient; private final HttpClient memberVarHttpClient;
private final ObjectMapper memberVarObjectMapper; private final ObjectMapper memberVarObjectMapper;

View File

@ -22,7 +22,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
/** /**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public abstract class AbstractOpenApiSchema { public abstract class AbstractOpenApiSchema {
// store the actual instance of the schema/object // store the actual instance of the schema/object

View File

@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Bird.JSON_PROPERTY_SIZE, Bird.JSON_PROPERTY_SIZE,
Bird.JSON_PROPERTY_COLOR Bird.JSON_PROPERTY_COLOR
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Bird { public class Bird {
public static final String JSON_PROPERTY_SIZE = "size"; public static final String JSON_PROPERTY_SIZE = "size";
private String size; private String size;
@ -55,7 +55,7 @@ public class Bird {
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SIZE) @JsonProperty(JSON_PROPERTY_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Bird {
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COLOR) @JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Category.JSON_PROPERTY_ID, Category.JSON_PROPERTY_ID,
Category.JSON_PROPERTY_NAME Category.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Category { public class Category {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -55,7 +55,7 @@ public class Category {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Category {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -40,7 +40,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
DataQuery.JSON_PROPERTY_TEXT, DataQuery.JSON_PROPERTY_TEXT,
DataQuery.JSON_PROPERTY_DATE DataQuery.JSON_PROPERTY_DATE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DataQuery extends Query { public class DataQuery extends Query {
public static final String JSON_PROPERTY_SUFFIX = "suffix"; public static final String JSON_PROPERTY_SUFFIX = "suffix";
private String suffix; private String suffix;
@ -63,7 +63,7 @@ public class DataQuery extends Query {
* test suffix * test suffix
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUFFIX) @JsonProperty(JSON_PROPERTY_SUFFIX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -88,7 +88,7 @@ public class DataQuery extends Query {
* Some text containing white spaces * Some text containing white spaces
* @return text * @return text
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TEXT) @JsonProperty(JSON_PROPERTY_TEXT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -113,7 +113,7 @@ public class DataQuery extends Query {
* A date * A date
* @return date * @return date
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATE) @JsonProperty(JSON_PROPERTY_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -48,7 +48,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
DefaultValue.JSON_PROPERTY_ARRAY_STRING_EXTENSION_NULLABLE, DefaultValue.JSON_PROPERTY_ARRAY_STRING_EXTENSION_NULLABLE,
DefaultValue.JSON_PROPERTY_STRING_NULLABLE DefaultValue.JSON_PROPERTY_STRING_NULLABLE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DefaultValue { public class DefaultValue {
public static final String JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default"; public static final String JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default";
private List<StringEnumRef> arrayStringEnumRefDefault = new ArrayList<>(Arrays.asList(StringEnumRef.SUCCESS, StringEnumRef.FAILURE)); private List<StringEnumRef> arrayStringEnumRefDefault = new ArrayList<>(Arrays.asList(StringEnumRef.SUCCESS, StringEnumRef.FAILURE));
@ -131,7 +131,7 @@ public class DefaultValue {
* Get arrayStringEnumRefDefault * Get arrayStringEnumRefDefault
* @return arrayStringEnumRefDefault * @return arrayStringEnumRefDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_REF_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -164,7 +164,7 @@ public class DefaultValue {
* Get arrayStringEnumDefault * Get arrayStringEnumDefault
* @return arrayStringEnumDefault * @return arrayStringEnumDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_ENUM_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -197,7 +197,7 @@ public class DefaultValue {
* Get arrayStringDefault * Get arrayStringDefault
* @return arrayStringDefault * @return arrayStringDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_STRING_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -230,7 +230,7 @@ public class DefaultValue {
* Get arrayIntegerDefault * Get arrayIntegerDefault
* @return arrayIntegerDefault * @return arrayIntegerDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT) @JsonProperty(JSON_PROPERTY_ARRAY_INTEGER_DEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -263,7 +263,7 @@ public class DefaultValue {
* Get arrayString * Get arrayString
* @return arrayString * @return arrayString
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARRAY_STRING) @JsonProperty(JSON_PROPERTY_ARRAY_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -300,7 +300,7 @@ public class DefaultValue {
* Get arrayStringNullable * Get arrayStringNullable
* @return arrayStringNullable * @return arrayStringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public List<String> getArrayStringNullable() { public List<String> getArrayStringNullable() {
@ -345,7 +345,7 @@ public class DefaultValue {
* Get arrayStringExtensionNullable * Get arrayStringExtensionNullable
* @return arrayStringExtensionNullable * @return arrayStringExtensionNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public List<String> getArrayStringExtensionNullable() { public List<String> getArrayStringExtensionNullable() {
@ -378,7 +378,7 @@ public class DefaultValue {
* Get stringNullable * Get stringNullable
* @return stringNullable * @return stringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonIgnore @JsonIgnore
public String getStringNullable() { public String getStringNullable() {

View File

@ -37,7 +37,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
NumberPropertiesOnly.JSON_PROPERTY_FLOAT, NumberPropertiesOnly.JSON_PROPERTY_FLOAT,
NumberPropertiesOnly.JSON_PROPERTY_DOUBLE NumberPropertiesOnly.JSON_PROPERTY_DOUBLE
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class NumberPropertiesOnly { public class NumberPropertiesOnly {
public static final String JSON_PROPERTY_NUMBER = "number"; public static final String JSON_PROPERTY_NUMBER = "number";
private BigDecimal number; private BigDecimal number;
@ -60,7 +60,7 @@ public class NumberPropertiesOnly {
* Get number * Get number
* @return number * @return number
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NUMBER) @JsonProperty(JSON_PROPERTY_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -85,7 +85,7 @@ public class NumberPropertiesOnly {
* Get _float * Get _float
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLOAT) @JsonProperty(JSON_PROPERTY_FLOAT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -112,7 +112,7 @@ public class NumberPropertiesOnly {
* maximum: 50.2 * maximum: 50.2
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DOUBLE) @JsonProperty(JSON_PROPERTY_DOUBLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -43,7 +43,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Pet.JSON_PROPERTY_TAGS, Pet.JSON_PROPERTY_TAGS,
Pet.JSON_PROPERTY_STATUS Pet.JSON_PROPERTY_STATUS
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pet { public class Pet {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -112,7 +112,7 @@ public class Pet {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -137,7 +137,7 @@ public class Pet {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS) @JsonInclude(value = JsonInclude.Include.ALWAYS)
@ -162,7 +162,7 @@ public class Pet {
* Get category * Get category
* @return category * @return category
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CATEGORY) @JsonProperty(JSON_PROPERTY_CATEGORY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -195,7 +195,7 @@ public class Pet {
* Get photoUrls * Get photoUrls
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PHOTO_URLS) @JsonProperty(JSON_PROPERTY_PHOTO_URLS)
@JsonInclude(value = JsonInclude.Include.ALWAYS) @JsonInclude(value = JsonInclude.Include.ALWAYS)
@ -228,7 +228,7 @@ public class Pet {
* Get tags * Get tags
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TAGS) @JsonProperty(JSON_PROPERTY_TAGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -253,7 +253,7 @@ public class Pet {
* pet status in the store * pet status in the store
* @return status * @return status
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATUS) @JsonProperty(JSON_PROPERTY_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -37,7 +37,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Query.JSON_PROPERTY_ID, Query.JSON_PROPERTY_ID,
Query.JSON_PROPERTY_OUTCOMES Query.JSON_PROPERTY_OUTCOMES
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Query { public class Query {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -94,7 +94,7 @@ public class Query {
* Query * Query
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -127,7 +127,7 @@ public class Query {
* Get outcomes * Get outcomes
* @return outcomes * @return outcomes
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OUTCOMES) @JsonProperty(JSON_PROPERTY_OUTCOMES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
Tag.JSON_PROPERTY_ID, Tag.JSON_PROPERTY_ID,
Tag.JSON_PROPERTY_NAME Tag.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Tag { public class Tag {
public static final String JSON_PROPERTY_ID = "id"; public static final String JSON_PROPERTY_ID = "id";
private Long id; private Long id;
@ -55,7 +55,7 @@ public class Tag {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -80,7 +80,7 @@ public class Tag {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -34,7 +34,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonPropertyOrder({ @JsonPropertyOrder({
TestFormObjectMultipartRequestMarker.JSON_PROPERTY_NAME TestFormObjectMultipartRequestMarker.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestFormObjectMultipartRequestMarker { public class TestFormObjectMultipartRequestMarker {
public static final String JSON_PROPERTY_NAME = "name"; public static final String JSON_PROPERTY_NAME = "name";
private String name; private String name;
@ -51,7 +51,7 @@ public class TestFormObjectMultipartRequestMarker {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -37,7 +37,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_ID, TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_ID,
TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_NAME TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.JSON_PROPERTY_NAME
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter { public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter {
public static final String JSON_PROPERTY_SIZE = "size"; public static final String JSON_PROPERTY_SIZE = "size";
private String size; private String size;
@ -63,7 +63,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SIZE) @JsonProperty(JSON_PROPERTY_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -88,7 +88,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COLOR) @JsonProperty(JSON_PROPERTY_COLOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -113,7 +113,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID) @JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@ -138,7 +138,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME) @JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -36,7 +36,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonPropertyOrder({ @JsonPropertyOrder({
TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.JSON_PROPERTY_VALUES TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.JSON_PROPERTY_VALUES
}) })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
public static final String JSON_PROPERTY_VALUES = "values"; public static final String JSON_PROPERTY_VALUES = "values";
private List<String> values = new ArrayList<>(); private List<String> values = new ArrayList<>();
@ -61,7 +61,7 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* Get values * Get values
* @return values * @return values
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUES) @JsonProperty(JSON_PROPERTY_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

View File

@ -333,7 +333,7 @@
<gson-version>2.10.1</gson-version> <gson-version>2.10.1</gson-version>
<commons-lang3-version>3.14.0</commons-lang3-version> <commons-lang3-version>3.14.0</commons-lang3-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version> <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<junit-version>5.10.0</junit-version> <junit-version>5.10.0</junit-version>
<junit-platform-runner.version>1.10.0</junit-platform-runner.version> <junit-platform-runner.version>1.10.0</junit-platform-runner.version>
<javax.ws.rs-api-version>2.1.1</javax.ws.rs-api-version> <javax.ws.rs-api-version>2.1.1</javax.ws.rs-api-version>

View File

@ -21,7 +21,7 @@ import java.util.List;
* <p>ApiException class.</p> * <p>ApiException class.</p>
*/ */
@SuppressWarnings("serial") @SuppressWarnings("serial")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiException extends Exception { public class ApiException extends Exception {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Configuration { public class Configuration {
public static final String VERSION = "0.1.0"; public static final String VERSION = "0.1.0";

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pair { public class Pair {
private String name = ""; private String name = "";
private String value = ""; private String value = "";

View File

@ -16,7 +16,7 @@ package org.openapitools.client;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class StringUtil { public class StringUtil {
/** /**
* Check if the given array contains the given value (with case-insensitive comparison). * Check if the given array contains the given value (with case-insensitive comparison).

View File

@ -20,7 +20,7 @@ import java.net.URI;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiKeyAuth implements Authentication { public class ApiKeyAuth implements Authentication {
private final String location; private final String location;
private final String paramName; private final String paramName;

View File

@ -22,7 +22,7 @@ import java.util.Map;
import java.util.Optional; import java.util.Optional;
import java.util.function.Supplier; import java.util.function.Supplier;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class HttpBearerAuth implements Authentication { public class HttpBearerAuth implements Authentication {
private final String scheme; private final String scheme;
private Supplier<String> tokenSupplier; private Supplier<String> tokenSupplier;

View File

@ -21,7 +21,7 @@ import java.util.Map;
/** /**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public abstract class AbstractOpenApiSchema { public abstract class AbstractOpenApiSchema {
// store the actual instance of the schema/object // store the actual instance of the schema/object

View File

@ -49,7 +49,7 @@ import org.openapitools.client.JSON;
/** /**
* Bird * Bird
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Bird { public class Bird {
public static final String SERIALIZED_NAME_SIZE = "size"; public static final String SERIALIZED_NAME_SIZE = "size";
@SerializedName(SERIALIZED_NAME_SIZE) @SerializedName(SERIALIZED_NAME_SIZE)
@ -71,7 +71,7 @@ public class Bird {
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
} }
@ -90,7 +90,7 @@ public class Bird {
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }

View File

@ -49,7 +49,7 @@ import org.openapitools.client.JSON;
/** /**
* Category * Category
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Category { public class Category {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -71,7 +71,7 @@ public class Category {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@ -90,7 +90,7 @@ public class Category {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@ -53,7 +53,7 @@ import org.openapitools.client.JSON;
/** /**
* DataQuery * DataQuery
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DataQuery extends Query { public class DataQuery extends Query {
public static final String SERIALIZED_NAME_SUFFIX = "suffix"; public static final String SERIALIZED_NAME_SUFFIX = "suffix";
@SerializedName(SERIALIZED_NAME_SUFFIX) @SerializedName(SERIALIZED_NAME_SUFFIX)
@ -79,7 +79,7 @@ public class DataQuery extends Query {
* test suffix * test suffix
* @return suffix * @return suffix
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSuffix() { public String getSuffix() {
return suffix; return suffix;
} }
@ -98,7 +98,7 @@ public class DataQuery extends Query {
* Some text containing white spaces * Some text containing white spaces
* @return text * @return text
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getText() { public String getText() {
return text; return text;
} }
@ -117,7 +117,7 @@ public class DataQuery extends Query {
* A date * A date
* @return date * @return date
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public OffsetDateTime getDate() { public OffsetDateTime getDate() {
return date; return date;
} }

View File

@ -53,7 +53,7 @@ import org.openapitools.client.JSON;
/** /**
* to test the default value of properties * to test the default value of properties
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class DefaultValue { public class DefaultValue {
public static final String SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default"; public static final String SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT = "array_string_enum_ref_default";
@SerializedName(SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT) @SerializedName(SERIALIZED_NAME_ARRAY_STRING_ENUM_REF_DEFAULT)
@ -161,7 +161,7 @@ public class DefaultValue {
* Get arrayStringEnumRefDefault * Get arrayStringEnumRefDefault
* @return arrayStringEnumRefDefault * @return arrayStringEnumRefDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<StringEnumRef> getArrayStringEnumRefDefault() { public List<StringEnumRef> getArrayStringEnumRefDefault() {
return arrayStringEnumRefDefault; return arrayStringEnumRefDefault;
} }
@ -188,7 +188,7 @@ public class DefaultValue {
* Get arrayStringEnumDefault * Get arrayStringEnumDefault
* @return arrayStringEnumDefault * @return arrayStringEnumDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() { public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() {
return arrayStringEnumDefault; return arrayStringEnumDefault;
} }
@ -215,7 +215,7 @@ public class DefaultValue {
* Get arrayStringDefault * Get arrayStringDefault
* @return arrayStringDefault * @return arrayStringDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringDefault() { public List<String> getArrayStringDefault() {
return arrayStringDefault; return arrayStringDefault;
} }
@ -242,7 +242,7 @@ public class DefaultValue {
* Get arrayIntegerDefault * Get arrayIntegerDefault
* @return arrayIntegerDefault * @return arrayIntegerDefault
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<Integer> getArrayIntegerDefault() { public List<Integer> getArrayIntegerDefault() {
return arrayIntegerDefault; return arrayIntegerDefault;
} }
@ -269,7 +269,7 @@ public class DefaultValue {
* Get arrayString * Get arrayString
* @return arrayString * @return arrayString
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayString() { public List<String> getArrayString() {
return arrayString; return arrayString;
} }
@ -296,7 +296,7 @@ public class DefaultValue {
* Get arrayStringNullable * Get arrayStringNullable
* @return arrayStringNullable * @return arrayStringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringNullable() { public List<String> getArrayStringNullable() {
return arrayStringNullable; return arrayStringNullable;
} }
@ -323,7 +323,7 @@ public class DefaultValue {
* Get arrayStringExtensionNullable * Get arrayStringExtensionNullable
* @return arrayStringExtensionNullable * @return arrayStringExtensionNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getArrayStringExtensionNullable() { public List<String> getArrayStringExtensionNullable() {
return arrayStringExtensionNullable; return arrayStringExtensionNullable;
} }
@ -342,7 +342,7 @@ public class DefaultValue {
* Get stringNullable * Get stringNullable
* @return stringNullable * @return stringNullable
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getStringNullable() { public String getStringNullable() {
return stringNullable; return stringNullable;
} }

View File

@ -50,7 +50,7 @@ import org.openapitools.client.JSON;
/** /**
* NumberPropertiesOnly * NumberPropertiesOnly
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class NumberPropertiesOnly { public class NumberPropertiesOnly {
public static final String SERIALIZED_NAME_NUMBER = "number"; public static final String SERIALIZED_NAME_NUMBER = "number";
@SerializedName(SERIALIZED_NAME_NUMBER) @SerializedName(SERIALIZED_NAME_NUMBER)
@ -76,7 +76,7 @@ public class NumberPropertiesOnly {
* Get number * Get number
* @return number * @return number
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public BigDecimal getNumber() { public BigDecimal getNumber() {
return number; return number;
} }
@ -95,7 +95,7 @@ public class NumberPropertiesOnly {
* Get _float * Get _float
* @return _float * @return _float
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Float getFloat() { public Float getFloat() {
return _float; return _float;
} }
@ -116,7 +116,7 @@ public class NumberPropertiesOnly {
* maximum: 50.2 * maximum: 50.2
* @return _double * @return _double
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Double getDouble() { public Double getDouble() {
return _double; return _double;
} }

View File

@ -53,7 +53,7 @@ import org.openapitools.client.JSON;
/** /**
* Pet * Pet
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pet { public class Pet {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -145,7 +145,7 @@ public class Pet {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@ -164,7 +164,7 @@ public class Pet {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
public String getName() { public String getName() {
return name; return name;
} }
@ -183,7 +183,7 @@ public class Pet {
* Get category * Get category
* @return category * @return category
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Category getCategory() { public Category getCategory() {
return category; return category;
} }
@ -210,7 +210,7 @@ public class Pet {
* Get photoUrls * Get photoUrls
* @return photoUrls * @return photoUrls
**/ **/
@javax.annotation.Nonnull @jakarta.annotation.Nonnull
public List<String> getPhotoUrls() { public List<String> getPhotoUrls() {
return photoUrls; return photoUrls;
} }
@ -237,7 +237,7 @@ public class Pet {
* Get tags * Get tags
* @return tags * @return tags
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<Tag> getTags() { public List<Tag> getTags() {
return tags; return tags;
} }
@ -256,7 +256,7 @@ public class Pet {
* pet status in the store * pet status in the store
* @return status * @return status
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public StatusEnum getStatus() { public StatusEnum getStatus() {
return status; return status;
} }

View File

@ -51,7 +51,7 @@ import org.openapitools.client.JSON;
/** /**
* Query * Query
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Query { public class Query {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -127,7 +127,7 @@ public class Query {
* Query * Query
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@ -154,7 +154,7 @@ public class Query {
* Get outcomes * Get outcomes
* @return outcomes * @return outcomes
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<OutcomesEnum> getOutcomes() { public List<OutcomesEnum> getOutcomes() {
return outcomes; return outcomes;
} }

View File

@ -49,7 +49,7 @@ import org.openapitools.client.JSON;
/** /**
* Tag * Tag
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Tag { public class Tag {
public static final String SERIALIZED_NAME_ID = "id"; public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID) @SerializedName(SERIALIZED_NAME_ID)
@ -71,7 +71,7 @@ public class Tag {
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@ -90,7 +90,7 @@ public class Tag {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@ -49,7 +49,7 @@ import org.openapitools.client.JSON;
/** /**
* TestFormObjectMultipartRequestMarker * TestFormObjectMultipartRequestMarker
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestFormObjectMultipartRequestMarker { public class TestFormObjectMultipartRequestMarker {
public static final String SERIALIZED_NAME_NAME = "name"; public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME) @SerializedName(SERIALIZED_NAME_NAME)
@ -67,7 +67,7 @@ public class TestFormObjectMultipartRequestMarker {
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@ -49,7 +49,7 @@ import org.openapitools.client.JSON;
/** /**
* TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter * TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter { public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter {
public static final String SERIALIZED_NAME_SIZE = "size"; public static final String SERIALIZED_NAME_SIZE = "size";
@SerializedName(SERIALIZED_NAME_SIZE) @SerializedName(SERIALIZED_NAME_SIZE)
@ -79,7 +79,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get size * Get size
* @return size * @return size
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getSize() { public String getSize() {
return size; return size;
} }
@ -98,7 +98,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get color * Get color
* @return color * @return color
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getColor() { public String getColor() {
return color; return color;
} }
@ -117,7 +117,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get id * Get id
* @return id * @return id
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public Long getId() { public Long getId() {
return id; return id;
} }
@ -136,7 +136,7 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* Get name * Get name
* @return name * @return name
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public String getName() { public String getName() {
return name; return name;
} }

View File

@ -51,7 +51,7 @@ import org.openapitools.client.JSON;
/** /**
* TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter * TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter { public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
public static final String SERIALIZED_NAME_VALUES = "values"; public static final String SERIALIZED_NAME_VALUES = "values";
@SerializedName(SERIALIZED_NAME_VALUES) @SerializedName(SERIALIZED_NAME_VALUES)
@ -77,7 +77,7 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* Get values * Get values
* @return values * @return values
**/ **/
@javax.annotation.Nullable @jakarta.annotation.Nullable
public List<String> getValues() { public List<String> getValues() {
return values; return values;
} }

View File

@ -252,7 +252,7 @@
<jackson-version>2.15.2</jackson-version> <jackson-version>2.15.2</jackson-version>
<jackson-databind-version>2.15.2</jackson-databind-version> <jackson-databind-version>2.15.2</jackson-databind-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version> <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<threetenbp-version>2.9.10</threetenbp-version> <threetenbp-version>2.9.10</threetenbp-version>
<maven-plugin-version>1.0.0</maven-plugin-version> <maven-plugin-version>1.0.0</maven-plugin-version>
<junit-version>4.13</junit-version> <junit-version>4.13</junit-version>

View File

@ -25,17 +25,17 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import javax.ws.rs.client.Client; import jakarta.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder; import jakarta.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.Entity; import jakarta.ws.rs.client.Entity;
import javax.ws.rs.client.Invocation; import jakarta.ws.rs.client.Invocation;
import javax.ws.rs.client.WebTarget; import jakarta.ws.rs.client.WebTarget;
import javax.ws.rs.core.Form; import jakarta.ws.rs.core.Form;
import javax.ws.rs.core.GenericEntity; import jakarta.ws.rs.core.GenericEntity;
import javax.ws.rs.core.GenericType; import jakarta.ws.rs.core.GenericType;
import javax.ws.rs.core.MediaType; import jakarta.ws.rs.core.MediaType;
import javax.ws.rs.core.Response; import jakarta.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status; import jakarta.ws.rs.core.Response.Status;
import org.jboss.logging.Logger; import org.jboss.logging.Logger;
import org.jboss.resteasy.client.jaxrs.internal.ClientConfiguration; import org.jboss.resteasy.client.jaxrs.internal.ClientConfiguration;
@ -47,7 +47,7 @@ import org.openapitools.client.auth.HttpBasicAuth;
import org.openapitools.client.auth.HttpBearerAuth; import org.openapitools.client.auth.HttpBearerAuth;
import org.openapitools.client.auth.ApiKeyAuth; import org.openapitools.client.auth.ApiKeyAuth;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiClient extends JavaTimeFormatter { public class ApiClient extends JavaTimeFormatter {
private Map<String, String> defaultHeaderMap = new HashMap<String, String>(); private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
private Map<String, String> defaultCookieMap = new HashMap<String, String>(); private Map<String, String> defaultCookieMap = new HashMap<String, String>();

View File

@ -16,7 +16,7 @@ package org.openapitools.client;
import java.util.Map; import java.util.Map;
import java.util.List; import java.util.List;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class ApiException extends Exception { public class ApiException extends Exception {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Configuration { public class Configuration {
public static final String VERSION = "0.1.0"; public static final String VERSION = "0.1.0";

View File

@ -7,9 +7,9 @@ import com.fasterxml.jackson.datatype.jsr310.*;
import java.text.DateFormat; import java.text.DateFormat;
import javax.ws.rs.ext.ContextResolver; import jakarta.ws.rs.ext.ContextResolver;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class JSON implements ContextResolver<ObjectMapper> { public class JSON implements ContextResolver<ObjectMapper> {
private ObjectMapper mapper; private ObjectMapper mapper;

View File

@ -20,7 +20,7 @@ import java.time.format.DateTimeParseException;
* Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class. * Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class.
* It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}. * It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}.
*/ */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class JavaTimeFormatter { public class JavaTimeFormatter {
private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME; private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME;

View File

@ -13,7 +13,7 @@
package org.openapitools.client; package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT") @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0-SNAPSHOT")
public class Pair { public class Pair {
private String name = ""; private String name = "";
private String value = ""; private String value = "";

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