Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetID (0.16 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosToken.java

            }
    
            try ( ASN1InputStream stream = new ASN1InputStream(content) ) {
    
                ASN1ObjectIdentifier kerberosOid = (ASN1ObjectIdentifier) stream.readObject();
                if ( !kerberosOid.getId().equals(KerberosConstants.KERBEROS_OID) )
                    throw new PACDecodingException("Not a kerberos token");
    
    
                // yes, there really is non ASN.1/DER data inside the tagged object
                int read = 0;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacGroup.java

        private SID id;
        private int attributes;
    
    
        public PacGroup ( SID id, int attributes ) {
            super();
            this.id = id;
            this.attributes = attributes;
        }
    
    
        public SID getId () {
            return this.id;
        }
    
    
        public int getAttributes () {
            return this.attributes;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

                    this.extraSids[ i ] = extraSidAtts[ i ].getId();
                }
    
                // Compute Resource Group IDs with Resource Domain ID to get SIDs
                this.resourceGroupSids = new SID[resourceGroups.length];
                for ( int i = 0; i < resourceGroups.length; i++ ) {
                    this.resourceGroupSids[ i ] = new SID(resourceDomainId, resourceGroups[ i ].getId());
                }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacSidAttributes.java

        private int attributes;
    
    
        public PacSidAttributes ( SID id, int attributes ) {
            super();
            this.id = id;
            this.attributes = attributes;
        }
    
    
        public SID getId () {
            return this.id;
        }
    
    
        public int getAttributes () {
            return this.attributes;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.2K bytes
    - Viewed (0)
Back to top