ca.uhn.hl7v2.hoh.api.IMessageHandler Maven / Gradle / Ivy
package ca.uhn.hl7v2.hoh.api;
import ca.uhn.hl7v2.hoh.raw.server.HohRawServlet;
/**
*
* Service interface which can be implemented by an application to
* process incoming messages received by {@link HohRawServlet}.
*
*
*
*
*
*/
public interface IMessageHandler {
IResponseSendable messageReceived(IReceivable theMessage) throws MessageProcessingException;
}