1
2 package org.oasis_open.docs.wsn.brw_2;
3
4 import javax.jws.WebMethod;
5 import javax.jws.WebParam;
6 import javax.jws.WebResult;
7 import javax.jws.WebService;
8 import javax.jws.soap.SOAPBinding;
9 import javax.xml.bind.annotation.XmlSeeAlso;
10 import org.oasis_open.docs.wsn.b_2.CreatePullPointResponse;
11
12
13
14
15
16
17
18
19 @WebService(name = "CreatePullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/bw-2")
20 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
21 @XmlSeeAlso({
22 org.oasis_open.docs.wsn.b_2.ObjectFactory.class,
23 org.oasis_open.docs.wsn.t_1.ObjectFactory.class,
24 org.oasis_open.docs.wsrf.r_2.ObjectFactory.class,
25 org.oasis_open.docs.wsn.br_2.ObjectFactory.class,
26 org.oasis_open.docs.wsrf.bf_2.ObjectFactory.class
27 })
28 public interface CreatePullPoint {
29
30
31
32
33
34
35
36
37
38 @WebMethod(operationName = "CreatePullPoint", action = "CreatePullPoint")
39 @WebResult(name = "CreatePullPointResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "CreatePullPointResponse")
40 public CreatePullPointResponse createPullPoint(
41 @WebParam(name = "CreatePullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "CreatePullPointRequest")
42 org.oasis_open.docs.wsn.b_2.CreatePullPoint createPullPointRequest)
43 throws UnableToCreatePullPointFault
44 ;
45
46 }