Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for metric (0.23 sec)

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

        }
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        @Override
        public int getRid () {
            if ( getType() == SID_TYPE_DOMAIN )
                throw new IllegalArgumentException("This SID is a domain sid");
            return this.sub_authority[ this.sub_authority_count - 1 ];
        }
    
    
    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)
  2. src/main/java/jcifs/SID.java

         * @return domain SID
         */
        SID getDomainSid ();
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
    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)
  3. src/main/java/jcifs/smb1/smb1/SID.java

            return new SID(this,
                        SID_TYPE_DOMAIN,
                        this.domainName,
                        null,
                        getType() != SID_TYPE_DOMAIN);
        }
        public int getRid() {
            if (getType() == SID_TYPE_DOMAIN)
                throw new IllegalArgumentException("This SID is a domain sid");
            return sub_authority[sub_authority_count - 1];
        }
    
        /**
    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)
Back to top