Enum ImportOptions.ResourceAdaptorEntityReconfigurationAction
- java.lang.Object
-
- java.lang.Enum<ImportOptions.ResourceAdaptorEntityReconfigurationAction>
-
- com.opencloud.rhino.management.config.ImportOptions.ResourceAdaptorEntityReconfigurationAction
-
- All Implemented Interfaces:
Serializable
,Comparable<ImportOptions.ResourceAdaptorEntityReconfigurationAction>
- Enclosing class:
- ImportOptions
public static enum ImportOptions.ResourceAdaptorEntityReconfigurationAction extends Enum<ImportOptions.ResourceAdaptorEntityReconfigurationAction>
Options for applying resource adaptor entity configuration. These options determine how importing a configuration that requires deactivating and reactivating a resource adaptor entity should be handled. These options only apply to resource adaptor entities that do not support active reconfiguration. Resource adaptor entities that support active reconfiguration are always reconfigured if the configuration bundle is valid.
- Since:
- Rhino 3.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description deactivateAndReactivate
Deactivate and reactivate any resource adaptor entities that do not support active reconfiguration and have updated configuration properties.doNotDeactivate
Do not deactivate any resource adaptor entities that do not support active reconfiguration and have updated configuration properties.validateEntityState
Cause import validation to fail with an error if it updates configuration properties for an active resource adaptor entity that does not support active reconfiguration.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImportOptions.ResourceAdaptorEntityReconfigurationAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImportOptions.ResourceAdaptorEntityReconfigurationAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
validateEntityState
public static final ImportOptions.ResourceAdaptorEntityReconfigurationAction validateEntityState
Cause import validation to fail with an error if it updates configuration properties for an active resource adaptor entity that does not support active reconfiguration.
- Since:
- Rhino 3.0.0
-
deactivateAndReactivate
public static final ImportOptions.ResourceAdaptorEntityReconfigurationAction deactivateAndReactivate
Deactivate and reactivate any resource adaptor entities that do not support active reconfiguration and have updated configuration properties.
-
doNotDeactivate
public static final ImportOptions.ResourceAdaptorEntityReconfigurationAction doNotDeactivate
Do not deactivate any resource adaptor entities that do not support active reconfiguration and have updated configuration properties. Rhino will raise an alarm if a resource adaptor entity does not support active reconfiguration and has configuration properties that need updating. The configuration properties will be applied when the resource adaptor entity is deactivated by a later action.
-
-
Method Detail
-
values
public static ImportOptions.ResourceAdaptorEntityReconfigurationAction[] 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 (ImportOptions.ResourceAdaptorEntityReconfigurationAction c : ImportOptions.ResourceAdaptorEntityReconfigurationAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImportOptions.ResourceAdaptorEntityReconfigurationAction valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-