Interface CommerceCartModificationStatus


  • public interface CommerceCartModificationStatus
    Status values for the CommerceCartModification statusCode. As the statusCode is a string it is not limited to any specific set of values. These are just the values exposed by the commerceservices.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String CONFIGURATION_ERROR
      Indicates a problem with product configuration (i.e.
      static java.lang.String ENTRY_GROUP_ERROR
      Indicates a problem with entryGroup configuration (i.e.
      static java.lang.String INVALID_ENTRY_GROUP_NUMBER
      Indicates a failure to remove the requested entry group from a cart due to no entry group with such number in the cart.
      static java.lang.String LOW_STOCK
      Indicates a failure to add the requested number of items to cart due to low stock.
      static java.lang.String MAX_ORDER_QUANTITY_EXCEEDED
      Indicates a failure to add the requested number of items to cart due to max order quantity exceeded.
      static java.lang.String MOVED_FROM_POS_TO_STORE
      Indicates a failure to add the requested number of items to cart due to no stock in point of service.
      static java.lang.String NO_STOCK
      Indicates a failure to add the requested number of items to cart due to no stock.
      static java.lang.String SUCCESS
      Indicates a successful modification of the cart
      static java.lang.String SUCCESSFULLY_REMOVED
      Indicates a successful removing the requested entry group from a cart.
      static java.lang.String UNAVAILABLE
      Indicates a failure to add the requested number of items to cart due to product unavailability (approval, online dates etc).
    • Field Detail

      • SUCCESS

        static final java.lang.String SUCCESS
        Indicates a successful modification of the cart
        See Also:
        Constant Field Values
      • LOW_STOCK

        static final java.lang.String LOW_STOCK
        Indicates a failure to add the requested number of items to cart due to low stock.
        See Also:
        Constant Field Values
      • NO_STOCK

        static final java.lang.String NO_STOCK
        Indicates a failure to add the requested number of items to cart due to no stock.
        See Also:
        Constant Field Values
      • MAX_ORDER_QUANTITY_EXCEEDED

        static final java.lang.String MAX_ORDER_QUANTITY_EXCEEDED
        Indicates a failure to add the requested number of items to cart due to max order quantity exceeded.
        See Also:
        Constant Field Values
      • MOVED_FROM_POS_TO_STORE

        static final java.lang.String MOVED_FROM_POS_TO_STORE
        Indicates a failure to add the requested number of items to cart due to no stock in point of service.
        See Also:
        Constant Field Values
      • UNAVAILABLE

        static final java.lang.String UNAVAILABLE
        Indicates a failure to add the requested number of items to cart due to product unavailability (approval, online dates etc).
        See Also:
        Constant Field Values
      • CONFIGURATION_ERROR

        static final java.lang.String CONFIGURATION_ERROR
        Indicates a problem with product configuration (i.e. incorrect text field value).
        See Also:
        Constant Field Values
      • ENTRY_GROUP_ERROR

        static final java.lang.String ENTRY_GROUP_ERROR
        Indicates a problem with entryGroup configuration (i.e. not enough products).
        See Also:
        Constant Field Values
      • INVALID_ENTRY_GROUP_NUMBER

        static final java.lang.String INVALID_ENTRY_GROUP_NUMBER
        Indicates a failure to remove the requested entry group from a cart due to no entry group with such number in the cart.
        See Also:
        Constant Field Values
      • SUCCESSFULLY_REMOVED

        static final java.lang.String SUCCESSFULLY_REMOVED
        Indicates a successful removing the requested entry group from a cart.
        See Also:
        Constant Field Values