Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shallow (0.2 sec)

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

     * 
     * @internal
     */
    public class ACE implements jcifs.ACE, Decodable {
    
        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;
        }
    
    
    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)
  2. src/main/java/jcifs/ACE.java

         * 
         * @return whether this is an inherited ACE
         */
        boolean isInherited ();
    
    
        /**
         * Returns true if this ACE is an allow ACE and false if it is a deny ACE.
         * 
         * @return whether this in an allow ACE
         */
        boolean isAllow ();
    
    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)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FLAGS_INHERITED         = 0x10;
    
        boolean allow;
        int flags;
        int access;
        SID sid;
    
        /**
         * Returns true if this ACE is an allow ACE and false if it is a deny ACE.
         */
        public boolean isAllow() {
            return allow;
        }
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
    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)
Back to top