Enum Class DefaultSubscriptionActionFlow

java.lang.Object
java.lang.Enum<DefaultSubscriptionActionFlow>
com.broadleafcommerce.orderoperation.domain.subscription.enums.DefaultSubscriptionActionFlow
All Implemented Interfaces:
Serializable, Comparable<DefaultSubscriptionActionFlow>, Constable

public enum DefaultSubscriptionActionFlow extends Enum<DefaultSubscriptionActionFlow>
Describes the potential actions that can be taken against a subscription.
Since:
Order Operation Service 2.2.0, Release Train 2.3.0
  • Enum Constant Details

    • CREATE

      public static final DefaultSubscriptionActionFlow CREATE
      A request to create a new subscription
    • EDIT

      public static final DefaultSubscriptionActionFlow EDIT
      A request to edit the subscription's configuration
    • UPGRADE

      public static final DefaultSubscriptionActionFlow UPGRADE
      A request to upgrade the subscription's level of service
    • DOWNGRADE

      public static final DefaultSubscriptionActionFlow DOWNGRADE
      A request to downgrade the subscription's level of service
    • CANCEL

      public static final DefaultSubscriptionActionFlow CANCEL
      A customer-driven request to cancel the subscription
    • CHANGE_AUTO_RENEWAL

      public static final DefaultSubscriptionActionFlow CHANGE_AUTO_RENEWAL
      A request to opt-into or out of auto-renewal for the subscription. If the subscription has terms (i.e. has a contract), then changing the auto-renewal intention refers to automatically renewing the terms/contract. If the subscription does not have terms, then changing the auto-renewal intention refers to automatically renewing at the end of the subscription's current period.
  • Method Details

    • values

      public static DefaultSubscriptionActionFlow[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DefaultSubscriptionActionFlow valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • isCreate

      public static boolean isCreate(String flow)
    • isEdit

      public static boolean isEdit(String flow)
    • isUpgrade

      public static boolean isUpgrade(String flow)
    • isDowngrade

      public static boolean isDowngrade(String flow)
    • isCancel

      public static boolean isCancel(String flow)
    • isChangeAutoRenewal

      public static boolean isChangeAutoRenewal(String flow)