Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAccessMask (0.16 sec)

  1. src/main/java/jcifs/internal/dtyp/ACE.java

            case 0x01:
                return "This folder and files";
            case 0x09:
                return "Files only";
            }
            return "Invalid";
        }
    
        @Override
        public int getAccessMask() {
            return this.access;
        }
    
        @Override
        public SID getSID() {
            return this.sid;
        }
    
        @Override
        public int decode(final byte[] buf, int bi, final int len) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ACE.java

         * <code>READ_CONTROL</code>, <code>GENERIC_ALL</code>, etc with bitwise
         * operators to determine which bits of the mask are on or off.
         *
         * @return the access mask
         */
        int getAccessMask();
    
        /**
         * Returns the 'Apply To' text for inheritance of ACEs on
         * directories such as 'This folder, subfolder and files'. For
         * files the text is always 'This object only'.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

         * <code>READ_CONTROL</code>, <code>GENERIC_ALL</code>, etc with bitwise
         * operators to determine which bits of the mask are on or off.
         * @return the access mask for this ACE
         */
        public int getAccessMask() {
            return access;
        }
    
        /**
         * Return the SID associated with this ACE.
         * @return the SID for this ACE
         */
        public SID getSID() {
            return sid;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top