org.bidib.wizard.api.model.connection.GatewayConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
package org.bidib.wizard.api.model.connection;
import org.bidib.jbidibc.messages.message.BidibMessageInterface;
import org.bidib.wizard.api.model.NodeInterface;
public interface GatewayConnection {
/**
* Publish the gateway response.
*
* @param node
* the node to send the response
* @param gatewayResponse
* the gateway response
*/
void publishBidibMessage(final NodeInterface node, final BidibMessageInterface gatewayResponse);
}