Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFilterName (0.1 sec)

  1. 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.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

        }
    
        // Test init method
        public void test_init() throws ServletException {
            FilterConfig filterConfig = new FilterConfig() {
                @Override
                public String getFilterName() {
                    return "testFilter";
                }
    
                @Override
                public jakarta.servlet.ServletContext getServletContext() {
                    return null;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
Back to top