Enum DeploymentAction.Type

    • Enum Constant Detail

      • ADD

        public static final DeploymentAction.Type ADD
        Add content to the deployment content repository. Does not imply deploying it into the runtime.
      • ADD_CONTENT

        public static final DeploymentAction.Type ADD_CONTENT
        Add content to an exploded deployment in content repository. Does not imply deploying it into the runtime.
      • DEPLOY

        public static final DeploymentAction.Type DEPLOY
        Deploy content into the runtime, without replacing existing content.
      • FULL_REPLACE

        public static final DeploymentAction.Type FULL_REPLACE
        Add new content to the deployment content repository, replace existing content of the same name in the runtime, and remove the replaced content from the deployment content repository. This is equivalent to an ADD, UNDEPLOY, DEPLOY, REMOVE sequence where the new content has the same name as the content being replaced.
      • UNDEPLOY

        public static final DeploymentAction.Type UNDEPLOY
        Undeploy content from the runtime. The content remains in the content repository.
      • REDEPLOY

        public static final DeploymentAction.Type REDEPLOY
        Undeploy existing content from the runtime and deploy it again.
    • Method Detail

      • values

        public static DeploymentAction.Type[] 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 (DeploymentAction.Type c : DeploymentAction.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DeploymentAction.Type 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