| java.lang.Object golfShop.presentation.xmlc.login.LoginState
LoginState | class LoginState implements java.io.Serializable(Code) | | Login related data kept in the session. This is used to pass information
between login-related pages instead of passing values in CGI args. This
is a considerably easier approach, but can cause problems if the user
is accessing the same set of screens from two different browser windows.
In this case, this issues is not significant.
|
Method Summary | |
public static LoginState | get(Session session) Get the LoginState object from the session, creating one if
if doesn't exist. |
lastError | public String lastError(Code) | | Last error message. If null, there is no pending error.
|
userName | public String userName(Code) | | The username that was last entered.
|
get | public static LoginState get(Session session)(Code) | | Get the LoginState object from the session, creating one if
if doesn't exist.
|
|
|