|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.vmdb.hl7.HL7Object | +--org.vmdb.hl7.HL7Segment | +--org.vmdb.hl7.MSHSegment
Description: HL7 Network Connectivity For VMDB.
Copyright: Copyright (c) 2002-2003.
Company: Veterinary Medical Database (VMDB).
The MSH segment defines the intent, source, destination, and some specifics of the syntax of a message. Because this information is needed by the program in order to properly construct the segments that follow, the MSH should be populated before any additional segments are added.
See HL7 Standard Chapter 2 for details.
Constructor Summary | |
MSHSegment()
Construct an empty header segment. |
|
MSHSegment(HL7SegmentContainer msgParent)
Construct an empty header segment, setting its containing message object. |
Method Summary | |
java.lang.String |
getMessageControlId()
Get the message control ID as a string. |
java.lang.String |
getMessageDateTime()
Get the date/time as a string. |
java.lang.String |
getMessageName()
The message name is a concatenation of the message type and version. |
java.lang.String |
getProcessingId()
Get just the processing Id |
PTElement |
getProcessingIdElement()
Get the processing Id as PT Element. |
java.lang.String |
getProcessingMode()
Get just the processing mode. |
HDElement |
getReceivingFacility()
Get the Receiving facility as the complete HDElement. |
java.lang.String |
getReceivingFacilityId()
Get just the universal id of the Receiving facility, the VMDB identifier in this case. |
java.lang.String |
getReceivingFacilityName()
Get just the namespace id of the Receiving facility, the text string for the facility name in this case. |
HDElement |
getSendingFacility()
Get the sending facility as the complete HDElement. |
java.lang.String |
getSendingFacilityId()
Get just the universal id of the sending facility, the VMDB identifier in this case. |
java.lang.String |
getSendingFacilityName()
Get just the namespace id of the sending facility, the text string for the facility name in this case. |
java.lang.String |
getVersionId()
Get the HL7 Version number. |
void |
setMessageControlId(java.lang.String sMessageControlId)
Set the message control ID. |
void |
setMessageDateTime()
Set the date/time of the message to the time now. |
void |
setMessageDateTime(java.lang.String sDateTime)
Set the date/time of the message to string formatted date/time. |
void |
setMessageName(java.lang.String sMsgType,
java.lang.String sEventType,
java.lang.String sMsgStructure)
Set the message type and version. |
void |
setProcessingId(java.lang.String sProcessingId)
Set the processing ID. |
void |
setProcessingId(java.lang.String sProcessingId,
java.lang.String sProcessingMode)
Set the processing ID from the individual components of a PT Element |
void |
setProcessingMode(java.lang.String sProcessingMode)
Set the processing mode. |
void |
setReceivingFacility(HDElement hdFacility)
Set the sending facility. |
void |
setReceivingFacility(java.lang.String sName)
Set the Receiving facility. |
void |
setReceivingFacility(java.lang.String sName,
java.lang.String sId)
Set the Receiving facility. |
void |
setReceivingFacility(java.lang.String sNamespaceId,
java.lang.String sId,
java.lang.String sIdType)
Set the Receiving facility. |
void |
setSendingFacility(HDElement hdFacility)
Set the sending facility. |
void |
setSendingFacility(java.lang.String sName)
Set the sending facility. |
void |
setSendingFacility(java.lang.String sName,
java.lang.String sId)
Set the sending facility. |
void |
setSendingFacility(java.lang.String sNamespaceId,
java.lang.String sId,
java.lang.String sIdType)
Set the sending facility. |
void |
setSeparators(java.lang.String sSeparators)
Set separators for the message and all its segments. |
void |
setVersionId(java.lang.String sVersionId)
Set the HL7 Version number. |
java.lang.String |
toString()
Output segment as HL7. |
Methods inherited from class org.vmdb.hl7.HL7Segment |
clearField, getField, getFieldValue, iterator, listFields, setField, setField, setField, setField, setField, setField, setField, toXML |
Methods inherited from class org.vmdb.hl7.HL7Object |
getRule |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public MSHSegment()
public MSHSegment(HL7SegmentContainer msgParent)
msgParent
- HL7Message object that contains this header. While
declared as an HL7SegmentContainer for consistency with other segments,
The parent of MSH is always a Message object rather than a loop.Method Detail |
public java.lang.String getMessageName()
public void setMessageName(java.lang.String sMsgType, java.lang.String sEventType, java.lang.String sMsgStructure)
sMsgType
- String with message type abbreviation such as "ORU"sEventType
- String with message event such as "R01"sMsgStructure
- String with message event such as "ORU_R01"public java.lang.String toString()
toString
in class HL7Segment
public void setSeparators(java.lang.String sSeparators)
setSeparators
in class HL7Object
sSeparators
- string with separators.public void setSendingFacility(java.lang.String sName)
sName
- Facility name as listed by VMDBpublic void setSendingFacility(HDElement hdFacility)
public void setSendingFacility(java.lang.String sName, java.lang.String sId)
sName
- Facility name as listed by VMDBpublic void setSendingFacility(java.lang.String sNamespaceId, java.lang.String sId, java.lang.String sIdType)
public HDElement getSendingFacility()
public java.lang.String getSendingFacilityName()
public java.lang.String getSendingFacilityId()
public void setReceivingFacility(java.lang.String sName)
sName
- Facility name as listed by VMDBpublic void setReceivingFacility(java.lang.String sName, java.lang.String sId)
sName
- Facility name as listed by VMDBpublic void setReceivingFacility(HDElement hdFacility)
public void setReceivingFacility(java.lang.String sNamespaceId, java.lang.String sId, java.lang.String sIdType)
public HDElement getReceivingFacility()
public java.lang.String getReceivingFacilityName()
public java.lang.String getReceivingFacilityId()
public void setMessageDateTime()
public void setMessageDateTime(java.lang.String sDateTime)
sDateTime
- String with date/time in yyyyMMddHHmmss formatpublic java.lang.String getMessageDateTime()
public void setMessageControlId(java.lang.String sMessageControlId)
sMessageControlId
- a String up to 20 characters usually
a random unique sequence.public java.lang.String getMessageControlId()
public void setProcessingId(java.lang.String sProcessingId)
public void setProcessingMode(java.lang.String sProcessingMode)
sProcessingMode
- A-archive, R-restore from archive, I-initial load (default)
T-current processing.public void setProcessingId(java.lang.String sProcessingId, java.lang.String sProcessingMode)
sProcessingMode
- A-archive, R-restore from archive, I-initial load (default)
T-current processing.public PTElement getProcessingIdElement()
public java.lang.String getProcessingId()
public java.lang.String getProcessingMode()
public void setVersionId(java.lang.String sVersionId)
sVersionId
- String with version numberpublic java.lang.String getVersionId()
|
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |