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.br_2.DestroyRegistration;
11 import org.oasis_open.docs.wsn.br_2.DestroyRegistrationResponse;
12
13
14
15
16
17
18
19
20 @WebService(name = "PublisherRegistrationManager", targetNamespace = "http://docs.oasis-open.org/wsn/brw-2")
21 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
22 @XmlSeeAlso({
23 org.oasis_open.docs.wsn.b_2.ObjectFactory.class,
24 org.oasis_open.docs.wsn.t_1.ObjectFactory.class,
25 org.oasis_open.docs.wsrf.r_2.ObjectFactory.class,
26 org.oasis_open.docs.wsn.br_2.ObjectFactory.class,
27 org.oasis_open.docs.wsrf.bf_2.ObjectFactory.class
28 })
29 public interface PublisherRegistrationManager {
30
31
32
33
34
35
36
37
38
39
40 @WebMethod(operationName = "DestroyRegistration", action = "DestroyRegistration")
41 @WebResult(name = "DestroyRegistrationResponse", targetNamespace = "http://docs.oasis-open.org/wsn/br-2", partName = "DestroyRegistrationResponse")
42 public DestroyRegistrationResponse destroyRegistration(
43 @WebParam(name = "DestroyRegistration", targetNamespace = "http://docs.oasis-open.org/wsn/br-2", partName = "DestroyRegistrationRequest")
44 DestroyRegistration destroyRegistrationRequest)
45 throws ResourceNotDestroyedFault, ResourceUnknownFault
46 ;
47
48 }