Package de.mid.innovator.srv
Enum Class ServerStatus
- All Implemented Interfaces:
Serializable,Comparable<ServerStatus>,Constable
The various flags indicating the state of a running repository server.
- Author:
- borschet
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionthe license server checks if the server is still reachablethe server runs as an enterprise repository serverthe server is currently in start up modethe server is locked, which means that no logins are allowedlogins are allowed standard working serverno single sign-onthe server runs in read only modethe server is currently in shut down modeSingle Sign Onthe server busy running an update to the file systemversion modelthe server is ready to work with -
Method Summary
Modifier and TypeMethodDescriptionstatic ServerStatusReturns the enum constant of this class with the specified name.static ServerStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
WORK
the server is ready to work with -
UPDATE
the server busy running an update to the file system -
READONLY
the server runs in read only mode -
LOCKED
the server is locked, which means that no logins are allowed -
NOTLOCKED
logins are allowed standard working server -
COMPANY
the server runs as an enterprise repository server -
LOAD
the server is currently in start up mode -
SHUTDOWN
the server is currently in shut down mode -
CHECK
the license server checks if the server is still reachable -
SSO
Single Sign On -
NOTSSO
no single sign-on -
VersModel
version model
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-