001    
002    package org.apache.servicemix.wsn.jaxws;
003    
004    import javax.jws.WebService;
005    import org.oasis_open.docs.wsn.b_2.DestroyPullPointResponse;
006    import org.oasis_open.docs.wsn.b_2.GetMessagesResponse;
007    
008    @WebService(serviceName = "PullPointService", targetNamespace = "http://servicemix.apache.org/wsn/jaxws", endpointInterface = "org.apache.servicemix.wsn.jaxws.PullPoint")
009    public class PullPointServiceImpl
010        implements PullPoint
011    {
012    
013    
014        public void notify(org.oasis_open.docs.wsn.b_2.Notify Notify) {
015            throw new UnsupportedOperationException();
016        }
017    
018        public DestroyPullPointResponse destroyPullPoint(org.oasis_open.docs.wsn.b_2.DestroyPullPoint DestroyPullPoint)
019            throws ResourceUnknownFault, UnableToDestroyPullPointFault
020        {
021            throw new UnsupportedOperationException();
022        }
023    
024        public GetMessagesResponse getMessages(org.oasis_open.docs.wsn.b_2.GetMessages GetMessages)
025            throws ResourceUnknownFault, UnableToGetMessagesFault
026        {
027            throw new UnsupportedOperationException();
028        }
029    
030    }