- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isDfsStrictView (0.05 sec)
-
src/test/java/jcifs/ConfigurationTest.java
void testConfigurationInterface() { assertDoesNotThrow(() -> { mockConfig.getRandom(); mockConfig.getDfsTtl(); mockConfig.isDfsStrictView(); mockConfig.isDfsDisabled(); mockConfig.isDfsConvertToFQDN(); mockConfig.getMinimumVersion(); mockConfig.getMaximumVersion();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getDfsTtl(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDfsStrictView() */ @Override public boolean isDfsStrictView() { return this.delegate.isDfsStrictView(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isDfsDisabled() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
when(mockDelegate.isSendNTLMTargetName()).thenReturn(true); when(mockDelegate.isPort139FailoverEnabled()).thenReturn(false); when(mockDelegate.isDfsStrictView()).thenReturn(true); // When boolean smb2Only = delegatingConfig.isUseSMB2OnlyNegotiation(); boolean secureNegotiate = delegatingConfig.isRequireSecureNegotiate();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
} final CacheEntry<Map<String, CacheEntry<DfsReferralDataInternal>>> entry = new CacheEntry<>(tf.getConfig().getDfsTtl() * 10L); this._domains = entry; if (tf.getConfig().isDfsStrictView() && ioe instanceof SmbAuthException) { throw (SmbAuthException) ioe; } return this._domains.map; } return null; } /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test DFS configuration getters") void testDfsConfigurationGetters() { assertFalse(config.isDfsDisabled()); assertFalse(config.isDfsStrictView()); assertEquals(300L, config.getDfsTtl()); assertFalse(config.isDfsConvertToFQDN()); assertNull(config.getLogonShare()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.forceUnicode; } @Override public boolean isDfsDisabled() { return this.dfsDisabled; } @Override public boolean isDfsStrictView() { return this.dfsStrictView; } @Override public long getDfsTtl() { return this.dfsTTL; } @Override public boolean isDfsConvertToFQDN() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property {@code jcifs.smb.client.dfs.strictView} (boolean, default false) * * @return whether a authentication failure during DFS resolving will throw an exception */ boolean isDfsStrictView(); /** * * Property {@code jcifs.smb.client.dfs.disabled} (boolean, default false) * * @return whether DFS lookup is disabled */ boolean isDfsDisabled(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)