package org.jboss.test.ws.jaxws.benchmark.test.complex.types; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for InvoiceCustomer complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="InvoiceCustomer"> * <complexContent> * <extension base="{http://complex.jaxws.ws.test.jboss.org/}Customer"> * <sequence> * <element name="cycleDay" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvoiceCustomer", namespace = "http://complex.jaxws.ws.test.jboss.org/", propOrder = { "cycleDay" }) public class InvoiceCustomer extends Customer { protected int cycleDay; /** * Gets the value of the cycleDay property. * */ public int getCycleDay() { return cycleDay; } /** * Sets the value of the cycleDay property. * */ public void setCycleDay(int value) { this.cycleDay = value; } }