Class XServletFilterSecurityPoxy

    • Constructor Detail

      • XServletFilterSecurityPoxy

        protected XServletFilterSecurityPoxy()
    • Method Detail

      • beforeRequest

        @Nonnull
        public com.helger.commons.state.EContinue beforeRequest​(@Nonnull
                                                                javax.servlet.http.HttpServletRequest aHttpRequest,
                                                                @Nonnull
                                                                javax.servlet.http.HttpServletResponse aHttpResponse,
                                                                @Nonnull
                                                                com.helger.http.EHttpVersion eHttpVersion,
                                                                @Nonnull
                                                                com.helger.commons.http.EHttpMethod eHttpMethod)
                                                         throws IOException
        Description copied from interface: IXServletLowLevelFilter
        Invoked before an XServlet request is handled. This method is created before the request is created! Exceptions occurring in this method will be propagated to the outside, so be careful :)
        Specified by:
        beforeRequest in interface IXServletLowLevelFilter
        Parameters:
        aHttpRequest - HTTP servlet request. Never null.
        aHttpResponse - HTTP servlet response. Never null.
        eHttpVersion - HTTP version. Never null.
        eHttpMethod - HTTP method. Never null.
        Returns:
        EContinue.CONTINUE to continue processing, or EContinue.BREAK if this request should not be processed, in which case the HttpServletResponse must contain a valid response!
        Throws:
        IOException - in case of IO error.