Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isDfsStrictView (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top