Package org.somda.sdc.dpws.soap
Class NotificationSinkImpl
- java.lang.Object
-
- org.somda.sdc.dpws.soap.NotificationSinkImpl
-
- All Implemented Interfaces:
InterceptorHandler,NotificationSink
public class NotificationSinkImpl extends Object implements NotificationSink
Default implementation of NotificationSink.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreceiveNotification(SoapMessage notification, CommunicationContext communicationContext)Starts processing of an incoming SOAP notification message.voidregister(Interceptor interceptor)Registers a callback object.
-
-
-
Method Detail
-
register
public void register(Interceptor interceptor)
Description copied from interface:InterceptorHandlerRegisters a callback object.- Specified by:
registerin interfaceInterceptorHandler- Parameters:
interceptor- an object that possessesMessageInterceptorannotated methods.- See Also:
MessageInterceptor
-
receiveNotification
public void receiveNotification(SoapMessage notification, CommunicationContext communicationContext)
Description copied from interface:NotificationSinkStarts processing of an incoming SOAP notification message.- Specified by:
receiveNotificationin interfaceNotificationSink- Parameters:
notification- incoming request message.communicationContext- transport and application layer information (addresses, security, etc).
-
-