Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isDfsStrictView (0.32 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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

                }
                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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K 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
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         * 
         * Property <tt>jcifs.smb.client.dfs.strictView</tt> (boolean, default false)
         * 
         * @return whether a authentication failure during DFS resolving will throw an exception
         */
        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top