Uses of Interface
org.springframework.boot.actuate.endpoint.EndpointAccessResolver
Package
Description
Core classes for actuator endpoint auto-configuration.
Auto-configuration for the Actuator's web endpoints.
Auto-configuration for exposing actuator web endpoints using WebFlux.
Auto-configuration for exposing actuator web endpoints using Spring MVC.
Endpoint support.
Web support for actuator endpoints.
Spring WebFlux support for actuator endpoints.
Spring MVC support for actuator endpoints.
-
Uses of EndpointAccessResolver in org.springframework.boot.actuate.autoconfigure.endpoint
Modifier and TypeClassDescriptionclass
EndpointAccessResolver
that resolves the permitted level of access to an endpoint using the following properties:management.endpoint.<id>.access
ormanagement.endpoint.<id>.enabled
(deprecated)management.endpoints.access.default
ormanagement.endpoints.enabled-by-default
(deprecated) The resulting access is capped usingmanagement.endpoints.access.max-permitted
. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.autoconfigure.endpoint.web
Modifier and TypeMethodDescriptionServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration.servletEndpointRegistrar
(WebEndpointProperties properties, ServletEndpointsSupplier servletEndpointsSupplier, JerseyApplicationPath jerseyApplicationPath, EndpointAccessResolver endpointAccessResolver) ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration.servletEndpointRegistrar
(WebEndpointProperties properties, ServletEndpointsSupplier servletEndpointsSupplier, DispatcherServletPath dispatcherServletPath, EndpointAccessResolver endpointAccessResolver) -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.autoconfigure.endpoint.web.reactive
Modifier and TypeMethodDescriptionWebFluxEndpointManagementContextConfiguration.controllerEndpointHandlerMapping
(ControllerEndpointsSupplier controllerEndpointsSupplier, CorsEndpointProperties corsProperties, WebEndpointProperties webEndpointProperties, EndpointAccessResolver endpointAccessResolver) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet
Modifier and TypeMethodDescriptionWebMvcEndpointManagementContextConfiguration.controllerEndpointHandlerMapping
(ControllerEndpointsSupplier controllerEndpointsSupplier, CorsEndpointProperties corsProperties, WebEndpointProperties webEndpointProperties, EndpointAccessResolver endpointAccessResolver) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.endpoint
Modifier and TypeMethodDescriptionstatic <O extends Operation>
OperationFilter<O>OperationFilter.byAccess
(EndpointAccessResolver accessResolver) Return anOperationFilter
that filters based on the allowedaccess
as determined by anaccess resolver
. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.endpoint.web
ModifierConstructorDescriptionServletEndpointRegistrar
(String basePath, Collection<ExposableServletEndpoint> servletEndpoints, EndpointAccessResolver endpointAccessResolver) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.endpoint.web.reactive
ModifierConstructorDescriptionControllerEndpointHandlerMapping
(EndpointMapping endpointMapping, Collection<ExposableControllerEndpoint> endpoints, CorsConfiguration corsConfiguration, EndpointAccessResolver endpointAccessResolver) Deprecated, for removal: This API element is subject to removal in a future version.Create a newControllerEndpointHandlerMapping
instance providing mappings for the specified endpoints. -
Uses of EndpointAccessResolver in org.springframework.boot.actuate.endpoint.web.servlet
ModifierConstructorDescriptionControllerEndpointHandlerMapping
(EndpointMapping endpointMapping, Collection<ExposableControllerEndpoint> endpoints, CorsConfiguration corsConfiguration, EndpointAccessResolver endpointAccessResolver) Deprecated, for removal: This API element is subject to removal in a future version.Create a newControllerEndpointHandlerMapping
instance providing mappings for the specified endpoints.