|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LoginStrings>
org.spiffyui.client.login.LoginStrings
public enum LoginStrings
The Strings used by the login dialog
Enum Constant Summary | |
---|---|
INVALID_TS_URL
An error message indicating an invalid token server URL format |
|
INVALID_USERNAME_PASSWORD
An error message indicating the very common error of an invalid username and password combination |
|
LOGIN
This is the login title |
|
LOGIN_TITLE
This is the title of the login panel |
|
LOGOUT
The text of the logout button |
|
MULTIPLE_ACCOUNTS
An error message indicating there was more than one user with the specified username and the username resolution was ambiguous |
|
NO_PRIVILEGE
This is an error string indicating the username and password were valid, but that user didn't have access to the application. |
|
NOT_FOUND_TS_URL
An error message indicating the token server could not be found |
|
PASSWORD
The label for the password field |
|
PRODUCT_NAME
The product name is used for the title of the login panel |
|
RENEW
This string is used for the renew token dialog |
|
REPEAT_LOGIN
This string indicates that this is a repeat log or token renew |
|
REPEAT_LOGIN_TWO
This string is used for a token renew when the username is unknown. |
|
USERNAME
The label for the username field |
Method Summary | |
---|---|
static LoginStrings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LoginStrings[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LoginStrings NO_PRIVILEGE
public static final LoginStrings RENEW
public static final LoginStrings REPEAT_LOGIN
public static final LoginStrings REPEAT_LOGIN_TWO
public static final LoginStrings LOGIN
public static final LoginStrings LOGIN_TITLE
public static final LoginStrings PRODUCT_NAME
public static final LoginStrings USERNAME
public static final LoginStrings PASSWORD
public static final LoginStrings LOGOUT
public static final LoginStrings INVALID_TS_URL
public static final LoginStrings NOT_FOUND_TS_URL
public static final LoginStrings MULTIPLE_ACCOUNTS
public static final LoginStrings INVALID_USERNAME_PASSWORD
Method Detail |
---|
public static LoginStrings[] values()
for (LoginStrings c : LoginStrings.values()) System.out.println(c);
public static LoginStrings valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |