com.sybase.uep.bobclient.actions
Class LoginAction

java.lang.Object
  extended by com.sybase.uep.bobclient.actions.Action
      extended by com.sybase.uep.bobclient.actions.LoginAction
All Implemented Interfaces:
IBOBAction, java.lang.Runnable

Deprecated.

public class LoginAction
extends Action

This is the login action class

This will authenticate the username and password

Author:
tdang
See Also:
Action

Constructor Summary
LoginAction(LoginScreen loginScreen)
          Deprecated. Constructor to create a login action
LoginAction(LoginScreen loginScreen, java.lang.String username, java.lang.String password)
          Deprecated. Construction to create a login action
LoginAction(java.lang.String username, java.lang.String password)
          Deprecated. Construction to create a login action
 
Method Summary
 void finish(boolean success)
          Deprecated. This gets called when the action is finished
 void run()
          Deprecated. (non-Javadoc)
 void setPassword(java.lang.String password)
          Deprecated. Set the password
 void setUserName(java.lang.String username)
          Deprecated. Set the user name
 
Methods inherited from class com.sybase.uep.bobclient.actions.Action
hasFailed, isProcessing, setHasFailed, setIsProcessing
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoginAction

public LoginAction(LoginScreen loginScreen)
Deprecated. 
Constructor to create a login action

Parameters:
loginScreen - LoginScreen screen object

LoginAction

public LoginAction(java.lang.String username,
                   java.lang.String password)
Deprecated. 
Construction to create a login action

Parameters:
username - String value for the user name
password - String value for the password

LoginAction

public LoginAction(LoginScreen loginScreen,
                   java.lang.String username,
                   java.lang.String password)
Deprecated. 
Construction to create a login action

Parameters:
loginScreen - LoginScreen screen object
username - String value for the user name
password - String value for the password
Method Detail

setUserName

public void setUserName(java.lang.String username)
Deprecated. 
Set the user name

Parameters:
username - String value for the user name

setPassword

public void setPassword(java.lang.String password)
Deprecated. 
Set the password

Parameters:
password - String value for the password

finish

public void finish(boolean success)
Deprecated. 
This gets called when the action is finished

Specified by:
finish in interface IBOBAction
Overrides:
finish in class Action
Parameters:
success - true to specify if the action succeeded, otherwise false
See Also:
IBOBAction.finish(boolean success)

run

public void run()
Deprecated. 
(non-Javadoc)

See Also:
Runnable.run()