-
-
Notifications
You must be signed in to change notification settings - Fork 7.2k
[Java] Fix content for enum in MultiPart (#19973) #21373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
411e311
[Java] Fix content for enum in addPartToMultiPartBuilder ([#19973](ht…
jarryDk 1921068
Merge branch 'OpenAPITools:master' into fix/19973
jarryDk b89328d
[Java] Fix content for enum with restclient (#19973)
jarryDk fae1189
Merge branch 'OpenAPITools:master' into fix/19973
jarryDk ded833e
[Java] Fix content for enum with restclient (#19973)
jarryDk e427ec4
Merge branch 'OpenAPITools:master' into fix/19973
jarryDk 3149e10
[Java] Fix content for enum with restclient (#19973)
jarryDk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
generatorName: java | ||
outputDir: samples/client/others/java/restclient-enum-in-multipart | ||
library: restclient | ||
inputSpec: modules/openapi-generator/src/test/resources/3_1/enum-in-multipart.yaml | ||
templateDir: modules/openapi-generator/src/main/resources/Java | ||
additionalProperties: | ||
hideGenerationTimestamp: "true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
modules/openapi-generator/src/test/resources/3_1/enum-in-multipart.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
openapi: 3.1.0 | ||
info: | ||
description: API | ||
title: API | ||
version: 1.0.0 | ||
servers: | ||
- description: "Localhost, used when testing" | ||
url: http://localhost:8080 | ||
security: | ||
- basicAuth: [] | ||
paths: | ||
/messages: | ||
post: | ||
description: Creates a new message | ||
x-content-type: multipart/form-data | ||
x-accepts: | ||
- application/json | ||
operationId: CreateMessage | ||
requestBody: | ||
$ref: "#/components/requestBodies/CreateMessageBody" | ||
responses: | ||
"201": | ||
$ref: "#/components/responses/MessageCreatedResponse" | ||
summary: Creates a new message | ||
tags: | ||
- BAS | ||
components: | ||
parameters: | ||
messageId: | ||
description: The identifier the message | ||
explode: false | ||
in: path | ||
name: messageId | ||
required: true | ||
schema: | ||
format: uuid | ||
type: string | ||
style: simple | ||
requestBodies: | ||
CreateMessageBody: | ||
content: | ||
multipart/form-data: | ||
schema: | ||
$ref: "#/components/schemas/CreateMessage_request" | ||
required: true | ||
responses: | ||
MessageCreatedResponse: | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "#/components/schemas/inline_object" | ||
description: The message was created. | ||
schemas: | ||
DataDirection: | ||
description: The direction a message travels | ||
enum: | ||
- INGOING | ||
- OUTGOING | ||
type: string | ||
DataChannel: | ||
description: The transport-channel | ||
enum: | ||
- BIKE | ||
- CAR | ||
- BUS | ||
- PLANE | ||
type: string | ||
messageId: | ||
description: The messageID | ||
format: uuid | ||
type: string | ||
CreateMessage_request: | ||
properties: | ||
fileContent: | ||
description: The message payload | ||
format: binary | ||
type: string | ||
idempotencyKey: | ||
type: string | ||
dataDirection: | ||
$ref: "#/components/schemas/DataDirection" | ||
dataChannel: | ||
$ref: "#/components/schemas/DataChannel" | ||
required: | ||
- dataChannel | ||
- dataDirection | ||
- fileContent | ||
- fileType | ||
- idempotencyKey | ||
type: object | ||
inline_object: | ||
example: | ||
messageId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 | ||
properties: | ||
messageId: | ||
description: The messageID | ||
format: uuid | ||
type: string | ||
required: | ||
- messageId | ||
securitySchemes: | ||
basicAuth: | ||
scheme: basic | ||
type: http | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
samples/client/others/java/restclient-enum-in-multipart/.github/workflows/maven.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
# | ||
# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech) | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ main, master ] | ||
pull_request: | ||
branches: [ main, master ] | ||
|
||
jobs: | ||
build: | ||
name: Build API | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [ 17, 21 ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn -B package --no-transfer-progress --file pom.xml |
21 changes: 21 additions & 0 deletions
21
samples/client/others/java/restclient-enum-in-multipart/.gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
*.class | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.ear | ||
|
||
# exclude jar for gradle wrapper | ||
!gradle/wrapper/*.jar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
# build files | ||
**/target | ||
target | ||
.gradle | ||
build |
23 changes: 23 additions & 0 deletions
23
samples/client/others/java/restclient-enum-in-multipart/.openapi-generator-ignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# OpenAPI Generator Ignore | ||
# Generated by openapi-generator https://github.com/openapitools/openapi-generator | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md |
36 changes: 36 additions & 0 deletions
36
samples/client/others/java/restclient-enum-in-multipart/.openapi-generator/FILES
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.github/workflows/maven.yml | ||
.gitignore | ||
.travis.yml | ||
README.md | ||
api/openapi.yaml | ||
build.gradle | ||
build.sbt | ||
docs/BasApi.md | ||
docs/DataChannel.md | ||
docs/DataDirection.md | ||
docs/InlineObject.md | ||
git_push.sh | ||
gradle.properties | ||
gradle/wrapper/gradle-wrapper.jar | ||
gradle/wrapper/gradle-wrapper.properties | ||
gradlew | ||
gradlew.bat | ||
pom.xml | ||
settings.gradle | ||
src/main/AndroidManifest.xml | ||
src/main/java/org/openapitools/client/ApiClient.java | ||
src/main/java/org/openapitools/client/JavaTimeFormatter.java | ||
src/main/java/org/openapitools/client/RFC3339DateFormat.java | ||
src/main/java/org/openapitools/client/RFC3339InstantDeserializer.java | ||
src/main/java/org/openapitools/client/RFC3339JavaTimeModule.java | ||
src/main/java/org/openapitools/client/ServerConfiguration.java | ||
src/main/java/org/openapitools/client/ServerVariable.java | ||
src/main/java/org/openapitools/client/StringUtil.java | ||
src/main/java/org/openapitools/client/api/BasApi.java | ||
src/main/java/org/openapitools/client/auth/ApiKeyAuth.java | ||
src/main/java/org/openapitools/client/auth/Authentication.java | ||
src/main/java/org/openapitools/client/auth/HttpBasicAuth.java | ||
src/main/java/org/openapitools/client/auth/HttpBearerAuth.java | ||
src/main/java/org/openapitools/client/model/DataChannel.java | ||
src/main/java/org/openapitools/client/model/DataDirection.java | ||
src/main/java/org/openapitools/client/model/InlineObject.java |
1 change: 1 addition & 0 deletions
1
samples/client/others/java/restclient-enum-in-multipart/.openapi-generator/VERSION
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7.14.0-SNAPSHOT |
22 changes: 22 additions & 0 deletions
22
samples/client/others/java/restclient-enum-in-multipart/.travis.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# | ||
# Generated by OpenAPI Generator: https://openapi-generator.tech | ||
# | ||
# Ref: https://docs.travis-ci.com/user/languages/java/ | ||
# | ||
language: java | ||
jdk: | ||
- openjdk12 | ||
- openjdk11 | ||
- openjdk10 | ||
- openjdk9 | ||
- openjdk8 | ||
before_install: | ||
# ensure gradlew has proper permission | ||
- chmod a+x ./gradlew | ||
script: | ||
# test using maven | ||
#- mvn test | ||
# test using gradle | ||
- gradle test | ||
# test using sbt | ||
# - sbt test |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add this new folder to the github workflow so that ci will test it moving forward
https://github.com/OpenAPITools/openapi-generator/blob/master/.github/workflows/samples-java-client-jdk11.yaml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New folder added to https://github.com/OpenAPITools/openapi-generator/blob/master/.github/workflows/samples-java-client-jdk17.yaml as Spring needs Java 17