001package ca.uhn.hl7v2.hoh.api; 002 003import ca.uhn.hl7v2.hoh.encoder.ResponseCode; 004 005/** 006 * <p> 007 * Response message to be returned by a server application. 008 * </p> 009 */ 010public interface IResponseSendable<T> extends ISendable<T> { 011 012 ResponseCode getResponseCode(); 013 014}