public enum LoadProjectErrorStatus extends java.lang.Enum<LoadProjectErrorStatus> implements ValueEnum
Enum Constant and Description |
---|
BADCREDENTIALS
invalid
userName or password |
BADREIFYSERVERURL
no project loader at
serverURL |
NORESPONSEFROMURL
can't reach server at
serverURL |
PROJECTNOTFOUND
none of the requested projects were found
|
SERVLETERROR |
TIMEOUT
server has not responded within configured request timeout
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static LoadProjectErrorStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoadProjectErrorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadProjectErrorStatus TIMEOUT
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "timeout".
public static final LoadProjectErrorStatus NORESPONSEFROMURL
serverURL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "noResponseFromURL".
public static final LoadProjectErrorStatus BADREIFYSERVERURL
serverURL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "badReifyServerURL".
public static final LoadProjectErrorStatus BADCREDENTIALS
userName
or password
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "badCredentials".
public static final LoadProjectErrorStatus PROJECTNOTFOUND
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "projectNotFound".
public static final LoadProjectErrorStatus SERVLETERROR
public static LoadProjectErrorStatus[] values()
for (LoadProjectErrorStatus c : LoadProjectErrorStatus.values()) System.out.println(c);
public static LoadProjectErrorStatus 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 namejava.lang.NullPointerException
- if the argument is null