C
- The type of the context that the match method actually needs to use. Can be
an ApplicationContext
, a class of an existing bean
or a custom type that will be
created
on demand.public abstract class ApplicationContextRequestMatcher<C> extends Object implements org.springframework.security.web.util.matcher.RequestMatcher
ApplicationContext
backed RequestMatcher
. Can work directly with the
ApplicationContext
, obtain an existing bean or
create a new bean
that is autowired in the usual way.Constructor and Description |
---|
ApplicationContextRequestMatcher(Class<? extends C> contextClass) |
Modifier and Type | Method and Description |
---|---|
protected void |
initialized(C context)
Called once the context has been initialized.
|
boolean |
matches(HttpServletRequest request) |
protected abstract boolean |
matches(HttpServletRequest request,
C context)
Decides whether the rule implemented by the strategy matches the supplied request.
|
public boolean matches(HttpServletRequest request)
matches
in interface org.springframework.security.web.util.matcher.RequestMatcher
protected abstract boolean matches(HttpServletRequest request, C context)
request
- the source requestcontext
- the context instanceprotected void initialized(C context)
context
- the initialized contextCopyright © 2017 Pivotal Software, Inc.. All rights reserved.