View Javadoc
1   package ca.uhn.hl7v2.hoh.relay.listener;
2   
3   import ca.uhn.hl7v2.model.Message;
4   import org.springframework.beans.factory.NamedBean;
5   
6   import ca.uhn.hl7v2.protocol.ApplicationRouter.AppRoutingData;
7   import ca.uhn.hl7v2.protocol.ReceivingApplication;
8   
9   public interface IRelayListener extends NamedBean {
10  
11  	void registerApplication(AppRoutingData theAppRouting, ReceivingApplication<? extends Message> theReceivingApplication);
12  	
13  }