public class UnixSystem extends Object
Modifier and Type | Field | Description |
---|---|---|
protected long |
gid |
The current group ID. |
protected long[] |
groups |
The current list of groups. |
protected long |
uid |
The current user ID. |
protected String |
username |
The current username. |
Constructor | Description |
---|---|
UnixSystem() |
Instantiate a UnixSystem and load the native library to access the underlying system information. |
Modifier and Type | Method | Description |
---|---|---|
long |
getGid() |
Get the GID for the current Unix user. |
long[] |
getGroups() |
Get the supplementary groups for the current Unix user. |
long |
getUid() |
Get the UID for the current Unix user. |
String |
getUsername() |
Get the username for the current Unix user. |
protected String username
protected long uid
protected long gid
protected long[] groups
public UnixSystem()
UnixSystem
and load the native library to access the underlying system information.public String getUsername()
public long getUid()
public long getGid()
public long[] getGroups()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.security.auth/com/sun/security/auth/module/UnixSystem.html