001 package org.oasis_open.docs.wsn.brw_2;
002
003 import javax.jws.WebMethod;
004 import javax.jws.WebParam;
005 import javax.jws.WebResult;
006 import javax.jws.WebService;
007 import javax.jws.soap.SOAPBinding;
008 import javax.xml.bind.annotation.XmlSeeAlso;
009
010 /**
011 * This class was generated by Progress FUSE Services Framework 2.2.11-fuse-00-00
012 * Wed Nov 24 09:09:35 GMT 2010
013 * Generated source version: 2.2.11-fuse-00-00
014 *
015 */
016
017 @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/brw-2", name = "PublisherRegistrationManager")
018 @XmlSeeAlso({org.oasis_open.docs.wsn.br_2.ObjectFactory.class, org.oasis_open.docs.wsrf.rp_2.ObjectFactory.class, org.oasis_open.docs.wsrf.bf_2.ObjectFactory.class, org.oasis_open.docs.wsrf.r_2.ObjectFactory.class, org.oasis_open.docs.wsn.t_1.ObjectFactory.class, org.oasis_open.docs.wsn.b_2.ObjectFactory.class})
019 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
020 public interface PublisherRegistrationManager {
021
022 @WebResult(name = "DestroyRegistrationResponse", targetNamespace = "http://docs.oasis-open.org/wsn/br-2", partName = "DestroyRegistrationResponse")
023 @WebMethod(operationName = "DestroyRegistration")
024 public org.oasis_open.docs.wsn.br_2.DestroyRegistrationResponse destroyRegistration(
025 @WebParam(partName = "DestroyRegistrationRequest", name = "DestroyRegistration", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
026 org.oasis_open.docs.wsn.br_2.DestroyRegistration destroyRegistrationRequest
027 ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, ResourceNotDestroyedFault;
028 }