summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica1/jaxws
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/derms/replica1/jaxws')
-rw-r--r--src/main/java/derms/replica1/jaxws/AddResource.classbin0 -> 1011 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/AddResource.java106
-rw-r--r--src/main/java/derms/replica1/jaxws/AddResourceResponse.classbin0 -> 760 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/AddResourceResponse.java62
-rw-r--r--src/main/java/derms/replica1/jaxws/DERMSInterface.classbin0 -> 3941 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/DERMSInterface.java166
-rw-r--r--src/main/java/derms/replica1/jaxws/DERMSServerService.classbin0 -> 2339 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/DERMSServerService.java94
-rw-r--r--src/main/java/derms/replica1/jaxws/FindResource.classbin0 -> 855 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/FindResource.java87
-rw-r--r--src/main/java/derms/replica1/jaxws/FindResourceResponse.classbin0 -> 864 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/FindResourceResponse.java69
-rw-r--r--src/main/java/derms/replica1/jaxws/ListResourceAvailability.classbin0 -> 725 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/ListResourceAvailability.java60
-rw-r--r--src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.classbin0 -> 900 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.java69
-rw-r--r--src/main/java/derms/replica1/jaxws/ObjectFactory.classbin0 -> 8195 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/ObjectFactory.java287
-rw-r--r--src/main/java/derms/replica1/jaxws/RemoveResource.classbin0 -> 857 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/RemoveResource.java79
-rw-r--r--src/main/java/derms/replica1/jaxws/RemoveResourceResponse.classbin0 -> 769 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/RemoveResourceResponse.java62
-rw-r--r--src/main/java/derms/replica1/jaxws/RequestResource.classbin0 -> 1026 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/RequestResource.java106
-rw-r--r--src/main/java/derms/replica1/jaxws/RequestResourceResponse.classbin0 -> 772 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/RequestResourceResponse.java62
-rw-r--r--src/main/java/derms/replica1/jaxws/ReturnResource.classbin0 -> 855 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/ReturnResource.java87
-rw-r--r--src/main/java/derms/replica1/jaxws/ReturnResourceResponse.classbin0 -> 769 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/ReturnResourceResponse.java62
-rw-r--r--src/main/java/derms/replica1/jaxws/SwapResource.classbin0 -> 1368 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/SwapResource.java168
-rw-r--r--src/main/java/derms/replica1/jaxws/SwapResourceResponse.classbin0 -> 763 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/SwapResourceResponse.java62
-rw-r--r--src/main/java/derms/replica1/jaxws/package-info.classbin0 -> 248 bytes
-rw-r--r--src/main/java/derms/replica1/jaxws/package-info.java2
36 files changed, 1690 insertions, 0 deletions
diff --git a/src/main/java/derms/replica1/jaxws/AddResource.class b/src/main/java/derms/replica1/jaxws/AddResource.class
new file mode 100644
index 0000000..7e57641
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/AddResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/AddResource.java b/src/main/java/derms/replica1/jaxws/AddResource.java
new file mode 100644
index 0000000..d768458
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/AddResource.java
@@ -0,0 +1,106 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for addResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="addResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="resourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="resourceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "addResource", propOrder = {
+ "resourceID",
+ "resourceName",
+ "duration"
+})
+public class AddResource {
+
+ protected String resourceID;
+ protected String resourceName;
+ protected int duration;
+
+ /**
+ * 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;
+ }
+
+ /**
+ * Gets the value of the resourceName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getResourceName() {
+ return resourceName;
+ }
+
+ /**
+ * Sets the value of the resourceName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setResourceName(String value) {
+ this.resourceName = value;
+ }
+
+ /**
+ * Gets the value of the duration property.
+ *
+ */
+ public int getDuration() {
+ return duration;
+ }
+
+ /**
+ * Sets the value of the duration property.
+ *
+ */
+ public void setDuration(int value) {
+ this.duration = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/AddResourceResponse.class b/src/main/java/derms/replica1/jaxws/AddResourceResponse.class
new file mode 100644
index 0000000..1744e33
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/AddResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/AddResourceResponse.java b/src/main/java/derms/replica1/jaxws/AddResourceResponse.java
new file mode 100644
index 0000000..cff0c84
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/AddResourceResponse.java
@@ -0,0 +1,62 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for addResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="addResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "addResourceResponse", propOrder = {
+ "_return"
+})
+public class AddResourceResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/DERMSInterface.class b/src/main/java/derms/replica1/jaxws/DERMSInterface.class
new file mode 100644
index 0000000..ac825cb
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/DERMSInterface.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/DERMSInterface.java b/src/main/java/derms/replica1/jaxws/DERMSInterface.java
new file mode 100644
index 0000000..cdb40f4
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/DERMSInterface.java
@@ -0,0 +1,166 @@
+
+package derms.replica1.jaxws;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Action;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.9-b130926.1035
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "DERMSInterface", targetNamespace = "http://replica1.derms/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface DERMSInterface {
+
+
+ /**
+ *
+ * @param duration
+ * @param resourceID
+ * @param resourceName
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "addResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.AddResource")
+ @ResponseWrapper(localName = "addResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.AddResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/addResourceRequest", output = "http://replica1.derms/DERMSInterface/addResourceResponse")
+ public String addResource(
+ @WebParam(name = "resourceID", targetNamespace = "")
+ String resourceID,
+ @WebParam(name = "resourceName", targetNamespace = "")
+ String resourceName,
+ @WebParam(name = "duration", targetNamespace = "")
+ int duration);
+
+ /**
+ *
+ * @param duration
+ * @param resourceID
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "removeResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.RemoveResource")
+ @ResponseWrapper(localName = "removeResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.RemoveResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/removeResourceRequest", output = "http://replica1.derms/DERMSInterface/removeResourceResponse")
+ public String removeResource(
+ @WebParam(name = "resourceID", targetNamespace = "")
+ String resourceID,
+ @WebParam(name = "duration", targetNamespace = "")
+ int duration);
+
+ /**
+ *
+ * @param resourceName
+ * @return
+ * returns java.util.List<java.lang.String>
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "listResourceAvailability", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.ListResourceAvailability")
+ @ResponseWrapper(localName = "listResourceAvailabilityResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.ListResourceAvailabilityResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/listResourceAvailabilityRequest", output = "http://replica1.derms/DERMSInterface/listResourceAvailabilityResponse")
+ public List<String> listResourceAvailability(
+ @WebParam(name = "resourceName", targetNamespace = "")
+ String resourceName);
+
+ /**
+ *
+ * @param duration
+ * @param resourceID
+ * @param coordinatorID
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "requestResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.RequestResource")
+ @ResponseWrapper(localName = "requestResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.RequestResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/requestResourceRequest", output = "http://replica1.derms/DERMSInterface/requestResourceResponse")
+ public String requestResource(
+ @WebParam(name = "coordinatorID", targetNamespace = "")
+ String coordinatorID,
+ @WebParam(name = "resourceID", targetNamespace = "")
+ String resourceID,
+ @WebParam(name = "duration", targetNamespace = "")
+ int duration);
+
+ /**
+ *
+ * @param resourceID
+ * @param coordinatorID
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "returnResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.ReturnResource")
+ @ResponseWrapper(localName = "returnResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.ReturnResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/returnResourceRequest", output = "http://replica1.derms/DERMSInterface/returnResourceResponse")
+ public String returnResource(
+ @WebParam(name = "coordinatorID", targetNamespace = "")
+ String coordinatorID,
+ @WebParam(name = "resourceID", targetNamespace = "")
+ String resourceID);
+
+ /**
+ *
+ * @param oldResourceID
+ * @param newResourceID
+ * @param coordinatorID
+ * @param oldResourceType
+ * @param newResourceType
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "swapResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.SwapResource")
+ @ResponseWrapper(localName = "swapResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.SwapResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/swapResourceRequest", output = "http://replica1.derms/DERMSInterface/swapResourceResponse")
+ public String swapResource(
+ @WebParam(name = "coordinatorID", targetNamespace = "")
+ String coordinatorID,
+ @WebParam(name = "oldResourceID", targetNamespace = "")
+ String oldResourceID,
+ @WebParam(name = "oldResourceType", targetNamespace = "")
+ String oldResourceType,
+ @WebParam(name = "newResourceID", targetNamespace = "")
+ String newResourceID,
+ @WebParam(name = "newResourceType", targetNamespace = "")
+ String newResourceType);
+
+ /**
+ *
+ * @param coordinatorID
+ * @param resourceName
+ * @return
+ * returns java.util.List<java.lang.String>
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "findResource", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.FindResource")
+ @ResponseWrapper(localName = "findResourceResponse", targetNamespace = "http://replica1.derms/", className = "derms.replica1.jaxws.FindResourceResponse")
+ @Action(input = "http://replica1.derms/DERMSInterface/findResourceRequest", output = "http://replica1.derms/DERMSInterface/findResourceResponse")
+ public List<String> findResource(
+ @WebParam(name = "coordinatorID", targetNamespace = "")
+ String coordinatorID,
+ @WebParam(name = "resourceName", targetNamespace = "")
+ String resourceName);
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/DERMSServerService.class b/src/main/java/derms/replica1/jaxws/DERMSServerService.class
new file mode 100644
index 0000000..5896bfb
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/DERMSServerService.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/DERMSServerService.java b/src/main/java/derms/replica1/jaxws/DERMSServerService.java
new file mode 100644
index 0000000..2343bdf
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/DERMSServerService.java
@@ -0,0 +1,94 @@
+
+package derms.replica1.jaxws;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.9-b130926.1035
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "DERMSServerService", targetNamespace = "http://replica1.derms/", wsdlLocation = "http://localhost:8387/ws/derms?wsdl")
+public class DERMSServerService
+ extends Service
+{
+
+ private final static URL DERMSSERVERSERVICE_WSDL_LOCATION;
+ private final static WebServiceException DERMSSERVERSERVICE_EXCEPTION;
+ private final static QName DERMSSERVERSERVICE_QNAME = new QName("http://replica1.derms/", "DERMSServerService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("http://localhost:8387/ws/derms?wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ DERMSSERVERSERVICE_WSDL_LOCATION = url;
+ DERMSSERVERSERVICE_EXCEPTION = e;
+ }
+
+ public DERMSServerService() {
+ super(__getWsdlLocation(), DERMSSERVERSERVICE_QNAME);
+ }
+
+ public DERMSServerService(WebServiceFeature... features) {
+ super(__getWsdlLocation(), DERMSSERVERSERVICE_QNAME, features);
+ }
+
+ public DERMSServerService(URL wsdlLocation) {
+ super(wsdlLocation, DERMSSERVERSERVICE_QNAME);
+ }
+
+ public DERMSServerService(URL wsdlLocation, WebServiceFeature... features) {
+ super(wsdlLocation, DERMSSERVERSERVICE_QNAME, features);
+ }
+
+ public DERMSServerService(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public DERMSServerService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+ super(wsdlLocation, serviceName, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns DERMSInterface
+ */
+ @WebEndpoint(name = "DERMSServerPort")
+ public DERMSInterface getDERMSServerPort() {
+ return super.getPort(new QName("http://replica1.derms/", "DERMSServerPort"), DERMSInterface.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
+ * @return
+ * returns DERMSInterface
+ */
+ @WebEndpoint(name = "DERMSServerPort")
+ public DERMSInterface getDERMSServerPort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://replica1.derms/", "DERMSServerPort"), DERMSInterface.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (DERMSSERVERSERVICE_EXCEPTION!= null) {
+ throw DERMSSERVERSERVICE_EXCEPTION;
+ }
+ return DERMSSERVERSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/FindResource.class b/src/main/java/derms/replica1/jaxws/FindResource.class
new file mode 100644
index 0000000..73c6cf2
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/FindResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/FindResource.java b/src/main/java/derms/replica1/jaxws/FindResource.java
new file mode 100644
index 0000000..f5751b6
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/FindResource.java
@@ -0,0 +1,87 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for findResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="findResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="coordinatorID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="resourceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "findResource", propOrder = {
+ "coordinatorID",
+ "resourceName"
+})
+public class FindResource {
+
+ protected String coordinatorID;
+ protected String resourceName;
+
+ /**
+ * 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 resourceName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getResourceName() {
+ return resourceName;
+ }
+
+ /**
+ * Sets the value of the resourceName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setResourceName(String value) {
+ this.resourceName = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/FindResourceResponse.class b/src/main/java/derms/replica1/jaxws/FindResourceResponse.class
new file mode 100644
index 0000000..374b089
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/FindResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/FindResourceResponse.java b/src/main/java/derms/replica1/jaxws/FindResourceResponse.java
new file mode 100644
index 0000000..93c22f6
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/FindResourceResponse.java
@@ -0,0 +1,69 @@
+
+package derms.replica1.jaxws;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for findResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="findResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "findResourceResponse", propOrder = {
+ "_return"
+})
+public class FindResourceResponse {
+
+ @XmlElement(name = "return")
+ protected List<String> _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the return property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getReturn().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List<String> getReturn() {
+ if (_return == null) {
+ _return = new ArrayList<String>();
+ }
+ return this._return;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/ListResourceAvailability.class b/src/main/java/derms/replica1/jaxws/ListResourceAvailability.class
new file mode 100644
index 0000000..7e46386
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ListResourceAvailability.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/ListResourceAvailability.java b/src/main/java/derms/replica1/jaxws/ListResourceAvailability.java
new file mode 100644
index 0000000..638e6bd
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ListResourceAvailability.java
@@ -0,0 +1,60 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for listResourceAvailability complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="listResourceAvailability">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="resourceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listResourceAvailability", propOrder = {
+ "resourceName"
+})
+public class ListResourceAvailability {
+
+ protected String resourceName;
+
+ /**
+ * Gets the value of the resourceName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getResourceName() {
+ return resourceName;
+ }
+
+ /**
+ * Sets the value of the resourceName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setResourceName(String value) {
+ this.resourceName = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.class b/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.class
new file mode 100644
index 0000000..65f9d9b
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.java b/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.java
new file mode 100644
index 0000000..1653071
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ListResourceAvailabilityResponse.java
@@ -0,0 +1,69 @@
+
+package derms.replica1.jaxws;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for listResourceAvailabilityResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="listResourceAvailabilityResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listResourceAvailabilityResponse", propOrder = {
+ "_return"
+})
+public class ListResourceAvailabilityResponse {
+
+ @XmlElement(name = "return")
+ protected List<String> _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the return property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getReturn().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List<String> getReturn() {
+ if (_return == null) {
+ _return = new ArrayList<String>();
+ }
+ return this._return;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/ObjectFactory.class b/src/main/java/derms/replica1/jaxws/ObjectFactory.class
new file mode 100644
index 0000000..11aa84e
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ObjectFactory.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/ObjectFactory.java b/src/main/java/derms/replica1/jaxws/ObjectFactory.java
new file mode 100644
index 0000000..35e35e7
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ObjectFactory.java
@@ -0,0 +1,287 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the derms.replica1.jaxws package.
+ * <p>An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _RemoveResourceResponse_QNAME = new QName("http://replica1.derms/", "removeResourceResponse");
+ private final static QName _SwapResourceResponse_QNAME = new QName("http://replica1.derms/", "swapResourceResponse");
+ private final static QName _AddResource_QNAME = new QName("http://replica1.derms/", "addResource");
+ private final static QName _ReturnResourceResponse_QNAME = new QName("http://replica1.derms/", "returnResourceResponse");
+ private final static QName _RequestResourceResponse_QNAME = new QName("http://replica1.derms/", "requestResourceResponse");
+ private final static QName _ListResourceAvailability_QNAME = new QName("http://replica1.derms/", "listResourceAvailability");
+ private final static QName _RemoveResource_QNAME = new QName("http://replica1.derms/", "removeResource");
+ private final static QName _AddResourceResponse_QNAME = new QName("http://replica1.derms/", "addResourceResponse");
+ private final static QName _FindResourceResponse_QNAME = new QName("http://replica1.derms/", "findResourceResponse");
+ private final static QName _SwapResource_QNAME = new QName("http://replica1.derms/", "swapResource");
+ private final static QName _ListResourceAvailabilityResponse_QNAME = new QName("http://replica1.derms/", "listResourceAvailabilityResponse");
+ private final static QName _FindResource_QNAME = new QName("http://replica1.derms/", "findResource");
+ private final static QName _ReturnResource_QNAME = new QName("http://replica1.derms/", "returnResource");
+ private final static QName _RequestResource_QNAME = new QName("http://replica1.derms/", "requestResource");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: derms.replica1.jaxws
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link RequestResource }
+ *
+ */
+ public RequestResource createRequestResource() {
+ return new RequestResource();
+ }
+
+ /**
+ * Create an instance of {@link FindResource }
+ *
+ */
+ public FindResource createFindResource() {
+ return new FindResource();
+ }
+
+ /**
+ * Create an instance of {@link ReturnResource }
+ *
+ */
+ public ReturnResource createReturnResource() {
+ return new ReturnResource();
+ }
+
+ /**
+ * Create an instance of {@link ListResourceAvailabilityResponse }
+ *
+ */
+ public ListResourceAvailabilityResponse createListResourceAvailabilityResponse() {
+ return new ListResourceAvailabilityResponse();
+ }
+
+ /**
+ * Create an instance of {@link SwapResource }
+ *
+ */
+ public SwapResource createSwapResource() {
+ return new SwapResource();
+ }
+
+ /**
+ * Create an instance of {@link FindResourceResponse }
+ *
+ */
+ public FindResourceResponse createFindResourceResponse() {
+ return new FindResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link RemoveResource }
+ *
+ */
+ public RemoveResource createRemoveResource() {
+ return new RemoveResource();
+ }
+
+ /**
+ * Create an instance of {@link AddResourceResponse }
+ *
+ */
+ public AddResourceResponse createAddResourceResponse() {
+ return new AddResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link ListResourceAvailability }
+ *
+ */
+ public ListResourceAvailability createListResourceAvailability() {
+ return new ListResourceAvailability();
+ }
+
+ /**
+ * Create an instance of {@link AddResource }
+ *
+ */
+ public AddResource createAddResource() {
+ return new AddResource();
+ }
+
+ /**
+ * Create an instance of {@link ReturnResourceResponse }
+ *
+ */
+ public ReturnResourceResponse createReturnResourceResponse() {
+ return new ReturnResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link RequestResourceResponse }
+ *
+ */
+ public RequestResourceResponse createRequestResourceResponse() {
+ return new RequestResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link SwapResourceResponse }
+ *
+ */
+ public SwapResourceResponse createSwapResourceResponse() {
+ return new SwapResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link RemoveResourceResponse }
+ *
+ */
+ public RemoveResourceResponse createRemoveResourceResponse() {
+ return new RemoveResourceResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link RemoveResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "removeResourceResponse")
+ public JAXBElement<RemoveResourceResponse> createRemoveResourceResponse(RemoveResourceResponse value) {
+ return new JAXBElement<RemoveResourceResponse>(_RemoveResourceResponse_QNAME, RemoveResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link SwapResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "swapResourceResponse")
+ public JAXBElement<SwapResourceResponse> createSwapResourceResponse(SwapResourceResponse value) {
+ return new JAXBElement<SwapResourceResponse>(_SwapResourceResponse_QNAME, SwapResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link AddResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "addResource")
+ public JAXBElement<AddResource> createAddResource(AddResource value) {
+ return new JAXBElement<AddResource>(_AddResource_QNAME, AddResource.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ReturnResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "returnResourceResponse")
+ public JAXBElement<ReturnResourceResponse> createReturnResourceResponse(ReturnResourceResponse value) {
+ return new JAXBElement<ReturnResourceResponse>(_ReturnResourceResponse_QNAME, ReturnResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link RequestResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "requestResourceResponse")
+ public JAXBElement<RequestResourceResponse> createRequestResourceResponse(RequestResourceResponse value) {
+ return new JAXBElement<RequestResourceResponse>(_RequestResourceResponse_QNAME, RequestResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ListResourceAvailability }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "listResourceAvailability")
+ public JAXBElement<ListResourceAvailability> createListResourceAvailability(ListResourceAvailability value) {
+ return new JAXBElement<ListResourceAvailability>(_ListResourceAvailability_QNAME, ListResourceAvailability.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link RemoveResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "removeResource")
+ public JAXBElement<RemoveResource> createRemoveResource(RemoveResource value) {
+ return new JAXBElement<RemoveResource>(_RemoveResource_QNAME, RemoveResource.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link AddResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "addResourceResponse")
+ public JAXBElement<AddResourceResponse> createAddResourceResponse(AddResourceResponse value) {
+ return new JAXBElement<AddResourceResponse>(_AddResourceResponse_QNAME, AddResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FindResourceResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "findResourceResponse")
+ public JAXBElement<FindResourceResponse> createFindResourceResponse(FindResourceResponse value) {
+ return new JAXBElement<FindResourceResponse>(_FindResourceResponse_QNAME, FindResourceResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link SwapResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "swapResource")
+ public JAXBElement<SwapResource> createSwapResource(SwapResource value) {
+ return new JAXBElement<SwapResource>(_SwapResource_QNAME, SwapResource.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ListResourceAvailabilityResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "listResourceAvailabilityResponse")
+ public JAXBElement<ListResourceAvailabilityResponse> createListResourceAvailabilityResponse(ListResourceAvailabilityResponse value) {
+ return new JAXBElement<ListResourceAvailabilityResponse>(_ListResourceAvailabilityResponse_QNAME, ListResourceAvailabilityResponse.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link FindResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "findResource")
+ public JAXBElement<FindResource> createFindResource(FindResource value) {
+ return new JAXBElement<FindResource>(_FindResource_QNAME, FindResource.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ReturnResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "returnResource")
+ public JAXBElement<ReturnResource> createReturnResource(ReturnResource value) {
+ return new JAXBElement<ReturnResource>(_ReturnResource_QNAME, ReturnResource.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link RequestResource }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://replica1.derms/", name = "requestResource")
+ public JAXBElement<RequestResource> createRequestResource(RequestResource value) {
+ return new JAXBElement<RequestResource>(_RequestResource_QNAME, RequestResource.class, null, value);
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/RemoveResource.class b/src/main/java/derms/replica1/jaxws/RemoveResource.class
new file mode 100644
index 0000000..9d88d4f
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RemoveResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/RemoveResource.java b/src/main/java/derms/replica1/jaxws/RemoveResource.java
new file mode 100644
index 0000000..95a0798
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RemoveResource.java
@@ -0,0 +1,79 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for removeResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="removeResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="resourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "removeResource", propOrder = {
+ "resourceID",
+ "duration"
+})
+public class RemoveResource {
+
+ protected String resourceID;
+ protected int duration;
+
+ /**
+ * 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;
+ }
+
+ /**
+ * Gets the value of the duration property.
+ *
+ */
+ public int getDuration() {
+ return duration;
+ }
+
+ /**
+ * Sets the value of the duration property.
+ *
+ */
+ public void setDuration(int value) {
+ this.duration = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.class b/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.class
new file mode 100644
index 0000000..054300e
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.java b/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.java
new file mode 100644
index 0000000..b7f038e
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RemoveResourceResponse.java
@@ -0,0 +1,62 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for removeResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="removeResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "removeResourceResponse", propOrder = {
+ "_return"
+})
+public class RemoveResourceResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/RequestResource.class b/src/main/java/derms/replica1/jaxws/RequestResource.class
new file mode 100644
index 0000000..eedd065
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RequestResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/RequestResource.java b/src/main/java/derms/replica1/jaxws/RequestResource.java
new file mode 100644
index 0000000..19f2ea7
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RequestResource.java
@@ -0,0 +1,106 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for requestResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="requestResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="coordinatorID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="resourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "requestResource", propOrder = {
+ "coordinatorID",
+ "resourceID",
+ "duration"
+})
+public class RequestResource {
+
+ protected String coordinatorID;
+ protected String resourceID;
+ protected int duration;
+
+ /**
+ * 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;
+ }
+
+ /**
+ * Gets the value of the duration property.
+ *
+ */
+ public int getDuration() {
+ return duration;
+ }
+
+ /**
+ * Sets the value of the duration property.
+ *
+ */
+ public void setDuration(int value) {
+ this.duration = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/RequestResourceResponse.class b/src/main/java/derms/replica1/jaxws/RequestResourceResponse.class
new file mode 100644
index 0000000..ebfa3a3
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RequestResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/RequestResourceResponse.java b/src/main/java/derms/replica1/jaxws/RequestResourceResponse.java
new file mode 100644
index 0000000..035214b
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/RequestResourceResponse.java
@@ -0,0 +1,62 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for requestResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="requestResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "requestResourceResponse", propOrder = {
+ "_return"
+})
+public class RequestResourceResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/ReturnResource.class b/src/main/java/derms/replica1/jaxws/ReturnResource.class
new file mode 100644
index 0000000..fee143d
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ReturnResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/ReturnResource.java b/src/main/java/derms/replica1/jaxws/ReturnResource.java
new file mode 100644
index 0000000..577bee1
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ReturnResource.java
@@ -0,0 +1,87 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for returnResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="returnResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="coordinatorID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="resourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@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;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.class b/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.class
new file mode 100644
index 0000000..f07c35e
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.java b/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.java
new file mode 100644
index 0000000..3272536
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/ReturnResourceResponse.java
@@ -0,0 +1,62 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for returnResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="returnResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "returnResourceResponse", propOrder = {
+ "_return"
+})
+public class ReturnResourceResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/SwapResource.class b/src/main/java/derms/replica1/jaxws/SwapResource.class
new file mode 100644
index 0000000..4523489
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/SwapResource.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/SwapResource.java b/src/main/java/derms/replica1/jaxws/SwapResource.java
new file mode 100644
index 0000000..e61f8f7
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/SwapResource.java
@@ -0,0 +1,168 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for swapResource complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="swapResource">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="coordinatorID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="oldResourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="oldResourceType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="newResourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="newResourceType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "swapResource", propOrder = {
+ "coordinatorID",
+ "oldResourceID",
+ "oldResourceType",
+ "newResourceID",
+ "newResourceType"
+})
+public class SwapResource {
+
+ protected String coordinatorID;
+ protected String oldResourceID;
+ protected String oldResourceType;
+ protected String newResourceID;
+ protected String newResourceType;
+
+ /**
+ * 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 oldResourceID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOldResourceID() {
+ return oldResourceID;
+ }
+
+ /**
+ * Sets the value of the oldResourceID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOldResourceID(String value) {
+ this.oldResourceID = value;
+ }
+
+ /**
+ * Gets the value of the oldResourceType property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOldResourceType() {
+ return oldResourceType;
+ }
+
+ /**
+ * Sets the value of the oldResourceType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOldResourceType(String value) {
+ this.oldResourceType = value;
+ }
+
+ /**
+ * Gets the value of the newResourceID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNewResourceID() {
+ return newResourceID;
+ }
+
+ /**
+ * Sets the value of the newResourceID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNewResourceID(String value) {
+ this.newResourceID = value;
+ }
+
+ /**
+ * Gets the value of the newResourceType property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNewResourceType() {
+ return newResourceType;
+ }
+
+ /**
+ * Sets the value of the newResourceType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNewResourceType(String value) {
+ this.newResourceType = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/SwapResourceResponse.class b/src/main/java/derms/replica1/jaxws/SwapResourceResponse.class
new file mode 100644
index 0000000..036f232
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/SwapResourceResponse.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/SwapResourceResponse.java b/src/main/java/derms/replica1/jaxws/SwapResourceResponse.java
new file mode 100644
index 0000000..5815863
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/SwapResourceResponse.java
@@ -0,0 +1,62 @@
+
+package derms.replica1.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for swapResourceResponse complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="swapResourceResponse">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "swapResourceResponse", propOrder = {
+ "_return"
+})
+public class SwapResourceResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/main/java/derms/replica1/jaxws/package-info.class b/src/main/java/derms/replica1/jaxws/package-info.class
new file mode 100644
index 0000000..e068a5e
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/package-info.class
Binary files differ
diff --git a/src/main/java/derms/replica1/jaxws/package-info.java b/src/main/java/derms/replica1/jaxws/package-info.java
new file mode 100644
index 0000000..59b82f4
--- /dev/null
+++ b/src/main/java/derms/replica1/jaxws/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://replica1.derms/")
+package derms.replica1.jaxws;