Class GshadowFile.Entry
java.lang.Object
com.aoindustries.aoserv.daemon.posix.GshadowFile.Entry
- Enclosing class:
GshadowFile
Represents one line of the
/etc/gshadow
file on a POSIX server.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<A extends Appendable>
AappendTo
(A out) Appends thisGshadowFile.Entry
as it would be written in/etc/gshadow
, not including any newline.The unmodifiable set of group administrators or an empty set if not set.The unmodifiable set of non-administrative group members or an empty set if not set.The group name the entry is for.The encrypted password ornull
if not set.toString()
Gets thisGshadowFile.Entry
as it would be written in/etc/gshadow
, not including any newline.
-
Constructor Details
-
Method Details
-
toString
Gets thisGshadowFile.Entry
as it would be written in/etc/gshadow
, not including any newline. -
appendTo
Appends thisGshadowFile.Entry
as it would be written in/etc/gshadow
, not including any newline.- Throws:
IOException
- See Also:
-
getGroupName
The group name the entry is for. -
getPassword
The encrypted password ornull
if not set. -
getGroupAdministrators
The unmodifiable set of group administrators or an empty set if not set. -
getGroupMembers
The unmodifiable set of non-administrative group members or an empty set if not set.
-