forked from loafle/openapi-generator-original
[Java] Use Fully Qualified Name for java.util.Locale in Generated Classes (#22342)
* Remove Imports of `Locale` from all `model.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `modelEnum.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `oneof_model.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `api.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `anyof_model.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `pojo.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `ApiClient.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `ApiKeyAuth.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `JSON.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `HttpSignatureAuth.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `Play24CallFactory.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `Play25CallFactory.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `Play26CallFactory.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `apiException.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `clientConfiguration.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `RequestFactory.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `httpLoggingFilter.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `securityApiUtils.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Remove Imports of `Locale` from all `validatorUtils.mustache`-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Use `Locale`-class Via Fully Qualified Name Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated 'sample'-files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Revert Changes * Inline `Locale` Imports Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated 'source' Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update `kotlin-spring/model.mustache` Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated 'sample' Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated 'sample' Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated 'java-feign-hc5' Sample Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated Sample Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> * Update Generated Kotlin Sample Files Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com> --------- Signed-off-by: Chrimle <28791817+Chrimle@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e1edb9e645
commit
149fdcb61f
@@ -15,7 +15,6 @@ package org.openapitools.client.auth;
|
||||
|
||||
import feign.RequestInterceptor;
|
||||
import feign.RequestTemplate;
|
||||
import java.util.Locale;
|
||||
|
||||
public class ApiKeyAuth implements RequestInterceptor {
|
||||
private final String location;
|
||||
@@ -51,7 +50,7 @@ public class ApiKeyAuth implements RequestInterceptor {
|
||||
} else if ("header".equals(location)) {
|
||||
template.header(paramName, apiKey);
|
||||
} else if ("cookie".equals(location)) {
|
||||
template.header("Cookie", String.format(Locale.ROOT, "%s=%s", paramName, apiKey));
|
||||
template.header("Cookie", String.format(java.util.Locale.ROOT, "%s=%s", paramName, apiKey));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.IOException;
|
||||
@@ -23,7 +22,6 @@ import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.stream.JsonReader;
|
||||
import com.google.gson.stream.JsonWriter;
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* Gets or Sets StringEnumRef
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@@ -15,7 +15,6 @@ package org.openapitools.client.model;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
import com.google.gson.TypeAdapter;
|
||||
import com.google.gson.annotations.JsonAdapter;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
Reference in New Issue
Block a user