Class AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry
- java.lang.Object
-
- org.springframework.security.config.annotation.web.AbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer.AuthorizedUrl>
-
- org.springframework.security.config.annotation.web.configurers.AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry
-
- Enclosing class:
- AuthorizeHttpRequestsConfigurer<H extends HttpSecurityBuilder<H>>
public final class AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry extends AbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer.AuthorizedUrl>
Registry for mapping aRequestMatcher
to anAuthorizationManager
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description H
and()
Return theHttpSecurityBuilder
when done using theAuthorizeHttpRequestsConfigurer
.protected AuthorizeHttpRequestsConfigurer.AuthorizedUrl
chainRequestMatchers(java.util.List<RequestMatcher> requestMatchers)
Subclasses should implement this method for returning the object that is chained to the creation of theRequestMatcher
instances.AuthorizeHttpRequestsConfigurer.MvcMatchersAuthorizedUrl
mvcMatchers(java.lang.String... mvcPatterns)
Maps anMvcRequestMatcher
that does not care whichHttpMethod
is used.AuthorizeHttpRequestsConfigurer.MvcMatchersAuthorizedUrl
mvcMatchers(org.springframework.http.HttpMethod method, java.lang.String... mvcPatterns)
Maps anMvcRequestMatcher
that also specifies a specificHttpMethod
to match on.AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry
withObjectPostProcessor(ObjectPostProcessor<?> objectPostProcessor)
Adds anObjectPostProcessor
for this class.-
Methods inherited from class org.springframework.security.config.annotation.web.AbstractRequestMatcherRegistry
antMatchers, antMatchers, antMatchers, anyRequest, createMvcMatchers, dispatcherTypeMatchers, dispatcherTypeMatchers, getApplicationContext, regexMatchers, regexMatchers, requestMatchers, setApplicationContext
-
-
-
-
Method Detail
-
mvcMatchers
public AuthorizeHttpRequestsConfigurer.MvcMatchersAuthorizedUrl mvcMatchers(java.lang.String... mvcPatterns)
Description copied from class:AbstractRequestMatcherRegistry
Maps an
MvcRequestMatcher
that does not care whichHttpMethod
is used. This matcher will use the same rules that Spring MVC uses for matching. For example, often times a mapping of the path "/path" will match on "/path", "/path/", "/path.html", etc.If the current request will not be processed by Spring MVC, a reasonable default using the pattern as a ant pattern will be used.
- Specified by:
mvcMatchers
in classAbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer.AuthorizedUrl>
- Parameters:
mvcPatterns
- the patterns to match on. The rules for matching are defined by Spring MVC- Returns:
- the object that is chained after creating the
RequestMatcher
.
-
mvcMatchers
public AuthorizeHttpRequestsConfigurer.MvcMatchersAuthorizedUrl mvcMatchers(org.springframework.http.HttpMethod method, java.lang.String... mvcPatterns)
Description copied from class:AbstractRequestMatcherRegistry
Maps an
MvcRequestMatcher
that also specifies a specificHttpMethod
to match on. This matcher will use the same rules that Spring MVC uses for matching. For example, often times a mapping of the path "/path" will match on "/path", "/path/", "/path.html", etc.If the current request will not be processed by Spring MVC, a reasonable default using the pattern as a ant pattern will be used.
- Specified by:
mvcMatchers
in classAbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer.AuthorizedUrl>
- Parameters:
method
- the HTTP method to match onmvcPatterns
- the patterns to match on. The rules for matching are defined by Spring MVC- Returns:
- the object that is chained after creating the
RequestMatcher
.
-
chainRequestMatchers
protected AuthorizeHttpRequestsConfigurer.AuthorizedUrl chainRequestMatchers(java.util.List<RequestMatcher> requestMatchers)
Description copied from class:AbstractRequestMatcherRegistry
Subclasses should implement this method for returning the object that is chained to the creation of theRequestMatcher
instances.- Specified by:
chainRequestMatchers
in classAbstractRequestMatcherRegistry<AuthorizeHttpRequestsConfigurer.AuthorizedUrl>
- Parameters:
requestMatchers
- theRequestMatcher
instances that were created- Returns:
- the chained Object for the subclass which allows association of something
else to the
RequestMatcher
-
withObjectPostProcessor
public AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry withObjectPostProcessor(ObjectPostProcessor<?> objectPostProcessor)
Adds anObjectPostProcessor
for this class.- Parameters:
objectPostProcessor
- theObjectPostProcessor
to use- Returns:
- the
AuthorizeHttpRequestsConfigurer.AuthorizationManagerRequestMatcherRegistry
for further customizations
-
and
public H and()
Return theHttpSecurityBuilder
when done using theAuthorizeHttpRequestsConfigurer
. This is useful for method chaining.- Returns:
- the
HttpSecurityBuilder
for further customizations
-
-