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
@@ -91,6 +91,9 @@ public interface {{classname}} {
91
91
{{#formParams}}
92
92
private {{>formParams}};
93
93
{{/formParams}}
94
+
{{#cookieParams}}
95
+
private {{>cookieParams}};
96
+
{{/cookieParams}}
94
97
95
98
private {{operationIdCamelCase}}Request() {
96
99
}
@@ -106,7 +109,7 @@ public interface {{classname}} {
106
109
* @param {{paramName}}{{>formParamsNameSuffix}} {{description}} ({{^required}}optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}{{/required}}{{#required}}required{{/required}})
107
110
* @return {{operationIdCamelCase}}Request
108
111
*/
109
-
public {{operationIdCamelCase}}Request {{paramName}}{{>formParamsNameSuffix}}({{>queryParamsImpl}}{{>pathParamsImpl}}{{>headerParamsImpl}}{{>formParamsImpl}}) {
112
+
public {{operationIdCamelCase}}Request {{paramName}}{{>formParamsNameSuffix}}({{>queryParamsImpl}}{{>pathParamsImpl}}{{>headerParamsImpl}}{{>formParamsImpl}}{{>cookieParamsImpl}}) {
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/test/java/org/openapitools/codegen/java/microprofile/JavaMicroprofileServerCodegenTest.java
0 commit comments