Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNativeOs (0.06 sec)

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

            return this.delegate.isUseBatching();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNativeOs()
         */
        @Override
        public String getNativeOs () {
            return this.delegate.getNativeOs();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNativeLanman()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            return this.maxMpxCount;
        }
    
    
        @Override
        public String getNativeLanman () {
            return this.nativeLanMan;
        }
    
    
        @Override
        public String getNativeOs () {
            return this.nativeOs;
        }
    
    
        @Override
        public int getVcNumber () {
            return this.vcNumber;
        }
    
    
        @Override
        public int getCapabilities () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

        boolean isUseBatching ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.nativeOs</tt> (string, default <tt>os.name</tt>)
         * 
         * @return OS string to report
         */
        String getNativeOs ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.nativeLanMan</tt> (string, default <tt>jCIFS</tt>)
         * 
         * @return Lanman string to report
         */
        String getNativeLanman ();
    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