Class User

java.lang.Object
   |
   +----User

public class User
extends Object
The User class contains persistant information about a given user


Variable Index

 o IPAddress
The IP address if any, that this user must be connected from
 o Password
The password corresponding to this user
 o UserID
The name or id of this user

Constructor Index

 o User()

Method Index

 o IsLogonValid(String, InetAddress)
Determines if the combination of UserID, password, and optional IP address are valid (NYI).
 o LogTransfer(String, long, long)
Records a file transfer for the given user.

Variables

 o UserID
 private String UserID
The name or id of this user

 o Password
 private String Password
The password corresponding to this user

 o IPAddress
 private InetAddress IPAddress
The IP address if any, that this user must be connected from

Constructors

 o User
 public User()

Methods

 o IsLogonValid
 public boolean IsLogonValid(String Password,
                             InetAddress Address)
Determines if the combination of UserID, password, and optional IP address are valid (NYI).

 o LogTransfer
 public void LogTransfer(String File,
                         long Bytes,
                         long Seconds)
Records a file transfer for the given user. Used to collect long term statistics about users (NYI).