package com.prancingdonkey.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import java.io.Serializable; @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class LineItem implements Serializable { Brew brew; Integer quantity; public Brew getBrew() { return brew; } public void setBrew(Brew brew) { this.brew = brew; } public Integer getQuantity() { return quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } }