org.broadleafcommerce.core.order.domain
Interface OrderAttribute

All Superinterfaces:
Serializable
All Known Implementing Classes:
OrderAttributeImpl

public interface OrderAttribute
extends Serializable

The Interface OrderAttribute. Allows for arbitrary data to be persisted with the order.


Method Summary
 Long getId()
          Gets the id.
 String getName()
          Gets the name.
 Order getOrder()
          Gets the associated order.
 String getValue()
          Gets the value.
 void setId(Long id)
          Sets the id.
 void setName(String name)
          Sets the name.
 void setOrder(Order order)
          Sets the order.
 void setValue(String value)
          Sets the value.
 

Method Detail

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


Copyright © 2013. All Rights Reserved.