- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for FilterConfig (0.04 sec)
-
src/test/java/jcifs/http/NtlmHttpFilterTest.java
initParams.put("jcifs.http.basicRealm", "TestRealm"); when(filterConfig.getInitParameterNames()).thenReturn(Collections.enumeration(initParams.keySet())); when(filterConfig.getInitParameter(anyString())).thenAnswer(invocation -> initParams.get(invocation.getArgument(0))); assertDoesNotThrow(() -> filter.init(filterConfig)); } @Test void testInit_withMinimalConfig() throws ServletException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
private String domainController; private boolean loadBalance; private boolean enableBasic; private boolean insecureBasic; private String realm; @Override public void init(final FilterConfig filterConfig) throws ServletException { String name; int level; /* Set jcifs.smb1 properties we know we want; soTimeout and cachePolicy to 30min. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
private int netbiosLookupRespLimit = 3; private long netbiosCacheTimeout = 60 * 60 * 10; private static int dcListCounter; @Override public void init(final FilterConfig filterConfig) throws ServletException { String name; final Properties p = new Properties(); /* * Set jcifs properties we know we want; soTimeout and cachePolicy to 30min. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
// Test constructor public void test_constructor() { assertNotNull(new WebApiFilter()); } // Test init method public void test_init() throws ServletException { FilterConfig filterConfig = new FilterConfig() { @Override public String getFilterName() { return "testFilter"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0)