Class SslFilter

java.lang.Object
org.apache.shiro.web.servlet.ServletContextSupport
org.apache.shiro.web.servlet.AbstractFilter
org.apache.shiro.web.servlet.NameableFilter
org.apache.shiro.web.servlet.OncePerRequestFilter
All Implemented Interfaces:
jakarta.servlet.Filter, org.apache.shiro.lang.util.Nameable

public class SslFilter extends PortFilter
A copy of Shiro's 1.2.0 SslFilter that works with tapestry-security 0.4.x Filter which requires a request to be over SSL. Access is allowed if the request is received on the configured server port and the request.isSecure(). If either condition is false, the filter chain will not continue.

The port property defaults to 443 and also additionally guarantees that the request scheme is always 'https' (except for port 80, which retains the 'http' scheme).

Since:
0.4.1
  • Field Details

  • Constructor Details

  • Method Details

    • getScheme

      protected String getScheme(String requestScheme, int port)
      Overrides:
      getScheme in class PortFilter
    • isAccessAllowed

      protected boolean isAccessAllowed(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response, Object mappedValue) throws Exception
      Retains the parent method's port-matching behavior but additionally guarantees that the ServletRequest.isSecure(). If the port does not match or the request is not secure, access is denied.
      Overrides:
      isAccessAllowed in class PortFilter
      Parameters:
      request - the incoming ServletRequest
      response - the outgoing ServletResponse - ignored in this implementation
      mappedValue - the filter-specific config value mapped to this filter in the URL rules mappings - ignored by this implementation.
      Returns:
      true if the request is received on an expected SSL port and the request.isSecure(), false otherwise.
      Throws:
      Exception - if the call to super.isAccessAllowed throws an exception.
      Since:
      0.4.1