Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getFilterName (0.06 seconds)

  1. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

        }
    
        // Test init method
        @Test
        public void test_init() throws ServletException {
            FilterConfig filterConfig = new FilterConfig() {
                @Override
                public String getFilterName() {
                    return "testFilter";
                }
    
                @Override
                public jakarta.servlet.ServletContext getServletContext() {
                    return null;
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            /**
             * Gets the filter name for this SPNEGO configuration.
             *
             * @return The fully qualified class name of SpnegoAuthenticator
             */
            @Override
            public String getFilterName() {
                return SpnegoAuthenticator.class.getName();
            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
Back to Top