Coverage Report - ca.uhn.hl7v2.app.AcceptApplication
 
Classes in this File Line Coverage Branch Coverage Complexity
AcceptApplication
0%
0/3
N/A
1
 
 1  
 package ca.uhn.hl7v2.app;
 2  
 
 3  
 import ca.uhn.hl7v2.model.Message;
 4  
 
 5  
 /**
 6  
  * An application that returns AA acknowledgements.  
 7  
  * @author Bryan Tripp
 8  
  */
 9  
 public class AcceptApplication extends DefaultApplication {
 10  
     
 11  
     /** Creates a new instance of AcceptApplication */
 12  0
     public AcceptApplication() {
 13  0
     }
 14  
     
 15  
     /**
 16  
      * Supplies details of application accept (AA) acknowledgement. 
 17  
      * Actually this method does nothing, because DefaultApplication.makeACK() 
 18  
      * supplies the desired values (this is just here to override inclusion of the 
 19  
      * default error message).  
 20  
      */
 21  
     public void fillDetails(Message ack) throws ApplicationException {
 22  
         //do nothing -- no more information needed 
 23  0
     }
 24  
     
 25  
 }