Class SecuritySystem

java.lang.Object
  |
  +--SecuritySystem

public class SecuritySystem
extends java.lang.Object

Class representing a login security system. Manages UI for end users and system operations staff. Responsible for username/password validity checks.


Constructor Summary
SecuritySystem()
          Constructor
 
Method Summary
 boolean doLogin(java.lang.String username, char[] password)
          Attempt to perform a login on behalf of the given user.
static void main(java.lang.String[] args)
           
 void show()
          Shows UI components on the screen.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SecuritySystem

public SecuritySystem()
Constructor
Method Detail

show

public void show()
Shows UI components on the screen.

doLogin

public boolean doLogin(java.lang.String username,
                       char[] password)
Attempt to perform a login on behalf of the given user. Requires non-null username and password. Returns true if user has been successfully authenticated false otherwise. Called from PasswordPopup.

main

public static void main(java.lang.String[] args)