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 RegisterForInvoiceResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RegisterForInvoiceResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="done" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RegisterForInvoiceResponse", propOrder = { "done" }) public class RegisterForInvoiceResponse { protected boolean done; /** * Gets the value of the done property. * */ public boolean isDone() { return done; } /** * Sets the value of the done property. * */ public void setDone(boolean value) { this.done = value; } }