001
002 package org.apache.servicemix.wsn.jaxws;
003
004 import javax.jws.WebService;
005 import org.oasis_open.docs.wsn.b_2.GetCurrentMessageResponse;
006 import org.oasis_open.docs.wsn.b_2.SubscribeResponse;
007 import org.oasis_open.docs.wsn.br_2.RegisterPublisherResponse;
008
009 @WebService(serviceName = "NotificationBrokerService", targetNamespace = "http://servicemix.apache.org/wsn/jaxws", endpointInterface = "org.apache.servicemix.wsn.jaxws.NotificationBroker")
010 public class NotificationBrokerServiceImpl
011 implements NotificationBroker
012 {
013
014
015 public void notify(org.oasis_open.docs.wsn.b_2.Notify Notify) {
016 throw new UnsupportedOperationException();
017 }
018
019 public RegisterPublisherResponse registerPublisher(org.oasis_open.docs.wsn.br_2.RegisterPublisher RegisterPublisher)
020 throws InvalidTopicExpressionFault, PublisherRegistrationFailedFault, PublisherRegistrationRejectedFault, ResourceUnknownFault, TopicNotSupportedFault, UnacceptableInitialTerminationTimeFault
021 {
022 throw new UnsupportedOperationException();
023 }
024
025 public GetCurrentMessageResponse getCurrentMessage(org.oasis_open.docs.wsn.b_2.GetCurrentMessage GetCurrentMessage)
026 throws InvalidTopicExpressionFault, MultipleTopicsSpecifiedFault, NoCurrentMessageOnTopicFault, ResourceUnknownFault, TopicExpressionDialectUnknownFault, TopicNotSupportedFault
027 {
028 throw new UnsupportedOperationException();
029 }
030
031 public SubscribeResponse subscribe(org.oasis_open.docs.wsn.b_2.Subscribe Subscribe)
032 throws InvalidFilterFault, InvalidMessageContentExpressionFault, InvalidProducerPropertiesExpressionFault, InvalidTopicExpressionFault, NotifyMessageNotSupportedFault, ResourceUnknownFault, SubscribeCreationFailedFault, TopicExpressionDialectUnknownFault, TopicNotSupportedFault, UnacceptableInitialTerminationTimeFault, UnrecognizedPolicyRequestFault, UnsupportedPolicyRequestFault
033 {
034 throw new UnsupportedOperationException();
035 }
036
037 }