Interface ChannelDecisionManager

All Known Implementing Classes:
ChannelDecisionManagerImpl

@Deprecated public interface ChannelDecisionManager
Deprecated.
no replacement is planned, though consider using a custom RequestMatcher for any sophisticated decision-making
Decides whether a web channel provides sufficient security.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated.
    Decided whether the presented FilterInvocation provides the appropriate level of channel security based on the requested list of ConfigAttributes.
    boolean
    Deprecated.
    Indicates whether this ChannelDecisionManager is able to process the passed ConfigAttribute.
  • Method Details

    • decide

      void decide(FilterInvocation invocation, Collection<ConfigAttribute> config) throws IOException, jakarta.servlet.ServletException
      Deprecated.
      Decided whether the presented FilterInvocation provides the appropriate level of channel security based on the requested list of ConfigAttributes.
      Throws:
      IOException
      jakarta.servlet.ServletException
    • supports

      boolean supports(ConfigAttribute attribute)
      Deprecated.
      Indicates whether this ChannelDecisionManager is able to process the passed ConfigAttribute.

      This allows the ChannelProcessingFilter to check every configuration attribute can be consumed by the configured ChannelDecisionManager.

      Parameters:
      attribute - a configuration attribute that has been configured against the ChannelProcessingFilter
      Returns:
      true if this ChannelDecisionManager can support the passed configuration attribute