Coverage Report - ca.uhn.hl7v2.hoh.api.IResponseSendable
 
Classes in this File Line Coverage Branch Coverage Complexity
IResponseSendable
N/A
N/A
1
 
 1  
 package ca.uhn.hl7v2.hoh.api;
 2  
 
 3  
 import ca.uhn.hl7v2.hoh.encoder.ResponseCode;
 4  
 
 5  
 /**
 6  
  * <p>
 7  
  * Response message to be returned by a server application.
 8  
  * </p>
 9  
  */
 10  
 public interface IResponseSendable<T> extends ISendable<T> {
 11  
 
 12  
         ResponseCode getResponseCode();
 13  
         
 14  
 }