001    
002    package org.apache.servicemix.wsn.jaxws;
003    
004    import javax.jws.WebService;
005    
006    @WebService(serviceName = "NotificationConsumerService", targetNamespace = "http://servicemix.apache.org/wsn/jaxws", endpointInterface = "org.apache.servicemix.wsn.jaxws.NotificationConsumer")
007    public class NotificationConsumerServiceImpl
008        implements NotificationConsumer
009    {
010    
011    
012        public void notify(org.oasis_open.docs.wsn.b_2.Notify Notify) {
013            throw new UnsupportedOperationException();
014        }
015    
016    }