com.ibm.security.auth.module

Class NTActiveSystem

  1. java.lang.Object
  2. extended bycom.ibm.security.auth.module.NTActiveSystem

  1. public class NTActiveSystem
  2. extends java.lang.Object

This class implementation retrieves and makes available NT username/domain/ID information for either the current user or a specified user.


Constructor Summary

Constructor and Description
NTActiveSystem()
Instantiate a NTSystem and load the native library to access the underlying system information.
NTActiveSystem(java.lang.String userName,char[] authenticator)

Method Summary

Modifier and Type Method and Description
  1. protected
  2. void
finalize()
Clean up NT resources during garbage collection, in case LoginContext.logout() was not called.
  1. java.lang.String
getDomain()
Get the domain for the current NT user.
  1. java.lang.String
getDomainSID()
Get a printable SID for the current NT user's domain.
  1. java.lang.String[]
getGroupIDs()
Get the group IDs for the current NT user.
  1. int
getImpersonationToken()
Get an impersonation token for the current NT user.
  1. java.lang.String
getName()
Get the username for the current NT user.
  1. java.lang.String
getPrimaryGroupID()
Get the primary group ID for the current NT user.
  1. java.lang.String
getUserSID()
Get a printable SID for the current NT user.
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

NTActiveSystem

  1. public NTActiveSystem()
Instantiate a NTSystem and load the native library to access the underlying system information.

NTActiveSystem

  1. public NTActiveSystem(java.lang.String userName,
  2. char[] authenticator)

Method Detail

getName

  1. public java.lang.String getName( )
Get the username for the current NT user.

Returns:
the username for the current NT user.

getDomain

  1. public java.lang.String getDomain( )
Get the domain for the current NT user.

Returns:
the domain for the current NT user.

getDomainSID

  1. public java.lang.String getDomainSID( )
Get a printable SID for the current NT user's domain.

Returns:
a printable SID for the current NT user's domain.

getUserSID

  1. public java.lang.String getUserSID( )
Get a printable SID for the current NT user.

Returns:
a printable SID for the current NT user.

getPrimaryGroupID

  1. public java.lang.String getPrimaryGroupID( )
Get the primary group ID for the current NT user.

Returns:
the primary group ID for the current NT user.

getGroupIDs

  1. public java.lang.String[] getGroupIDs( )
Get the group IDs for the current NT user.

Returns:
the group IDs for the current NT user.

getImpersonationToken

  1. public int getImpersonationToken( )
Get an impersonation token for the current NT user.

Returns:
an impersonation token for the current NT user.

finalize

  1. protected void finalize()
Clean up NT resources during garbage collection, in case LoginContext.logout() was not called.

Overrides:
finalize in class java.lang.Object