Package org.somda.sdc.dpws.soap
Interface NotificationSource
-
- All Superinterfaces:
InterceptorHandler
- All Known Implementing Classes:
NotificationSourceImpl
public interface NotificationSource extends InterceptorHandler
Interface to send notifications to event sinks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsendNotification(SoapMessage notification)Sends a SOAP notification message.-
Methods inherited from interface org.somda.sdc.dpws.soap.interception.InterceptorHandler
register
-
-
-
-
Method Detail
-
sendNotification
void sendNotification(SoapMessage notification) throws MarshallingException, TransportException, InterceptorException
Sends a SOAP notification message.This method returns as soon as the message left the application process.
- Parameters:
notification- outgoing notification message.- Throws:
TransportException- if any transport-related exception comes up during processing. This will hinder the response from being sent.MarshallingException- if any exception occurs during marshalling or unmarshalling of SOAP messages.InterceptorException- if one of the interceptors pops up with an error.
-
-