Package org.opennms.plugins.cloud.config
Enum ConfigurationManager.ConfigStatus
- java.lang.Object
-
- java.lang.Enum<ConfigurationManager.ConfigStatus>
-
- org.opennms.plugins.cloud.config.ConfigurationManager.ConfigStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConfigurationManager.ConfigStatus>
- Enclosing class:
- ConfigurationManager
public static enum ConfigurationManager.ConfigStatus extends java.lang.Enum<ConfigurationManager.ConfigStatus>
See also ....
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTCATEDThe cloud plugin is successfully authenticated (Step 5).CONFIGUREDThe cloud plugin is configured successfully.FAILEDThe cloud plugin is configured but the configuration failed.NOT_ATTEMPTEDWe never tried to configure the cloud plugin.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigurationManager.ConfigStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConfigurationManager.ConfigStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_ATTEMPTED
public static final ConfigurationManager.ConfigStatus NOT_ATTEMPTED
We never tried to configure the cloud plugin.
-
AUTHENTCATED
public static final ConfigurationManager.ConfigStatus AUTHENTCATED
The cloud plugin is successfully authenticated (Step 5).
-
CONFIGURED
public static final ConfigurationManager.ConfigStatus CONFIGURED
The cloud plugin is configured successfully. (Step 7, 9, 10)
-
FAILED
public static final ConfigurationManager.ConfigStatus FAILED
The cloud plugin is configured but the configuration failed.
-
-
Method Detail
-
values
public static ConfigurationManager.ConfigStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConfigurationManager.ConfigStatus c : ConfigurationManager.ConfigStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurationManager.ConfigStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-