Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Elias (0.17 sec)

  1. src/main/java/jcifs/smb/SID.java

         * @throws IOException
         */
        public jcifs.SID[] getGroupMemberSids ( String authorityServerName, CIFSContext tc, int flags ) throws IOException {
            if ( this.type != SID_TYPE_DOM_GRP && this.type != SID_TYPE_ALIAS )
                return new SID[0];
    
            return tc.getSIDResolver().getGroupMemberSids(tc, authorityServerName, getDomainSid(), getRid(), flags);
        }
    
    
        /**
         * @param context
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SID.java

         */
        public static final int SID_TYPE_DOM_GRP = 2;
    
        /**
         * 
         */
        public static final int SID_TYPE_DOMAIN = 3;
    
        /**
         * 
         */
        public static final int SID_TYPE_ALIAS = 4;
    
        /**
         * 
         */
        public static final int SID_TYPE_WKN_GRP = 5;
    
        /**
         * 
         */
        public static final int SID_TYPE_DELETED = 6;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SID.java

        public static final int SID_TYPE_DOM_GRP = lsarpc.SID_NAME_DOM_GRP;
        public static final int SID_TYPE_DOMAIN  = lsarpc.SID_NAME_DOMAIN;
        public static final int SID_TYPE_ALIAS   = lsarpc.SID_NAME_ALIAS;
        public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP;
        public static final int SID_TYPE_DELETED = lsarpc.SID_NAME_DELETED;
        public static final int SID_TYPE_INVALID = lsarpc.SID_NAME_INVALID;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
Back to top