public class UrlAuthorizationConfigurer.StandardInterceptUrlRegistry extends AbstractConfigAttributeRequestMatcherRegistry<T>
Modifier and Type | Method and Description |
---|---|
R |
accessDecisionManager(AccessDecisionManager accessDecisionManager)
Allows setting the
AccessDecisionManager . |
H |
and() |
protected UrlAuthorizationConfigurer.AuthorizedUrl |
chainRequestMatchersInternal(java.util.List<RequestMatcher> requestMatchers)
Subclasses should implement this method for returning the object that is chained to
the creation of the
RequestMatcher instances. |
R |
filterSecurityInterceptorOncePerRequest(boolean filterSecurityInterceptorOncePerRequest)
Allows setting if the
FilterSecurityInterceptor should be only applied
once per request (i.e. |
UrlAuthorizationConfigurer.MvcMatchersAuthorizedUrl |
mvcMatchers(org.springframework.http.HttpMethod method,
java.lang.String... mvcPatterns)
Maps an
MvcRequestMatcher that also specifies a specific HttpMethod
to match on. |
UrlAuthorizationConfigurer.MvcMatchersAuthorizedUrl |
mvcMatchers(java.lang.String... patterns)
Maps an
MvcRequestMatcher that does not care which HttpMethod is
used. |
UrlAuthorizationConfigurer.StandardInterceptUrlRegistry |
withObjectPostProcessor(ObjectPostProcessor<?> objectPostProcessor)
Adds an
ObjectPostProcessor for this class. |
chainRequestMatchers
antMatchers, antMatchers, antMatchers, anyRequest, createMvcMatchers, getApplicationContext, regexMatchers, regexMatchers, requestMatchers, setApplicationContext
public UrlAuthorizationConfigurer.MvcMatchersAuthorizedUrl mvcMatchers(org.springframework.http.HttpMethod method, java.lang.String... mvcPatterns)
AbstractRequestMatcherRegistry
Maps an MvcRequestMatcher
that also specifies a specific HttpMethod
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.
mvcMatchers
in class AbstractRequestMatcherRegistry<UrlAuthorizationConfigurer.AuthorizedUrl>
method
- the HTTP method to match onmvcPatterns
- the patterns to match on. The rules for matching are defined by
Spring MVCRequestMatcher
.public UrlAuthorizationConfigurer.MvcMatchersAuthorizedUrl mvcMatchers(java.lang.String... patterns)
AbstractRequestMatcherRegistry
Maps an MvcRequestMatcher
that does not care which HttpMethod
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.
mvcMatchers
in class AbstractRequestMatcherRegistry<UrlAuthorizationConfigurer.AuthorizedUrl>
patterns
- the patterns to match on. The rules for matching are defined by
Spring MVCRequestMatcher
.protected final UrlAuthorizationConfigurer.AuthorizedUrl chainRequestMatchersInternal(java.util.List<RequestMatcher> requestMatchers)
AbstractConfigAttributeRequestMatcherRegistry
RequestMatcher
instances.chainRequestMatchersInternal
in class AbstractConfigAttributeRequestMatcherRegistry<UrlAuthorizationConfigurer.AuthorizedUrl>
requestMatchers
- the RequestMatcher
instances that were createdRequestMatcher
public UrlAuthorizationConfigurer.StandardInterceptUrlRegistry withObjectPostProcessor(ObjectPostProcessor<?> objectPostProcessor)
ObjectPostProcessor
for this class.objectPostProcessor
- ExpressionUrlAuthorizationConfigurer
for further
customizationspublic H and()
public R accessDecisionManager(AccessDecisionManager accessDecisionManager)
AccessDecisionManager
. If none is provided, a
default AccessDecisionManager
is created.accessDecisionManager
- the AccessDecisionManager
to useAbstractInterceptUrlConfigurer
for further customizationpublic R filterSecurityInterceptorOncePerRequest(boolean filterSecurityInterceptorOncePerRequest)
FilterSecurityInterceptor
should be only applied
once per request (i.e. if the filter intercepts on a forward, should it be
applied again).filterSecurityInterceptorOncePerRequest
- if the
FilterSecurityInterceptor
should be only applied once per requestAbstractInterceptUrlConfigurer
for further customization