edu.harvard.i2b2.crc.datavo.i2b2message
Class MessageHeaderType

java.lang.Object
  extended by edu.harvard.i2b2.crc.datavo.i2b2message.MessageHeaderType

public class MessageHeaderType
extends Object

Java class for message_headerType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="message_headerType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="i2b2_version_compatible" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}decimal"/>
         <element name="hl7_version_compatible" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}decimal"/>
         <element name="sending_application" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}applicationType"/>
         <element name="sending_facility" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}facilityType"/>
         <element name="receiving_application" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}applicationType"/>
         <element name="receiving_facility" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}facilityType"/>
         <element name="datetime_of_message" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}dateTime"/>
         <element name="security" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}securityType"/>
         <element name="message_type" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}message_typeType"/>
         <element name="message_control_id" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}message_control_idType"/>
         <element name="processing_id" type="{http://www.i2b2.org/xsd/hive/msg/1.1/}processing_idType"/>
         <element name="accept_acknowledgement_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="application_acknowledgement_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="project_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String acceptAcknowledgementType
           
protected  String applicationAcknowledgementType
           
protected  String countryCode
           
protected  XMLGregorianCalendar datetimeOfMessage
           
protected  BigDecimal hl7VersionCompatible
           
protected  BigDecimal i2B2VersionCompatible
           
protected  MessageControlIdType messageControlId
           
protected  MessageTypeType messageType
           
protected  ProcessingIdType processingId
           
protected  String projectId
           
protected  ApplicationType receivingApplication
           
protected  FacilityType receivingFacility
           
protected  SecurityType security
           
protected  ApplicationType sendingApplication
           
protected  FacilityType sendingFacility
           
 
Constructor Summary
MessageHeaderType()
           
 
Method Summary
 String getAcceptAcknowledgementType()
          Gets the value of the acceptAcknowledgementType property.
 String getApplicationAcknowledgementType()
          Gets the value of the applicationAcknowledgementType property.
 String getCountryCode()
          Gets the value of the countryCode property.
 XMLGregorianCalendar getDatetimeOfMessage()
          Gets the value of the datetimeOfMessage property.
 BigDecimal getHl7VersionCompatible()
          Gets the value of the hl7VersionCompatible property.
 BigDecimal getI2B2VersionCompatible()
          Gets the value of the i2B2VersionCompatible property.
 MessageControlIdType getMessageControlId()
          Gets the value of the messageControlId property.
 MessageTypeType getMessageType()
          Gets the value of the messageType property.
 ProcessingIdType getProcessingId()
          Gets the value of the processingId property.
 String getProjectId()
          Gets the value of the projectId property.
 ApplicationType getReceivingApplication()
          Gets the value of the receivingApplication property.
 FacilityType getReceivingFacility()
          Gets the value of the receivingFacility property.
 SecurityType getSecurity()
          Gets the value of the security property.
 ApplicationType getSendingApplication()
          Gets the value of the sendingApplication property.
 FacilityType getSendingFacility()
          Gets the value of the sendingFacility property.
 void setAcceptAcknowledgementType(String value)
          Sets the value of the acceptAcknowledgementType property.
 void setApplicationAcknowledgementType(String value)
          Sets the value of the applicationAcknowledgementType property.
 void setCountryCode(String value)
          Sets the value of the countryCode property.
 void setDatetimeOfMessage(XMLGregorianCalendar value)
          Sets the value of the datetimeOfMessage property.
 void setHl7VersionCompatible(BigDecimal value)
          Sets the value of the hl7VersionCompatible property.
 void setI2B2VersionCompatible(BigDecimal value)
          Sets the value of the i2B2VersionCompatible property.
 void setMessageControlId(MessageControlIdType value)
          Sets the value of the messageControlId property.
 void setMessageType(MessageTypeType value)
          Sets the value of the messageType property.
 void setProcessingId(ProcessingIdType value)
          Sets the value of the processingId property.
 void setProjectId(String value)
          Sets the value of the projectId property.
 void setReceivingApplication(ApplicationType value)
          Sets the value of the receivingApplication property.
 void setReceivingFacility(FacilityType value)
          Sets the value of the receivingFacility property.
 void setSecurity(SecurityType value)
          Sets the value of the security property.
 void setSendingApplication(ApplicationType value)
          Sets the value of the sendingApplication property.
 void setSendingFacility(FacilityType value)
          Sets the value of the sendingFacility property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

i2B2VersionCompatible

protected BigDecimal i2B2VersionCompatible

hl7VersionCompatible

protected BigDecimal hl7VersionCompatible

sendingApplication

protected ApplicationType sendingApplication

sendingFacility

protected FacilityType sendingFacility

receivingApplication

protected ApplicationType receivingApplication

receivingFacility

protected FacilityType receivingFacility

datetimeOfMessage

protected XMLGregorianCalendar datetimeOfMessage

security

protected SecurityType security

messageType

protected MessageTypeType messageType

messageControlId

protected MessageControlIdType messageControlId

