1 package ca.uhn.hl7v2.protocol;
2
3
4 public class MetadataKeys {
5
6 private MetadataKeys() {
7 // nothing
8 }
9
10 /**
11 * Contains the raw message as it was received
12 */
13 public static final String IN_RAW_MESSAGE = "raw-message";
14
15 /**
16 * Message control ID (MSH-10)
17 */
18 public static final String IN_MESSAGE_CONTROL_ID = "/MSH-10";
19
20 /**
21 * Provides the IP of the sending system for a given message
22 */
23 public static final String IN_SENDING_IP = "SENDING_IP";
24
25 /**
26 * Provides the port of the sending system for a given message
27 */
28 public static final String IN_SENDING_PORT = "SENDING_PORT";
29
30 }