Enum ImportOptions.ResourceAdaptorEntityReconfigurationAction

    • 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
      • 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 name
        NullPointerException - if the argument is null