Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLogonShare (0.07 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

            return this.dfsTTL;
        }
    
    
        @Override
        public boolean isDfsConvertToFQDN () {
            return this.dfsConvertToFqdn;
        }
    
    
        @Override
        public String getLogonShare () {
            return this.logonShare;
        }
    
    
        @Override
        public String getDefaultDomain () {
            return this.defaultDomain;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

         *
         * @see jcifs.smb.SmbTreeInternal#connectLogon(jcifs.CIFSContext)
         */
        @Override
        @Deprecated
        public void connectLogon ( CIFSContext tf ) throws SmbException {
            if ( tf.getConfig().getLogonShare() == null ) {
                try {
                    treeConnect(null, null);
                }
                catch ( SmbException e ) {
                    throw e;
                }
                catch ( CIFSException e ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.logonShare</tt>
         * 
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.domain</tt>
         * 
         * @return default credentials, domain name
         */
        String getDefaultDomain ();
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top