- java.lang.Object
- 
- com.sun.security.auth.module.NTSystem
 
- 
 public class NTSystem extends Object This class implementation retrieves and makes available NT security information for the current user.
- 
- 
Constructor SummaryConstructors Constructor Description NTSystem()Instantiate anNTSystemand load the native library to access the underlying system information.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDomain()Get the domain for the current NT user.StringgetDomainSID()Get a printable SID for the current NT user's domain.String[]getGroupIDs()Get the printable group SIDs for the current NT user.longgetImpersonationToken()Get an impersonation token for the current NT user.StringgetName()Get the username for the current NT user.StringgetPrimaryGroupID()Get a printable primary group SID for the current NT user.StringgetUserSID()Get a printable SID for the current NT user.
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() Get the username for the current NT user.- Returns:
- the username for the current NT user.
 
 - 
getDomainpublic String getDomain() Get the domain for the current NT user.- Returns:
- the domain for the current NT user.
 
 - 
getDomainSIDpublic String getDomainSID() Get a printable SID for the current NT user's domain.- Returns:
- a printable SID for the current NT user's domain.
 
 - 
getUserSIDpublic String getUserSID() Get a printable SID for the current NT user.- Returns:
- a printable SID for the current NT user.
 
 - 
getPrimaryGroupIDpublic String getPrimaryGroupID() Get a printable primary group SID for the current NT user.- Returns:
- the primary group SID for the current NT user.
 
 - 
getGroupIDspublic String[] getGroupIDs() Get the printable group SIDs for the current NT user.- Returns:
- the group SIDs for the current NT user.
 
 - 
getImpersonationTokenpublic long getImpersonationToken() Get an impersonation token for the current NT user.- Returns:
- an impersonation token for the current NT user.
 
 
- 
 
-