|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.security.securechannel.ChannelDecisionManagerImpl
public class ChannelDecisionManagerImpl
Implementation of ChannelDecisionManager
.
Iterates through each configured ChannelProcessor
. If a ChannelProcessor
has any issue with the
security of the request, it should cause a redirect, exception or whatever other action is appropriate for the
ChannelProcessor
implementation.
Once any response is committed (ie a redirect is written to the response object), the
ChannelDecisionManagerImpl
will not iterate through any further ChannelProcessor
s.
The attribute "ANY_CHANNEL" if applied to a particular URL, the iteration through the channel processors will be skipped (see SEC-494, SEC-335).
Field Summary | |
---|---|
static String |
ANY_CHANNEL
|
Constructor Summary | |
---|---|
ChannelDecisionManagerImpl()
|
Method Summary | |
---|---|
void |
afterPropertiesSet()
|
void |
decide(FilterInvocation invocation,
ConfigAttributeDefinition config)
Decided whether the presented FilterInvocation provides the appropriate level of channel
security based on the requested ConfigAttributeDefinition . |
protected List |
getChannelProcessors()
|
void |
setChannelProcessors(List newList)
|
boolean |
supports(ConfigAttribute attribute)
Indicates whether this ChannelDecisionManager is able to process the passed
ConfigAttribute . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String ANY_CHANNEL
Constructor Detail |
---|
public ChannelDecisionManagerImpl()
Method Detail |
---|
public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface InitializingBean
Exception
public void decide(FilterInvocation invocation, ConfigAttributeDefinition config) throws IOException, ServletException
ChannelDecisionManager
FilterInvocation
provides the appropriate level of channel
security based on the requested ConfigAttributeDefinition
.
decide
in interface ChannelDecisionManager
invocation
- DOCUMENT ME!config
- DOCUMENT ME!
IOException
- DOCUMENT ME!
ServletException
- DOCUMENT ME!protected List getChannelProcessors()
public void setChannelProcessors(List newList)
public boolean supports(ConfigAttribute attribute)
ChannelDecisionManager
ChannelDecisionManager
is able to process the passed
ConfigAttribute
.This allows the ChannelProcessingFilter
to check every
configuration attribute can be consumed by the configured ChannelDecisionManager
.
supports
in interface ChannelDecisionManager
attribute
- a configuration attribute that has been configured against the
ChannelProcessingFilter
ChannelDecisionManager
can support the passed configuration attribute
|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |