| java.lang.Object org.tanukisoftware.wrapper.WrapperUser org.tanukisoftware.wrapper.WrapperWin32User
WrapperWin32User | public class WrapperWin32User extends WrapperUser (Code) | | 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().
author: Leif Mortenson |
Constructor Summary | |
| WrapperWin32User(byte[] sid, byte[] user, byte[] domain, int loginTime) |
Method Summary | |
void | addGroup(byte[] sid, byte[] user, byte[] domain) | public String | getAccount() Returns the full name of the user account. | public String | getDomain() Returns the domain name of the user account. | public long | getLoginTime() Returns the login time of the user account. | public String | getSID() Returns the current Security Identifier (SID) of the user account. | public String | toString() Returns a string representation of the user. |
WrapperWin32User | WrapperWin32User(byte[] sid, byte[] user, byte[] domain, int loginTime)(Code) | | |
addGroup | void addGroup(byte[] sid, byte[] user, byte[] domain)(Code) | | |
getAccount | public String getAccount()(Code) | | Returns the full name of the user account.
The full name of the user account. |
getDomain | public String getDomain()(Code) | | Returns the domain name of the user account.
The domain name of the user account. |
getLoginTime | public long getLoginTime()(Code) | | Returns the login time of the user account.
The login time of the user account. |
getSID | public String getSID()(Code) | | Returns the current Security Identifier (SID) of the user account.
The SID of the user account. |
toString | public String toString()(Code) | | Returns a string representation of the user.
A string representation of the user. |
|
|