package org.jboss.examples.creditagency; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CreditCheckType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CreditCheckType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="customer" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlRootElement(name="CreditCheckRequest") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreditCheckType") public class CreditCheckType { @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "customer") protected String customer; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the customer property. * * @return * possible object is * {@link String } * */ public String getCustomer() { return customer; } /** * Sets the value of the customer property. * * @param value * allowed object is * {@link String } * */ public void setCustomer(String value) { this.customer = value; } }