java.lang.Object
java.lang.Record
jdk.net.UnixDomainPrincipal
- Record Components:
- user- the user identity
- group- the group identity
Represents the credentials of a peer connected to a
 
 Unix domain socket.
- Since:
- 16
- 
Constructor SummaryConstructorsConstructorDescriptionUnixDomainPrincipal(UserPrincipal user, GroupPrincipal group) Creates a UnixDomainPrincipal.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.group()Returns the value of thegrouprecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.user()Returns the value of theuserrecord component.
- 
Constructor Details- 
UnixDomainPrincipalCreates a UnixDomainPrincipal.- Parameters:
- user- the user identity
- group- the group identity
- Throws:
- NullPointerException- if- useror- groupare- null.
 
 
- 
- 
Method Details- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object).
- 
userReturns the value of theuserrecord component.- Returns:
- the value of the userrecord component
 
- 
groupReturns the value of thegrouprecord component.- Returns:
- the value of the grouprecord component
 
 
-