Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    
        /**
         * Returns the flags for this ACE. The <tt>isInherited()</tt>
         * method checks the <tt>FLAGS_INHERITED</tt> bit in these flags.
         * 
         * @return the ACE flags
         */
        int getFlags ();
    
    
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
         * Note: For reasons not fully understood, <tt>FLAGS_INHERITED</tt> may
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FLAGS_OBJECT_INHERIT    = 0x01;
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
        public static final int FLAGS_NO_PROPAGATE      = 0x04;
        public static final int FLAGS_INHERIT_ONLY      = 0x08;
        public static final int FLAGS_INHERITED         = 0x10;
    
        boolean allow;
        int flags;
        int access;
        SID sid;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dtyp/ACE.java

        boolean allow;
        int flags;
        int access;
        SID sid;
    
    
        @Override
        public boolean isAllow () {
            return this.allow;
        }
    
    
        @Override
        public boolean isInherited () {
            return ( this.flags & FLAGS_INHERITED ) != 0;
        }
    
    
        @Override
        public int getFlags () {
            return this.flags;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
Back to top