Class Overview
 This class implementation retrieves and makes available Unix
 UID/GID/groups information for the current user.
 
Summary
| Public Constructors | 
|---|
	 
    
        |  | UnixSystem() Instantiate a UnixSystemand load
 the native library to access the underlying system information. | 
| Public Methods | 
|---|
	 
    
        | 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. | 
| [Expand] Inherited Methods | 
|---|
|  From class
  java.lang.Object 
  
   
    
    
	 
    
        | Object | clone() Creates and returns a copy of this object. |  
        | boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |  
        | void | finalize() Called by the garbage collector on an object when garbage collection
 determines that there are no more references to the object. |  
        | final
            
            
            Class<?> | getClass() Returns the runtime class of this Object. |  
        | int | hashCode() Returns a hash code value for the object. |  
        | final
            
            
            void | notify() Wakes up a single thread that is waiting on this object's
 monitor. |  
        | final
            
            
            void | notifyAll() Wakes up all threads that are waiting on this object's monitor. |  
        | String | toString() Returns a string representation of the object. |  
        | final
            
            
            void | wait() Causes the current thread to wait until another thread invokes the
  notify() method or the
  notifyAll() method for this object. |  
        | final
            
            
            void | wait(long timeout, int nanos) Causes the current thread to wait until another thread invokes the
  notify() method or the
  notifyAll() method for this object, or
 some other thread interrupts the current thread, or a certain
 amount of real time has elapsed. |  
        | final
            
            
            void | wait(long timeout) Causes the current thread to wait until either another thread invokes the
  notify() method or the
  notifyAll() method for this object, or a
 specified amount of time has elapsed. |  | 
 
Fields
Public Constructors
 
    
      
        public 
         
         
         
         
        
      
      UnixSystem
      ()
    
      
    
      
  Instantiate a UnixSystem and load
 the native library to access the underlying system information.
 
 
Public Methods
 
    
      
        public 
         
         
         
         
        long
      
      getGid
      ()
    
      
    
      
  Get the GID for the current Unix user.
 
      Returns
      - the GID for the current Unix user.
 
     
 
 
    
      
        public 
         
         
         
         
        long[]
      
      getGroups
      ()
    
      
    
      
  Get the supplementary groups for the current Unix user.
 
      Returns
      - the supplementary groups for the current Unix user.
 
     
 
 
    
      
        public 
         
         
         
         
        long
      
      getUid
      ()
    
      
    
      
  Get the UID for the current Unix user.
 
      Returns
      - the UID for the current Unix user.
 
     
 
 
    
      
        public 
         
         
         
         
        String
      
      getUsername
      ()
    
      
    
      
  Get the username for the current Unix user.
 
      Returns
      - the username for the current Unix user.