001package ca.uhn.hl7v2.hoh.relay.listener;
002
003import ca.uhn.hl7v2.model.Message;
004import org.springframework.beans.factory.NamedBean;
005
006import ca.uhn.hl7v2.protocol.ApplicationRouter.AppRoutingData;
007import ca.uhn.hl7v2.protocol.ReceivingApplication;
008
009public interface IRelayListener extends NamedBean {
010
011        void registerApplication(AppRoutingData theAppRouting, ReceivingApplication<? extends Message> theReceivingApplication);
012        
013}