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 AlreadyRegisteredFault complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AlreadyRegisteredFault"> * <complexContent> * <extension base="{http://complex.jaxws.ws.test.jboss.org/}RegistrationFault"> * <sequence> * <element name="existingId" type="{http://www.w3.org/2001/XMLSchema}long"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AlreadyRegisteredFault", propOrder = { "existingId" }) public class AlreadyRegisteredFault extends RegistrationFault { protected long existingId; /** * Gets the value of the existingId property. * */ public long getExistingId() { return existingId; } /** * Sets the value of the existingId property. * */ public void setExistingId(long value) { this.existingId = value; } }