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 typeRouterOperationCustomizerto 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 RouterOperationcustomize(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
-
-