Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                sids[si].type = rpc.names.names[si].sid_type;
                sids[si].domainName = null;
    
                switch (sids[si].type) {
                    case SID_TYPE_USER:
                    case SID_TYPE_DOM_GRP:
                    case SID_TYPE_DOMAIN:
                    case SID_TYPE_ALIAS:
                    case SID_TYPE_WKN_GRP:
                        int sid_index = rpc.names.names[si].sid_index;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

     * </pre>
     * 
     * @internal
     */
    public class SID extends rpc.sid_t implements jcifs.SID {
    
        private static final Logger log = LoggerFactory.getLogger(SID.class);
    
        static final String[] SID_TYPE_NAMES = {
            "0", "User", "Domain group", "Domain", "Local group", "Builtin group", "Deleted", "Invalid", "Unknown"
        };
    
        /**
         * 
         */
        public static final int SID_FLAG_RESOLVE_SIDS = 0x0001;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SID.java

         * If the sid cannot be resolved the numeric representation from
         * toString() is returned.
         * 
         * @return display format, potentially with resolved names
         */
        String toDisplayString ();
    
    
        /**
         * Return the sAMAccountName of this SID unless it could not
         * be resolved in which case the numeric RID is returned. If this
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top