Class WrapperWin32User


  • public class WrapperWin32User
    extends WrapperUser
    A WrapperUser contains information about a user account on the platform running the Wrapper. A WrapperUser is obtained by calling WrapperManager.getUser() or WrapperManager.getInteractiveUser().
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAccount()
      Returns the full name of the user account.
      java.lang.String getDomain()
      Returns the domain name of the user account.
      long getLoginTime()
      Returns the login time of the user account.
      java.lang.String getSID()
      Returns the current Security Identifier (SID) of the user account.
      java.lang.String toString()
      Returns a string representation of the user.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • getSID

        public java.lang.String getSID()
        Returns the current Security Identifier (SID) of the user account.
        Returns:
        The SID of the user account.
      • getDomain

        public java.lang.String getDomain()
        Returns the domain name of the user account.
        Returns:
        The domain name of the user account.
      • getAccount

        public java.lang.String getAccount()
        Returns the full name of the user account.
        Returns:
        The full name of the user account.
      • getLoginTime

        public long getLoginTime()
        Returns the login time of the user account.
        Returns:
        The login time of the user account.
      • toString

        public java.lang.String toString()
        Returns a string representation of the user.
        Overrides:
        toString in class java.lang.Object
        Returns:
        A string representation of the user.