processingId

protected ProcessingIdType processingId

acceptAcknowledgementType

protected String acceptAcknowledgementType

applicationAcknowledgementType

protected String applicationAcknowledgementType

countryCode

protected String countryCode

projectId

protected String projectId
Constructor Detail

MessageHeaderType

public MessageHeaderType()
Method Detail

getI2B2VersionCompatible

public BigDecimal getI2B2VersionCompatible()
Gets the value of the i2B2VersionCompatible property.

Returns:
possible object is BigDecimal

setI2B2VersionCompatible

public void setI2B2VersionCompatible(BigDecimal value)
Sets the value of the i2B2VersionCompatible property.

Parameters:
value - allowed object is BigDecimal

getHl7VersionCompatible

public BigDecimal getHl7VersionCompatible()
Gets the value of the hl7VersionCompatible property.

Returns:
possible object is BigDecimal

setHl7VersionCompatible

public void setHl7VersionCompatible(BigDecimal value)
Sets the value of the hl7VersionCompatible property.

Parameters:
value - allowed object is BigDecimal

getSendingApplication

public ApplicationType getSendingApplication()
Gets the value of the sendingApplication property.

Returns:
possible object is ApplicationType

setSendingApplication

public void setSendingApplication(ApplicationType value)
Sets the value of the sendingApplication property.

Parameters:
value - allowed object is ApplicationType

getSendingFacility

public FacilityType getSendingFacility()
Gets the value of the sendingFacility property.

Returns:
possible object is FacilityType

setSendingFacility

public void setSendingFacility(FacilityType value)
Sets the value of the sendingFacility property.

Parameters:
value - allowed object is FacilityType

getReceivingApplication

public ApplicationType getReceivingApplication()
Gets the value of the receivingApplication property.

Returns:
possible object is ApplicationType

setReceivingApplication

public void setReceivingApplication(ApplicationType value)
Sets the value of the receivingApplication property.

Parameters:
value - allowed object is ApplicationType

getReceivingFacility

public FacilityType getReceivingFacility()
Gets the value of the receivingFacility property.

Returns:
possible object is FacilityType

setReceivingFacility

public void setReceivingFacility(FacilityType value)
Sets the value of the receivingFacility property.

Parameters:
value - allowed object is FacilityType

getDatetimeOfMessage

public XMLGregorianCalendar getDatetimeOfMessage()
Gets the value of the datetimeOfMessage property.

Returns:
possible object is XMLGregorianCalendar

setDatetimeOfMessage

public void setDatetimeOfMessage(XMLGregorianCalendar value)
Sets the value of the datetimeOfMessage property.

Parameters:
value - allowed object is XMLGregorianCalendar

getSecurity

public SecurityType getSecurity()
Gets the value of the security property.

Returns:
possible object is SecurityType

setSecurity

public void setSecurity(SecurityType value)
Sets the value of the security property.

Parameters:
value - allowed object is SecurityType

getMessageType

public MessageTypeType getMessageType()
Gets the value of the messageType property.

Returns:
possible object is MessageTypeType

setMessageType

public void setMessageType(MessageTypeType value)
Sets the value of the messageType property.

Parameters:
value - allowed object is MessageTypeType

getMessageControlId

public MessageControlIdType getMessageControlId()
Gets the value of the messageControlId property.

Returns:
possible object is MessageControlIdType

setMessageControlId

public void setMessageControlId(MessageControlIdType value)
Sets the value of the messageControlId property.

Parameters:
value - allowed object is MessageControlIdType

getProcessingId

public ProcessingIdType getProcessingId()
Gets the value of the processingId property.

Returns:
possible object is ProcessingIdType

setProcessingId

public void setProcessingId(ProcessingIdType value)
Sets the value of the processingId property.

Parameters:
value - allowed object is ProcessingIdType

getAcceptAcknowledgementType

public String getAcceptAcknowledgementType()
Gets the value of the acceptAcknowledgementType property.

Returns:
possible object is String

setAcceptAcknowledgementType

public void setAcceptAcknowledgementType(String value)
Sets the value of the acceptAcknowledgementType property.

Parameters:
value - allowed object is String

getApplicationAcknowledgementType

public String getApplicationAcknowledgementType()
Gets the value of the applicationAcknowledgementType property.

Returns:
possible object is String

setApplicationAcknowledgementType

public void setApplicationAcknowledgementType(String value)
Sets the value of the applicationAcknowledgementType property.

Parameters:
value - allowed object is String

getCountryCode

public String getCountryCode()
Gets the value of the countryCode property.

Returns:
possible object is String

setCountryCode

public void setCountryCode(String value)
Sets the value of the countryCode property.

Parameters:
value - allowed object is String

getProjectId

public String getProjectId()
Gets the value of the projectId property.

Returns:
possible object is String

setProjectId

public void setProjectId(String value)
Sets the value of the projectId property.

Parameters:
value - allowed object is String


Copyright © 2011. All Rights Reserved.