001package ca.uhn.hl7v2.protocol;
002
003
004public class MetadataKeys {
005
006        private MetadataKeys() {
007                // nothing
008        }
009        
010        /**
011         * Contains the raw message as it was received
012         */
013        public static final String IN_RAW_MESSAGE = "raw-message";
014
015        /**
016         * Message control ID (MSH-10)
017         */
018        public static final String IN_MESSAGE_CONTROL_ID = "/MSH-10";
019        
020    /**
021         * Provides the IP of the sending system for a given message
022         */
023        public static final String IN_SENDING_IP = "SENDING_IP";
024
025    /**
026         * Provides the port of the sending system for a given message
027         */
028        public static final String IN_SENDING_PORT = "SENDING_PORT";
029
030}