Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDomainSid (0.1 sec)

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

                blank = blank && ( sub == 0 );
            return blank;
        }
    
    
        /**
         * 
         * @return domain SID
         */
        @Override
        public SID getDomainSid () {
            return new SID(this, SID_TYPE_DOMAIN, this.domainName, null, getType() != SID_TYPE_DOMAIN);
        }
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                try {
                    final CIFSContext context = file.getContext();
                    final SID[] children = context.getSIDResolver().getGroupMemberSids(context, file.getServer(), sid.getDomainSid(),
                            sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu May 23 01:54:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SID.java

                for (int i = 0; i < this.sub_authority_count; i++) {
                    this.sub_authority[i] = sid.sub_authority[i];
                }
            }
        }
    
        public SID getDomainSid() {
            return new SID(this,
                        SID_TYPE_DOMAIN,
                        this.domainName,
                        null,
                        getType() != SID_TYPE_DOMAIN);
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top