Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Constructor (0.17 sec)

  1. src/main/java/jcifs/SmbConstants.java

         * When specified as the <tt>shareAccess</tt> constructor parameter,
         * other SMB clients (including other threads making calls into jCIFS)
         * will not be permitted to access the target file and will receive "The
         * file is being accessed by another process" message.
         */
        static final int FILE_NO_SHARE = 0x00;
        /**
         * When specified as the <tt>shareAccess</tt> constructor parameter,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public class SmbComOpenAndX extends AndXServerMessageBlock {
    
        // flags (not the same as flags constructor argument)
        static final int FLAGS_RETURN_ADDITIONAL_INFO = 0x01;
        static final int FLAGS_REQUEST_OPLOCK = 0x02;
        static final int FLAGS_REQUEST_BATCH_OPLOCK = 0x04;
    
        // Access Mode Encoding for desiredAccess
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTree.java

                unc = "\\\\" + session.transport.tconHostName + '\\' + share;
        
                /* IBM iSeries doesn't like specifying a service. Always reset
                 * the service to whatever was determined in the constructor.
                 */
                service = service0;
        
                /*
                 * Tree Connect And X Request / Response
                 */
        
                if( session.transport.log.level >= 4 )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SID.java

            }
            return toString();
        }
    
    
        /**
         * Manually resolve this SID. Normally SIDs are automatically
         * resolved. However, if a SID is constructed explicitly using a SID
         * constructor, JCIFS will have no knowledge of the server that created the
         * SID and therefore cannot possibly resolve it automatically. In this case,
         * this method will be necessary.
         * 
         * @param authorityServerName
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

            if ( log.isTraceEnabled() ) {
                log.trace("macSigningKey:");
                log.trace(Hexdump.toHexString(macSigningKey, 0, macSigningKey.length));
            }
        }
    
    
        /**
         * This constructor used to instance a SigningDigest object for
         * signing/verifying SMB using kerberos session key.
         * The MAC Key = concat(Session Key, Digest of Challenge);
         * Because of Kerberos Authentication don't have challenge,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
     * other SMB clients (including other threads making calls into jCIFS)
     * will not be permitted to access the target file and will receive "The
     * file is being accessed by another process" message.
     */
        public static final int FILE_NO_SHARE     = 0x00;
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

     * is desired.
     *
     * <p><table border="1" cellpadding="3" cellspacing="0" width="100%">
     * <tr bgcolor="#ccccff">
     * <td colspan="2"><b><code>SmbNamedPipe</code> Constructor Examples</b></td>
     * <tr><td width="20%"><b>Code Sample</b></td><td><b>Description</b></td></tr>
     * <tr><td width="20%"><pre>
     * new SmbNamedPipe( "smb1://server/IPC$/PIPE/foo",
     *         SmbNamedPipe.PIPE_TYPE_RDWR |
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MD4.java

        /**
         * 512 bits work buffer = 16 x 32-bit words
         */
        private int[] X = new int[16];
    
    
    // Constructors
    //...........................................................................
    
        public MD4 () {
            super("MD4");
            engineReset();
        }
    
        /**
         *    This constructor is here to implement cloneability of this class.
         */
        private MD4 (MD4 md) {
            this();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        byte[] clientChallenge = null;
        byte[] challenge = null;
    
    /**
     * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
            if( userInfo != null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/Config.java

            } else if( pkgs.indexOf( "jcifs.smb1" ) == -1 ) {
                pkgs += "|jcifs.smb1";
                System.setProperty( "java.protocol.handler.pkgs", pkgs );
            }
        }
    
        // supress javadoc constructor summary by removing 'protected'
        Config() {}
    
        /**
         * Set the default properties of the static Properties used by <tt>Config</tt>. This permits
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
Back to top