1 package com.freemindcafe.apache.cxf.jaxrs.sample9;
3 import javax.xml.bind.annotation.XmlRootElement;
5 @XmlRootElement(name =
"Order")
9 private String itemName;
11 private String customerName;
12 private String shippingAddress;
14 public int getOrderId() {
17 public void setOrderId(
int orderId) {
18 this.orderId = orderId;
20 public String getItemName() {
23 public void setItemName(String itemName) {
24 this.itemName = itemName;
26 public int getQuantity() {
29 public void setQuantity(
int quantity) {
30 this.quantity = quantity;
32 public String getCustomerName() {
35 public void setCustomerName(String customerName) {
36 this.customerName = customerName;
38 public String getShippingAddress() {
39 return shippingAddress;
41 public void setShippingAddress(String shippingAddress) {
42 this.shippingAddress = shippingAddress;