ca.uhn.hl7v2.hoh.api.IReceivable Maven / Gradle / Ivy
package ca.uhn.hl7v2.hoh.api;
import java.util.Map;
public interface IReceivable {
/**
* Returns the message itself
*/
T getMessage();
/**
* Returns a map containing other metadata about the message.
*/
Map getMetadata();
}