Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setShareAccess (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            this.fileAttributes = fileAttributes;
        }
    
        /**
         * Set the share access mode for the file
         * @param shareAccess the shareAccess to set
         */
        public void setShareAccess(final int shareAccess) {
            this.shareAccess = shareAccess;
        }
    
        /**
         * Set the create disposition specifying what action to take if file exists or doesn't exist
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            request = new Smb2CreateRequest(mockConfig, "test.txt");
    
            int shareAccess = Smb2CreateRequest.FILE_SHARE_READ | Smb2CreateRequest.FILE_SHARE_WRITE | Smb2CreateRequest.FILE_SHARE_DELETE;
            request.setShareAccess(shareAccess);
    
            byte[] buffer = new byte[1024];
            request.writeBytesWireFormat(buffer, 0);
    
            // Read share access from buffer (offset 32-35)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top