001
002 package org.apache.servicemix.wsn.jaxws;
003
004 import javax.jws.WebService;
005 import org.oasis_open.docs.wsn.br_2.DestroyRegistrationResponse;
006
007 @WebService(serviceName = "PublisherRegistrationManagerService", targetNamespace = "http://servicemix.apache.org/wsn/jaxws", endpointInterface = "org.apache.servicemix.wsn.jaxws.PublisherRegistrationManager")
008 public class PublisherRegistrationManagerServiceImpl
009 implements PublisherRegistrationManager
010 {
011
012
013 public DestroyRegistrationResponse destroyRegistration(org.oasis_open.docs.wsn.br_2.DestroyRegistration DestroyRegistration)
014 throws ResourceNotDestroyedFault, ResourceUnknownFault
015 {
016 throw new UnsupportedOperationException();
017 }
018
019 }