/* * @(#)UnixSystem.java 1.5 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.security.auth.module; import javax.security.auth.*; import javax.security.auth.login.*; /** *

This class implementation retrieves and makes available Unix * UID/GID/groups information for the current user. * * @version 1.5, 12/19/03 */ public class UnixSystem { private native void getUnixInfo(); private static boolean loadedLibrary = false; protected String username; protected long uid; protected long gid; protected long[] groups; /** * Instantiate a UnixSystem and load * the native library to access the underlying system information. */ public UnixSystem() { if (loadedLibrary == false) { System.loadLibrary("jaas_unix"); loadedLibrary = true; } getUnixInfo(); } /** * Get the username for the current Unix user. * *

* * @return the username for the current Unix user. */ public String getUsername() { return username; } /** * Get the UID for the current Unix user. * *

* * @return the UID for the current Unix user. */ public long getUid() { return uid; } /** * Get the GID for the current Unix user. * *

* * @return the GID for the current Unix user. */ public long getGid() { return gid; } /** * Get the supplementary groups for the current Unix user. * *

* * @return the supplementary groups for the current Unix user. */ public long[] getGroups() { return groups; } }