Class User
java.lang.Object
|
+----User
- public class User
- extends Object
The User class contains persistant information about a given user
-
IPAddress
- The IP address if any, that this user must be connected from
-
Password
- The password corresponding to this user
-
UserID
- The name or id of this user
-
User()
-
-
IsLogonValid(String, InetAddress)
- Determines if the combination of UserID, password, and optional IP address
are valid (NYI).
-
LogTransfer(String, long, long)
- Records a file transfer for the given user.
UserID
private String UserID
- The name or id of this user
Password
private String Password
- The password corresponding to this user
IPAddress
private InetAddress IPAddress
- The IP address if any, that this user must be connected from
User
public User()
IsLogonValid
public boolean IsLogonValid(String Password,
InetAddress Address)
- Determines if the combination of UserID, password, and optional IP address
are valid (NYI).
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).