Interface HL7MessagePreprocessor
-
public interface HL7MessagePreprocessor
This interface represents an implementation of a preprocessor which is used to modify the incoming HL7 message before parsing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
process(String message, String type, String encoding)
Processes the incoming message and returns a possibly modified message.
-
-
-
Method Detail
-
process
String process(String message, String type, String encoding)
Processes the incoming message and returns a possibly modified message.- Parameters:
message
- The incomding messagetype
- The type of the message, i.e. v2 or v3, defined at HL7Constants.MessageTypeencoding
- The encoding of the message, i.e. ER7 or XML, defined at HL7Constants.MessageEncoding- Returns:
-
-