iaaf.function
Class AddUserFunction

java.lang.Object
  |
  +--iaaf.function.IAAFFunction
        |
        +--iaaf.function.AddUserFunction

public class AddUserFunction
extends IAAFFunction

File: AddUserFunction.java Description: This class is responsible for adding new users to the database. This function is performed by Administrator of the Company. It extends the abstract class IAAFFunction and implements its abstract function performFunction(). Date: February 16, 2001 Copyright (c) 2001 IAAF team, UMass Boston

Version:
1.0
Author:
Durgesh Joshi

Constructor Summary
AddUserFunction()
          class constructor
 
Method Summary
 java.lang.String performFunction(IAAFEnv env)
          It takes user id, user password from IAAFEnv.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AddUserFunction

public AddUserFunction()
class constructor
Method Detail

performFunction

public java.lang.String performFunction(IAAFEnv env)
                                 throws IAAFFunctionException
It takes user id, user password from IAAFEnv. After checking the validity of the information passed, new user is added in the database
Overrides:
performFunction in class IAAFFunction