Interface ExposableControllerEndpoint
- All Superinterfaces:
ExposableEndpoint<Operation>
,PathMappedEndpoint
public interface ExposableControllerEndpoint
extends ExposableEndpoint<Operation>, PathMappedEndpoint
Information describing an endpoint that can be exposed over Spring MVC or Spring
WebFlux. Mappings should be discovered directly from
getController()
and
ExposableEndpoint.getOperations()
should always return an empty collection.- Since:
- 2.0.0
- Author:
- Phillip Webb
-
Method Summary
Modifier and TypeMethodDescriptionReturn the source controller that contains@RequestMapping
methods.Methods inherited from interface org.springframework.boot.actuate.endpoint.ExposableEndpoint
getEndpointId, getOperations, isEnableByDefault
Methods inherited from interface org.springframework.boot.actuate.endpoint.web.PathMappedEndpoint
getRootPath
-
Method Details
-
getController
Object getController()Return the source controller that contains@RequestMapping
methods.- Returns:
- the source controller
-