Class EndpointRequest.AdditionalPathsEndpointRequestMatcher
java.lang.Object
org.springframework.boot.security.servlet.ApplicationContextRequestMatcher<WebApplicationContext>
org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.AdditionalPathsEndpointRequestMatcher
- All Implemented Interfaces:
RequestMatcher
- Enclosing class:
- EndpointRequest
public static class EndpointRequest.AdditionalPathsEndpointRequestMatcher
extends ApplicationContextRequestMatcher<WebApplicationContext>
The request matcher used to match against additional paths for
actuator endpoints
.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.security.web.util.matcher.RequestMatcher
RequestMatcher.MatchResult
-
Method Summary
Modifier and TypeMethodDescriptionprotected RequestMatcher
createDelegate
(WebApplicationContext context, org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory) protected final List<RequestMatcher>
getDelegateMatchers
(org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory, RequestMatcherProvider matcherProvider, Set<String> paths) protected final EndpointId
getEndpointId
(Object source) protected List<RequestMatcher>
getLinksMatchers
(org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory, RequestMatcherProvider matcherProvider, String basePath) protected RequestMatcherProvider
protected final boolean
hasWebServerNamespace
(ApplicationContext applicationContext, WebServerNamespace webServerNamespace) protected boolean
ignoreApplicationContext
(WebApplicationContext applicationContext) Returns if theWebApplicationContext
should be ignored and not used for matching.protected boolean
ignoreApplicationContext
(WebApplicationContext applicationContext, ManagementPortType managementPortType) protected final void
initialized
(Supplier<WebApplicationContext> context) Method that can be implemented by subclasses that wish to initialize items the first time that the matcher is called.protected final boolean
matches
(HttpServletRequest request, Supplier<WebApplicationContext> context) Decides whether the rule implemented by the strategy matches the supplied request.toString()
protected final String
Methods inherited from class org.springframework.boot.security.servlet.ApplicationContextRequestMatcher
matches
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.security.web.util.matcher.RequestMatcher
matcher
-
Method Details
-
ignoreApplicationContext
protected boolean ignoreApplicationContext(WebApplicationContext applicationContext, ManagementPortType managementPortType) -
createDelegate
protected RequestMatcher createDelegate(WebApplicationContext context, org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory) -
toString
-
ignoreApplicationContext
Description copied from class:ApplicationContextRequestMatcher
Returns if theWebApplicationContext
should be ignored and not used for matching. If this method returnstrue
then the context will not be used and thematches
method will returnfalse
.- Overrides:
ignoreApplicationContext
in classApplicationContextRequestMatcher<WebApplicationContext>
- Parameters:
applicationContext
- the candidate web application context- Returns:
- if the application context should be ignored
-
hasWebServerNamespace
protected final boolean hasWebServerNamespace(ApplicationContext applicationContext, WebServerNamespace webServerNamespace) -
initialized
Description copied from class:ApplicationContextRequestMatcher
Method that can be implemented by subclasses that wish to initialize items the first time that the matcher is called. This method will be called only once and only ifApplicationContextRequestMatcher.ignoreApplicationContext(WebApplicationContext)
returnsfalse
. Note that the supplied context will be based on the first request sent to the matcher.- Overrides:
initialized
in classApplicationContextRequestMatcher<WebApplicationContext>
- Parameters:
context
- a supplier for the initialized context (may throw an exception)- See Also:
-
matches
protected final boolean matches(HttpServletRequest request, Supplier<WebApplicationContext> context) Description copied from class:ApplicationContextRequestMatcher
Decides whether the rule implemented by the strategy matches the supplied request.- Specified by:
matches
in classApplicationContextRequestMatcher<WebApplicationContext>
- Parameters:
request
- the source requestcontext
- a supplier for the initialized context (may throw an exception)- Returns:
- if the request matches
-
getDelegateMatchers
protected final List<RequestMatcher> getDelegateMatchers(org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory, RequestMatcherProvider matcherProvider, Set<String> paths) -
getLinksMatchers
protected List<RequestMatcher> getLinksMatchers(org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest.RequestMatcherFactory requestMatcherFactory, RequestMatcherProvider matcherProvider, String basePath) -
getRequestMatcherProvider
-
toString
-
getEndpointId
-