- java.lang.Object
- 
- com.sun.security.auth.NTSid
- 
- com.sun.security.auth.NTSidPrimaryGroupPrincipal
 
 
- 
- All Implemented Interfaces:
- Serializable,- Principal
 
 public class NTSidPrimaryGroupPrincipal extends NTSid This class extendsNTSidand represents a Windows NT user's primary group SID.Principals such as this NTSidPrimaryGroupPrincipalmay be associated with a particularSubjectto augment thatSubjectwith an additional identity. Refer to theSubjectclass for more information on how to achieve this. Authorization decisions can then be based upon the Principals associated with aSubject.- See Also:
- Principal,- Subject, Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description NTSidPrimaryGroupPrincipal(String name)Create anNTSidPrimaryGroupPrincipalwith a Windows NT group SID.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Compares the specified Object with thisNTSidPrimaryGroupPrincipalfor equality.StringtoString()Return a string representation of thisNTSidPrimaryGroupPrincipal.
 
- 
- 
- 
Constructor Detail- 
NTSidPrimaryGroupPrincipalpublic NTSidPrimaryGroupPrincipal(String name) Create anNTSidPrimaryGroupPrincipalwith a Windows NT group SID.- Parameters:
- name- the primary Windows NT group SID for this user.
- Throws:
- NullPointerException- if the- nameis- null.
 
 
- 
 - 
Method Detail- 
toStringpublic String toString() Return a string representation of thisNTSidPrimaryGroupPrincipal.
 - 
equalspublic boolean equals(Object o) Compares the specified Object with thisNTSidPrimaryGroupPrincipalfor equality. Returns true if the given object is also aNTSidPrimaryGroupPrincipaland the two NTSidPrimaryGroupPrincipals have the same SID.
 
- 
 
-