Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for textual (0.2 sec)

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

            }
        }
    
    
        /**
         * Construct a SID from it's textual representation such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         * 
         * @param textual
         * @throws SmbException
         */
        public SID ( String textual ) throws SmbException {
            StringTokenizer st = new StringTokenizer(textual, "-");
            if ( st.countTokens() < 3 || !st.nextToken().equals("S") )
    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

     */
    package jcifs;
    
    
    /**
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
     * also be resolved to yield the name of the associated Windows account
     * such as <tt>Administrators</tt> or <tt>MYDOM\alice</tt>.
     * <p>
    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

        /**
         * Construct a SID from it's textual representation such as
         * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt>.
         */
        public SID(String textual) throws SmbException {
            StringTokenizer st = new StringTokenizer(textual, "-");
            if (st.countTokens() < 3 || !st.nextToken().equals("S"))
                // need S-N-M
                throw new SmbException("Bad textual SID format: " + textual);
    
    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