Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setFilterConfig (1.09 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

        // Added by cgross to work with weblogic 6.1.
        /**
         * Sets the filter configuration for WebLogic 6.1 compatibility.
         *
         * @param f the filter configuration to set
         */
        public void setFilterConfig(final FilterConfig f) {
            try {
                init(f);
            } catch (final Exception e) {
                logger.error("Error setting filter config", e);
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpFilter.java

        }
    
        // Added by cgross to work with weblogic 6.1.
        /**
         * Sets the filter configuration for WebLogic compatibility.
         * @param f the filter configuration to set
         */
        public void setFilterConfig(final FilterConfig f) {
            try {
                init(f);
            } catch (final Exception e) {
                log.error("Error setting filter config", e);
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top