Interface OrderAttribute

All Superinterfaces:
org.broadleafcommerce.common.copy.MultiTenantCloneable<OrderAttribute>, Serializable
All Known Implementing Classes:
OrderAttributeImpl

public interface OrderAttribute extends Serializable, org.broadleafcommerce.common.copy.MultiTenantCloneable<OrderAttribute>
The Interface OrderAttribute. Allows for arbitrary data to be persisted with the order.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the id.
    Gets the name.
    Gets the associated order.
    Gets the value.
    void
    setId(Long id)
    Sets the id.
    void
    Sets the name.
    void
    setOrder(Order order)
    Sets the order.
    void
    Sets the value.

    Methods inherited from interface org.broadleafcommerce.common.copy.MultiTenantCloneable

    createOrRetrieveCopyInstance
  • Method Details

    • getId

      Long getId()
      Gets the id.
      Returns:
      the id
    • setId

      void setId(Long id)
      Sets the id.
      Parameters:
      id - the new id
    • getValue

      String getValue()
      Gets the value.
      Returns:
      the value
    • setValue

      void setValue(String value)
      Sets the value.
      Parameters:
      value - the new value
    • getOrder

      Order getOrder()
      Gets the associated order.
      Returns:
      the order
    • setOrder

      void setOrder(Order order)
      Sets the order.
      Parameters:
      order - the associated order
    • getName

      String getName()
      Gets the name.
      Returns:
      the name
    • setName

      void setName(String name)
      Sets the name.
      Parameters:
      name - the new name