All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.hl7v2.app.AcceptApplication Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package ca.uhn.hl7v2.app;

import ca.uhn.hl7v2.model.Message;

/**
 * An application that returns AA acknowledgements.  
 * @author Bryan Tripp
 */
public class AcceptApplication extends DefaultApplication {
    
    /** Creates a new instance of AcceptApplication */
    public AcceptApplication() {
    }
    
    /**
     * Supplies details of application accept (AA) acknowledgement. 
     * Actually this method does nothing, because DefaultApplication.makeACK() 
     * supplies the desired values (this is just here to override inclusion of the 
     * default error message).  
     */
    public void fillDetails(Message ack) throws ApplicationException {
        //do nothing -- no more information needed 
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy