Enum OpsParams.Origin

  • All Implemented Interfaces:
    Serializable, Comparable<OpsParams.Origin>
    Enclosing class:
    OpsParams

    public static enum OpsParams.Origin
    extends Enum<OpsParams.Origin>
    There can be so far 6 types of events that can trigger deployment activities. load when an already deployed application is being reloaded. deploy when a new application is deployed on DAS deploy_instance when a new application is deployed on instance unload when a loaded application is stopped undeploy when a deployed application is removed from the system. create_application_ref when an application reference is being created mt_provision when provisioning an application to tenant mt_unprovision when unprovisioning an application from tenant
    • Method Detail

      • values

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

        public static OpsParams.Origin 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
      • isDeploy

        public boolean isDeploy()
      • isLoad

        public boolean isLoad()
      • isArtifactsPresent

        public boolean isArtifactsPresent()
      • needsCleanArtifacts

        public boolean needsCleanArtifacts()
      • isUndeploy

        public boolean isUndeploy()
      • isUnload

        public boolean isUnload()
      • isCreateAppRef

        public boolean isCreateAppRef()