001    
002    package org.apache.servicemix.wsn.jaxws;
003    
004    import javax.jws.WebMethod;
005    import javax.jws.WebParam;
006    import javax.jws.WebResult;
007    import javax.jws.WebService;
008    import javax.jws.soap.SOAPBinding;
009    import org.oasis_open.docs.wsn.br_2.DestroyRegistrationResponse;
010    
011    @WebService(name = "PublisherRegistrationManager", targetNamespace = "http://docs.oasis-open.org/wsn/brw-2")
012    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE)
013    public interface PublisherRegistrationManager {
014    
015    
016        @WebMethod(operationName = "DestroyRegistration", action = "")
017        @WebResult(name = "DestroyRegistrationResponse", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
018        public DestroyRegistrationResponse destroyRegistration(
019            @WebParam(name = "DestroyRegistration", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
020            org.oasis_open.docs.wsn.br_2.DestroyRegistration DestroyRegistration)
021            throws ResourceNotDestroyedFault, ResourceUnknownFault
022        ;
023    
024    }