Package org.springdoc.core.customizers
Interface RouterOperationCustomizer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface RouterOperationCustomizer
Implement and register a bean of typeRouterOperationCustomizer
to customize an router operation based on the handler method input on default OpenAPI descriptions but not groups- Author:
- hyeonisism
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RouterOperation
customize(RouterOperation routerOperation, org.springframework.web.method.HandlerMethod handlerMethod)
Customize router operation.
-
-
-
Method Detail
-
customize
RouterOperation customize(RouterOperation routerOperation, org.springframework.web.method.HandlerMethod handlerMethod)
Customize router operation.- Parameters:
routerOperation
- input operationhandlerMethod
- original handler method- Returns:
- customized router operation
-
-