@@ -158,10 +158,10 @@ public abstract class AbstractRequestService {
158
158
/**
159
159
* Instantiates a new Abstract request builder.
160
160
*
161
- * @param parameterBuilder the parameter builder
162
- * @param requestBodyService the request body builder
163
- * @param operationService the operation builder
164
- * @param parameterCustomizers the parameter customizers
161
+ * @param parameterBuilder the parameter builder
162
+ * @param requestBodyService the request body builder
163
+ * @param operationService the operation builder
164
+ * @param parameterCustomizers the parameter customizers
165
165
* @param localSpringDocParameterNameDiscoverer the local spring doc parameter name discoverer
166
166
*/
167
167
protected AbstractRequestService (GenericParameterService parameterBuilder , RequestBodyService requestBodyService ,
@@ -200,7 +200,7 @@ public static void removeRequestWrapperToIgnore(Class<?>... classes) {
200
200
/**
201
201
* Is request type to ignore boolean.
202
202
*
203
- * @param rawClass the raw class
203
+ * @param rawClass the raw class
204
204
* @return the boolean
205
205
*/
206
206
public static boolean isRequestTypeToIgnore (Class <?> rawClass ) {
@@ -210,11 +210,11 @@ public static boolean isRequestTypeToIgnore(Class<?> rawClass) {
210
210
/**
211
211
* Build operation.
212
212
*
213
- * @param handlerMethod the handler method
214
- * @param requestMethod the request method
215
- * @param operation the operation
216
- * @param methodAttributes the method attributes
217
- * @param openAPI the open api
213
+ * @param handlerMethod the handler method
214
+ * @param requestMethod the request method
215
+ * @param operation the operation
216
+ * @param methodAttributes the method attributes
217
+ * @param openAPI the open api
218
218
* @return the operation
219
219
*/
220
220
public Operation build (HandlerMethod handlerMethod , RequestMethod requestMethod ,
@@ -281,10 +281,10 @@ else if (!RequestMethod.GET.equals(requestMethod)) {
281
281
/**
282
282
* Gets parameter linked hash map.
283
283
*
284
- * @param components the components
285
- * @param methodAttributes the method attributes
286
- * @param operationParameters the operation parameters
287
- * @param parametersDocMap the parameters doc map
284
+ * @param components the components
285
+ * @param methodAttributes the method attributes
286
+ * @param operationParameters the operation parameters
287
+ * @param parametersDocMap the parameters doc map
288
288
* @return the parameter linked hash map
289
289
*/
290
290
private LinkedHashMap <String , Parameter > getParameterLinkedHashMap (Components components , MethodAttributes methodAttributes , List <Parameter > operationParameters , Map <String , io .swagger .v3 .oas .annotations .Parameter > parametersDocMap ) {
@@ -314,8 +314,8 @@ private LinkedHashMap<String, Parameter> getParameterLinkedHashMap(Components co
314
314
/**
315
315
* Gets headers.
316
316
*
317
- * @param methodAttributes the method attributes
318
- * @param map the map
317
+ * @param methodAttributes the method attributes
318
+ * @param map the map
319
319
* @return the headers
320
320
*/
321
321
@ SuppressWarnings ("unchecked" )
@@ -336,8 +336,8 @@ public static Collection<Parameter> getHeaders(MethodAttributes methodAttributes
336
336
/**
337
337
* Customise parameter parameter.
338
338
*
339
- * @param parameter the parameter
340
- * @param parameterInfo the parameter info
339
+ * @param parameter the parameter
340
+ * @param parameterInfo the parameter info
341
341
* @return the parameter
342
342
*/
343
343
protected Parameter customiseParameter (Parameter parameter , ParameterInfo parameterInfo ) {
@@ -348,7 +348,7 @@ protected Parameter customiseParameter(Parameter parameter, ParameterInfo parame
348
348
/**
349
349
* Is param to ignore boolean.
350
350
*
351
- * @param parameter the parameter
351
+ * @param parameter the parameter
352
352
* @return the boolean
353
353
*/
354
354
public boolean isParamToIgnore (MethodParameter parameter ) {
@@ -362,7 +362,7 @@ public boolean isParamToIgnore(MethodParameter parameter) {
362
362
/**
363
363
* Is required annotation boolean.
364
364
*
365
- * @param parameter the parameter
365
+ * @param parameter the parameter
366
366
* @return the boolean
367
367
*/
368
368
private boolean isRequiredAnnotation (MethodParameter parameter ) {
@@ -377,8 +377,8 @@ private boolean isRequiredAnnotation(MethodParameter parameter) {
377
377
/**
378
378
* Sets params.
379
379
*
380
- * @param operation the operation
381
- * @param operationParameters the operation parameters
380
+ * @param operation the operation
381
+ * @param operationParameters the operation parameters
382
382
* @param requestBodyInfo the request body info
383
383
*/
384
384
private void setParams (Operation operation , List <Parameter > operationParameters , RequestBodyInfo requestBodyInfo ) {
@@ -391,7 +391,7 @@ private void setParams(Operation operation, List<Parameter> operationParameters,
391
391
/**
392
392
* Is valid parameter boolean.
393
393
*
394
- * @param parameter the parameter
394
+ * @param parameter the parameter
395
395
* @return the boolean
396
396
*/
397
397
public boolean isValidParameter (Parameter parameter ) {
@@ -401,10 +401,10 @@ public boolean isValidParameter(Parameter parameter) {
401
401
/**
402
402
* Build params parameter.
403
403
*
404
- * @param parameterInfo the parameter info
405
- * @param components the components
406
- * @param requestMethod the request method
407
- * @param jsonView the json view
404
+ * @param parameterInfo the parameter info
405
+ * @param components the components
406
+ * @param requestMethod the request method
407
+ * @param jsonView the json view
408
408
* @return the parameter
409
409
*/
410
410
public Parameter buildParams (ParameterInfo parameterInfo , Components components ,
@@ -433,9 +433,9 @@ public Parameter buildParams(ParameterInfo parameterInfo, Components components,
433
433
/**
434
434
* Build param parameter.
435
435
*
436
- * @param parameterInfo the parameter info
437
- * @param components the components
438
- * @param jsonView the json view
436
+ * @param parameterInfo the parameter info
437
+ * @param components the components
438
+ * @param jsonView the json view
439
439
* @return the parameter
440
440
*/
441
441
private Parameter buildParam (ParameterInfo parameterInfo , Components components , JsonView jsonView ) {
@@ -472,7 +472,7 @@ private Parameter buildParam(ParameterInfo parameterInfo, Components components,
472
472
/**
473
473
* Apply bean validator annotations.
474
474
*
475
- * @param parameter the parameter
475
+ * @param parameter the parameter
476
476
* @param annotations the annotations
477
477
*/
478
478
public void applyBeanValidatorAnnotations (final Parameter parameter , final List <Annotation > annotations ) {
@@ -489,8 +489,8 @@ public void applyBeanValidatorAnnotations(final Parameter parameter, final List<
489
489
/**
490
490
* Apply bean validator annotations.
491
491
*
492
- * @param requestBody the request body
493
- * @param annotations the annotations
492
+ * @param requestBody the request body
493
+ * @param annotations the annotations
494
494
* @param isOptional the is optional
495
495
*/
496
496
public void applyBeanValidatorAnnotations (final RequestBody requestBody , final List <Annotation > annotations , boolean isOptional ) {
@@ -516,7 +516,7 @@ public void applyBeanValidatorAnnotations(final RequestBody requestBody, final L
516
516
/**
517
517
* Calculate size.
518
518
*
519
- * @param annos the annos
519
+ * @param annos the annos
520
520
* @param schema the schema
521
521
*/
522
522
private void calculateSize (Map <String , Annotation > annos , Schema <?> schema ) {
@@ -545,7 +545,7 @@ public RequestBodyService getRequestBodyBuilder() {
545
545
/**
546
546
* Gets api parameters.
547
547
*
548
- * @param method the method
548
+ * @param method the method
549
549
* @return the api parameters
550
550
*/
551
551
private Map <String , io .swagger .v3 .oas .annotations .Parameter > getApiParameters (Method method ) {
@@ -584,7 +584,7 @@ private Map<String, io.swagger.v3.oas.annotations.Parameter> getApiParameters(Me
584
584
/**
585
585
* Apply validations to schema.
586
586
*
587
- * @param annos the annos
587
+ * @param annos the annos
588
588
* @param schema the schema
589
589
*/
590
590
private void applyValidationsToSchema (Map <String , Annotation > annos , Schema <?> schema ) {
0 commit comments