1 17 package org.apache.servicemix.sca.bigbank.account; 18 19 import javax.xml.bind.annotation.XmlAccessType; 20 import javax.xml.bind.annotation.XmlAccessorType; 21 import javax.xml.bind.annotation.XmlElement; 22 import javax.xml.bind.annotation.XmlRootElement; 23 import javax.xml.bind.annotation.XmlType; 24 25 @XmlAccessorType(XmlAccessType.FIELD) 26 @XmlType(name = "", propOrder = { "customerID" }) 27 @XmlRootElement(name = "AccountReportRequest") 28 public class AccountReportRequest { 29 30 @XmlElement(name = "CustomerID") 31 private String customerID; 32 33 public String getCustomerID() { 34 return customerID; 35 } 36 37 public void setCustomerID(String customerID) { 38 this.customerID = customerID; 39 } 40 41 } 42 | Popular Tags |