summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica1/jaxws/DERMSInterface.java
blob: cdb40f42a14b3655cd1a91569029752abe13555e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
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);

}