Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getCreateAction (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         */
        public final int getFid() {
            return this.fid;
        }
    
        /**
         * Gets the create action taken.
         *
         * @return the createAction
         */
        public final int getCreateAction() {
            return this.createAction;
        }
    
        /**
         * Gets the extended file attributes.
         *
         * @return the extFileAttributes
         */
        public final int getExtFileAttributes() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

        public final byte getOpenFlags() {
            return this.openFlags;
        }
    
        /**
         * Get the create action taken by the server
         * @return the createAction
         */
        public final int getCreateAction() {
            return this.createAction;
        }
    
        /**
         * Get the file creation time
         * @return the creationTime
         */
        public final long getCreationTime() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            // Validate simple getters
            assertEquals((byte) 0x7, resp.getOplockLevel());
            assertEquals((byte) 0x2, resp.getOpenFlags());
            assertEquals(0x11223344, resp.getCreateAction());
            assertEquals(1111L, resp.getCreationTime());
            assertEquals(1111L, resp.getCreateTime()); // SmbBasicFileInfo mapping
            assertEquals(2222L, resp.getLastAccessTime());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.5K bytes
    - Click Count (0)
Back to Top