You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/test/java/org/openapitools/codegen/java/jaxrs/JavaJAXRSSpecServerCodegenTest.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -537,6 +537,7 @@ public void generateApiWithAsyncSupportAndInterfaceOnlyAndJBossResponse() throws
537
537
codegen.additionalProperties().put(SUPPORT_ASYNC, true); //Given support async is enabled
538
538
codegen.additionalProperties().put(INTERFACE_ONLY, true); //And only interfaces are generated
539
539
codegen.additionalProperties().put(RETURN_JBOSS_RESPONSE, true); //And return type is RestResponse
540
+
codegen.additionalProperties().put(USE_JAKARTA_EE, true); //And return type is RestResponse
540
541
541
542
finalClientOptInputinput = newClientOptInput()
542
543
.openAPI(openAPI)
@@ -1055,6 +1056,7 @@ public void generateSpecInterfaceWithMutinyAndJBossResponse() throws Exception {
1055
1056
codegen.additionalProperties().put(INTERFACE_ONLY, true); //And only interfaces are generated
1056
1057
codegen.additionalProperties().put(USE_TAGS, true); //And use tags to generate everything in several API files
1057
1058
codegen.additionalProperties().put(RETURN_JBOSS_RESPONSE, true); // Use JBoss Response type
1059
+
codegen.additionalProperties().put(USE_JAKARTA_EE, true); // Use JBoss Response type
0 commit comments