Interface LoginActionHandler
-
public interface LoginActionHandler
Provides the interface for executing a login action. This is an internal interface that is not to be used and may change any time.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISession
executeAction()
Performs a login and returns the resulting session.java.lang.String
getUserName()
Returns the name of the user to log in.
-
-
-
Method Detail
-
executeAction
ISession executeAction() throws java.lang.Exception
Performs a login and returns the resulting session.- Returns:
- the session for the login
- Throws:
java.lang.Exception
- when logging in fails
-
getUserName
java.lang.String getUserName()
Returns the name of the user to log in.- Returns:
- the username
-
-