@@ -75,7 +75,7 @@ public FakeApi(@Context ServletConfig servletContext) {
75
75
public Response createXmlItem (@ ApiParam (value = "XmlItem Body" ,required =true ) @ NotNull @ Valid XmlItem xmlItem
76
76
,@ Context SecurityContext securityContext )
77
77
throws NotFoundException {
78
- return delegate .createXmlItem (xmlItem ,securityContext );
78
+ return delegate .createXmlItem (xmlItem , securityContext );
79
79
}
80
80
@ POST
81
81
@ Path ("/outer/boolean" )
@@ -87,7 +87,7 @@ public Response createXmlItem(@ApiParam(value = "XmlItem Body" ,required=true) @
87
87
public Response fakeOuterBooleanSerialize (@ ApiParam (value = "Input boolean as post body" ) Boolean body
88
88
,@ Context SecurityContext securityContext )
89
89
throws NotFoundException {
90
- return delegate .fakeOuterBooleanSerialize (body ,securityContext );
90
+ return delegate .fakeOuterBooleanSerialize (body , securityContext );
91
91
}
92
92
@ POST
93
93
@ Path ("/outer/composite" )
@@ -99,7 +99,7 @@ public Response fakeOuterBooleanSerialize(@ApiParam(value = "Input boolean as po
99
99
public Response fakeOuterCompositeSerialize (@ ApiParam (value = "Input composite as post body" ) @ Valid OuterComposite body
100
100
,@ Context SecurityContext securityContext )
101
101
throws NotFoundException {
102
- return delegate .fakeOuterCompositeSerialize (body ,securityContext );
102
+ return delegate .fakeOuterCompositeSerialize (body , securityContext );
103
103
}
104
104
@ POST
105
105
@ Path ("/outer/number" )
@@ -111,7 +111,7 @@ public Response fakeOuterCompositeSerialize(@ApiParam(value = "Input composite a
111
111
public Response fakeOuterNumberSerialize (@ ApiParam (value = "Input number as post body" ) BigDecimal body
112
112
,@ Context SecurityContext securityContext )
113
113
throws NotFoundException {
114
- return delegate .fakeOuterNumberSerialize (body ,securityContext );
114
+ return delegate .fakeOuterNumberSerialize (body , securityContext );
115
115
}
116
116
@ POST
117
117
@ Path ("/outer/string" )
@@ -123,7 +123,7 @@ public Response fakeOuterNumberSerialize(@ApiParam(value = "Input number as post
123
123
public Response fakeOuterStringSerialize (@ ApiParam (value = "Input string as post body" ) String body
124
124
,@ Context SecurityContext securityContext )
125
125
throws NotFoundException {
126
- return delegate .fakeOuterStringSerialize (body ,securityContext );
126
+ return delegate .fakeOuterStringSerialize (body , securityContext );
127
127
}
128
128
@ PUT
129
129
@ Path ("/body-with-file-schema" )
@@ -135,7 +135,7 @@ public Response fakeOuterStringSerialize(@ApiParam(value = "Input string as post
135
135
public Response testBodyWithFileSchema (@ ApiParam (value = "" ,required =true ) @ NotNull @ Valid FileSchemaTestClass body
136
136
,@ Context SecurityContext securityContext )
137
137
throws NotFoundException {
138
- return delegate .testBodyWithFileSchema (body ,securityContext );
138
+ return delegate .testBodyWithFileSchema (body , securityContext );
139
139
}
140
140
@ PUT
141
141
@ Path ("/body-with-query-params" )
@@ -148,7 +148,7 @@ public Response testBodyWithQueryParams(@ApiParam(value = "",required=true) @Que
148
148
,@ ApiParam (value = "" ,required =true ) @ NotNull @ Valid User body
149
149
,@ Context SecurityContext securityContext )
150
150
throws NotFoundException {
151
- return delegate .testBodyWithQueryParams (query ,body ,securityContext );
151
+ return delegate .testBodyWithQueryParams (query , body , securityContext );
152
152
}
153
153
@ PATCH
154
154
@@ -160,7 +160,7 @@ public Response testBodyWithQueryParams(@ApiParam(value = "",required=true) @Que
160
160
public Response testClientModel (@ ApiParam (value = "client model" ,required =true ) @ NotNull @ Valid Client body
161
161
,@ Context SecurityContext securityContext )
162
162
throws NotFoundException {
163
- return delegate .testClientModel (body ,securityContext );
163
+ return delegate .testClientModel (body , securityContext );
164
164
}
165
165
@ POST
166
166
@@ -191,7 +191,7 @@ public Response testEndpointParameters(@ApiParam(value = "None", required=true)
191
191
,@ ApiParam (value = "None" ) @ FormParam ("callback" ) String paramCallback
192
192
,@ Context SecurityContext securityContext )
193
193
throws NotFoundException {
194
- return delegate .testEndpointParameters (number ,_double ,patternWithoutDelimiter ,_byte ,integer ,int32 ,int64 ,_float ,string ,binaryInputStream , binaryDetail ,date ,dateTime ,password ,paramCallback ,securityContext );
194
+ return delegate .testEndpointParameters (number , _double , patternWithoutDelimiter , _byte , integer , int32 , int64 , _float , string , binaryInputStream , binaryDetail , date , dateTime , password , paramCallback , securityContext );
195
195
}
196
196
@ GET
197
197
@@ -212,7 +212,7 @@ public Response testEnumParameters(@ApiParam(value = "Header parameter enum test
212
212
,@ ApiParam (value = "Form parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" ) @ DefaultValue ("-efg" ) @ FormParam ("enum_form_string" ) String enumFormString
213
213
,@ Context SecurityContext securityContext )
214
214
throws NotFoundException {
215
- return delegate .testEnumParameters (enumHeaderStringArray ,enumHeaderString ,enumQueryStringArray ,enumQueryString ,enumQueryInteger ,enumQueryDouble ,enumFormStringArray ,enumFormString ,securityContext );
215
+ return delegate .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumFormStringArray , enumFormString , securityContext );
216
216
}
217
217
@ DELETE
218
218
@@ -229,7 +229,7 @@ public Response testGroupParameters(@ApiParam(value = "Required String in group
229
229
,@ ApiParam (value = "Integer in group parameters" ) @ QueryParam ("int64_group" ) Long int64Group
230
230
,@ Context SecurityContext securityContext )
231
231
throws NotFoundException {
232
- return delegate .testGroupParameters (requiredStringGroup ,requiredBooleanGroup ,requiredInt64Group ,stringGroup ,booleanGroup ,int64Group ,securityContext );
232
+ return delegate .testGroupParameters (requiredStringGroup , requiredBooleanGroup , requiredInt64Group , stringGroup , booleanGroup , int64Group , securityContext );
233
233
}
234
234
@ POST
235
235
@ Path ("/inline-additionalProperties" )
@@ -241,7 +241,7 @@ public Response testGroupParameters(@ApiParam(value = "Required String in group
241
241
public Response testInlineAdditionalProperties (@ ApiParam (value = "request body" ,required =true ) @ NotNull @ Valid Map <String , String > param
242
242
,@ Context SecurityContext securityContext )
243
243
throws NotFoundException {
244
- return delegate .testInlineAdditionalProperties (param ,securityContext );
244
+ return delegate .testInlineAdditionalProperties (param , securityContext );
245
245
}
246
246
@ GET
247
247
@ Path ("/jsonFormData" )
@@ -254,7 +254,7 @@ public Response testJsonFormData(@ApiParam(value = "field1", required=true) @Fo
254
254
,@ ApiParam (value = "field2" , required =true ) @ FormParam ("param2" ) String param2
255
255
,@ Context SecurityContext securityContext )
256
256
throws NotFoundException {
257
- return delegate .testJsonFormData (param ,param2 ,securityContext );
257
+ return delegate .testJsonFormData (param , param2 , securityContext );
258
258
}
259
259
@ POST
260
260
@ Path ("/{petId}/uploadImageWithRequiredFile" )
@@ -275,6 +275,6 @@ public Response uploadFileWithRequiredFile(@ApiParam(value = "ID of pet to updat
275
275
,@ ApiParam (value = "Additional data to pass to server" )@ FormDataParam ("additionalMetadata" ) String additionalMetadata
276
276
,@ Context SecurityContext securityContext )
277
277
throws NotFoundException {
278
- return delegate .uploadFileWithRequiredFile (petId ,requiredFileInputStream , requiredFileDetail ,additionalMetadata ,securityContext );
278
+ return delegate .uploadFileWithRequiredFile (petId , requiredFileInputStream , requiredFileDetail , additionalMetadata , securityContext );
279
279
}
280
280
}
0 commit comments