package derms.replica1.jaxws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

Java class for returnResource complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="returnResource">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="coordinatorID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="resourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "returnResource", propOrder = { "coordinatorID", "resourceID" }) public class ReturnResource { protected String coordinatorID; protected String resourceID; /** * Gets the value of the coordinatorID property. * * @return * possible object is * {@link String } * */ public String getCoordinatorID() { return coordinatorID; } /** * Sets the value of the coordinatorID property. * * @param value * allowed object is * {@link String } * */ public void setCoordinatorID(String value) { this.coordinatorID = value; } /** * Gets the value of the resourceID property. * * @return * possible object is * {@link String } * */ public String getResourceID() { return resourceID; } /** * Sets the value of the resourceID property. * * @param value * allowed object is * {@link String } * */ public void setResourceID(String value) { this.resourceID = value; } }