Methods Summary |
---|
public static native long | gid(java.lang.String groupname, long p)Get the groupid for a specified group name
This function is available only if APR_HAS_USER is defined.
|
public static native long | gidCurrent(long p)Get the groupid of the calling process
This function is available only if APR_HAS_USER is defined.
|
public static native int | gidcompare(long left, long right)Compare two group identifiers for equality.
This function is available only if APR_HAS_USER is defined.
|
public static native java.lang.String | groupname(long groupid, long p)Get the group name for a specified groupid
This function is available only if APR_HAS_USER is defined.
|
public static native java.lang.String | homepath(java.lang.String username, long p)Get the home directory for the named user
This function is available only if APR_HAS_USER is defined.
|
public static native long | uid(java.lang.String username, long p)Get the userid for the specified username
This function is available only if APR_HAS_USER is defined.
|
public static native long | uidCurrent(long p)Get the userid (and groupid) of the calling process
This function is available only if APR_HAS_USER is defined.
|
public static native int | uidcompare(long left, long right)Compare two user identifiers for equality.
This function is available only if APR_HAS_USER is defined.
|
public static native long | usergid(java.lang.String username, long p)Get the groupid for the specified username
This function is available only if APR_HAS_USER is defined.
|
public static native java.lang.String | username(long userid, long p)Get the user name for a specified userid
This function is available only if APR_HAS_USER is defined.
|