public interface ChannelProcessor
ChannelProcessor
implementations are iterated by the
ChannelDecisionManagerImpl
.
If an implementation has an issue with the channel security, they should take action themselves. The callers of the implementation do not take any action.
Modifier and Type | Method and Description |
---|---|
void |
decide(FilterInvocation invocation,
Collection<ConfigAttribute> config)
Decided whether the presented
FilterInvocation provides the appropriate
level of channel security based on the requested list of ConfigAttributes. |
boolean |
supports(ConfigAttribute attribute)
Indicates whether this
ChannelProcessor is able to process the passed
ConfigAttribute . |
void decide(FilterInvocation invocation, Collection<ConfigAttribute> config) throws IOException, javax.servlet.ServletException
FilterInvocation
provides the appropriate
level of channel security based on the requested list of ConfigAttributes.IOException
javax.servlet.ServletException
boolean supports(ConfigAttribute attribute)
ChannelProcessor
is able to process the passed
ConfigAttribute
.
This allows the ChannelProcessingFilter
to check every configuration
attribute can be consumed by the configured ChannelDecisionManager
.
attribute
- a configuration attribute that has been configured against the
ChannelProcessingFilter.ChannelProcessor
can support the passed
configuration attribute