Package eu.domibus.connector.client
Interface DomibusConnectorDeliveryClient
-
public interface DomibusConnectorDeliveryClient
This interface must be implemented if the client is set up in push/push mode. All messages delivered by the domibusConnector will be delivered to the client side using this interface.- Author:
- Bernhard Rieder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
receiveDeliveredConfirmationMessageFromConnector(DomibusConnectorMessageType message)
This method must be implemented if the client is set up in push/push mode.void
receiveDeliveredMessageFromConnector(DomibusConnectorMessageType message)
This method must be implemented if the client is set up in push/push mode.
-
-
-
Method Detail
-
receiveDeliveredMessageFromConnector
void receiveDeliveredMessageFromConnector(DomibusConnectorMessageType message) throws DomibusConnectorClientException
This method must be implemented if the client is set up in push/push mode. All new business messages delivered by the domibusConnector will be delivered to the client side using this method. The message contains aDomibusConnectorMessageDetailsType
and aDomibusConnectorMessageContentType
at least. Before delivered, theDomibusConnectorClientMessageHandler
is called.- Parameters:
message
- - The business message delivered by the domibusConnector.- Throws:
DomibusConnectorClientException
-
receiveDeliveredConfirmationMessageFromConnector
void receiveDeliveredConfirmationMessageFromConnector(DomibusConnectorMessageType message) throws DomibusConnectorClientException
This method must be implemented if the client is set up in push/push mode. All new confirmations of messages delivered by the domibusConnector will be delivered to the client side using this method. The message contains aDomibusConnectorMessageDetailsType
and oneDomibusConnectorMessageConfirmationType
at least. The ebms message id of the original message this confirmation refers to is contained in the attribute refToMessageId of theDomibusConnectorMessageDetailsType
.- Parameters:
message
- - The confirmation message delivered by the domibusConnector.- Throws:
DomibusConnectorClientException
-
-