com.restfully.shop.domain
Class Order
java.lang.Object
com.restfully.shop.domain.Order
public class Order
- extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
Constructor Summary |
Order()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
id
protected int id
cancelled
protected boolean cancelled
lineItems
protected List<LineItem> lineItems
total
protected String total
date
protected String date
customer
protected Customer customer
Order
public Order()
getId
public int getId()
setId
public void setId(int id)
isCancelled
public boolean isCancelled()
setCancelled
public void setCancelled(boolean cancelled)
getLineItems
public List<LineItem> getLineItems()
setLineItems
public void setLineItems(List<LineItem> lineItems)
getDate
public String getDate()
setDate
public void setDate(String date)
getTotal
public String getTotal()
setTotal
public void setTotal(String total)
getCustomer
public Customer getCustomer()
setCustomer
public void setCustomer(Customer customer)
Copyright © 2011. All Rights Reserved.