using System;
using NHapi.Base.Log;
using NHapi.Model.V251.Group;
using NHapi.Model.V251.Segment;
using NHapi.Base;
using NHapi.Base.Parser;
using NHapi.Base.Model;
namespace NHapi.Model.V251.Message{
///<summary>
/// Represents a ADT_A03 message structure (see chapter 3.3.3). This structure contains the
/// following elements:
///<ol>
///<li>0: MSH (Message Header) </li>
///<li>1: SFT (Software Segment) optional repeating</li>
///<li>2: EVN (Event Type) </li>
///<li>3: PID (Patient Identification) </li>
///<li>4: PD1 (Patient Additional Demographic) optional </li>
///<li>5: ROL (Role) optional repeating</li>
///<li>6: NK1 (Next of Kin / Associated Parties) optional repeating</li>
///<li>7: PV1 (Patient Visit) </li>
///<li>8: PV2 (Patient Visit - Additional Information) optional </li>
///<li>9: ROL (Role) optional repeating</li>
///<li>10: DB1 (Disability) optional repeating</li>
///<li>11: AL1 (Patient Allergy Information) optional repeating</li>
///<li>12: DG1 (Diagnosis) optional repeating</li>
///<li>13: DRG (Diagnosis Related Group) optional </li>
///<li>14: ADT_A03_PROCEDURE (a Group object) </li>
///<li>15: OBX (Observation/Result) optional repeating</li>
///<li>16: GT1 (Guarantor) optional repeating</li>
///<li>17: ADT_A03_INSURANCE (a Group object) </li>
///<li>18: ACC (Accident) optional </li>
///<li>19: PDA (Patient Death and Autopsy) optional </li>
///</ol>
///</summary>
[Serializable]
public class ADT_A03 : AbstractMessage {
///<summary>
/// Creates a new ADT_A03 Group with custom IModelClassFactory.
///</summary>
public ADT_A03(IModelClassFactory factory) : base(factory){
init(factory);
}
///<summary>
/// Creates a new ADT_A03 Group with DefaultModelClassFactory.
///</summary>
public ADT_A03() : base(new DefaultModelClassFactory()) {
init(new DefaultModelClassFactory());
}
///<summary>
/// initalize method for ADT_A03. This does the segment setup for the message.
///</summary>
private void init(IModelClassFactory factory) {
try {
this.add(typeof(MSH), true, false);
this.add(typeof(SFT), false, true);
this.add(typeof(EVN), true, false);
this.add(typeof(PID), true, false);
this.add(typeof(PD1), false, false);
this.add(typeof(ROL), false, true);
this.add(typeof(NK1), false, true);
this.add(typeof(PV1), true, false);
this.add(typeof(PV2), false, false);
this.add(typeof(ROL), false, true);
this.add(typeof(DB1), false, true);
this.add(typeof(AL1), false, true);
this.add(typeof(DG1), false, true);
this.add(typeof(DRG), false, false);
this.add(typeof(ADT_A03_PROCEDURE), true, false);
this.add(typeof(OBX), false, true);
this.add(typeof(GT1), false, true);
this.add(typeof(ADT_A03_INSURANCE), true, false);
this.add(typeof(ACC), false, false);
this.add(typeof(PDA), false, false);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating ADT_A03 - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns MSH (Message Header) - creates it if necessary
///</summary>
public MSH MSH {
get{
MSH ret = null;
try {
ret = (MSH)this.GetStructure("MSH");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of SFT (Software Segment) - creates it if necessary
///</summary>
public SFT GetSFT() {
SFT ret = null;
try {
ret = (SFT)this.GetStructure("SFT");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of SFT
/// * (Software Segment) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public SFT GetSFT(int rep) {
return (SFT)this.GetStructure("SFT", rep);
}
/**
* Returns the number of existing repetitions of SFT
*/
public int SFTRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("SFT").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns EVN (Event Type) - creates it if necessary
///</summary>
public EVN EVN {
get{
EVN ret = null;
try {
ret = (EVN)this.GetStructure("EVN");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns PID (Patient Identification) - creates it if necessary
///</summary>
public PID PID {
get{
PID ret = null;
try {
ret = (PID)this.GetStructure("PID");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns PD1 (Patient Additional Demographic) - creates it if necessary
///</summary>
public PD1 PD1 {
get{
PD1 ret = null;
try {
ret = (PD1)this.GetStructure("PD1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of ROL (Role) - creates it if necessary
///</summary>
public ROL GetROL() {
ROL ret = null;
try {
ret = (ROL)this.GetStructure("ROL");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of ROL
/// * (Role) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public ROL GetROL(int rep) {
return (ROL)this.GetStructure("ROL", rep);
}
/**
* Returns the number of existing repetitions of ROL
*/
public int ROLRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("ROL").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of NK1 (Next of Kin / Associated Parties) - creates it if necessary
///</summary>
public NK1 GetNK1() {
NK1 ret = null;
try {
ret = (NK1)this.GetStructure("NK1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of NK1
/// * (Next of Kin / Associated Parties) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public NK1 GetNK1(int rep) {
return (NK1)this.GetStructure("NK1", rep);
}
/**
* Returns the number of existing repetitions of NK1
*/
public int NK1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("NK1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns PV1 (Patient Visit) - creates it if necessary
///</summary>
public PV1 PV1 {
get{
PV1 ret = null;
try {
ret = (PV1)this.GetStructure("PV1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns PV2 (Patient Visit - Additional Information) - creates it if necessary
///</summary>
public PV2 PV2 {
get{
PV2 ret = null;
try {
ret = (PV2)this.GetStructure("PV2");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of ROL2 (Role) - creates it if necessary
///</summary>
public ROL GetROL2() {
ROL ret = null;
try {
ret = (ROL)this.GetStructure("ROL2");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of ROL2
/// * (Role) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public ROL GetROL2(int rep) {
return (ROL)this.GetStructure("ROL2", rep);
}
/**
* Returns the number of existing repetitions of ROL2
*/
public int ROL2RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("ROL2").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of DB1 (Disability) - creates it if necessary
///</summary>
public DB1 GetDB1() {
DB1 ret = null;
try {
ret = (DB1)this.GetStructure("DB1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of DB1
/// * (Disability) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DB1 GetDB1(int rep) {
return (DB1)this.GetStructure("DB1", rep);
}
/**
* Returns the number of existing repetitions of DB1
*/
public int DB1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DB1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of AL1 (Patient Allergy Information) - creates it if necessary
///</summary>
public AL1 GetAL1() {
AL1 ret = null;
try {
ret = (AL1)this.GetStructure("AL1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of AL1
/// * (Patient Allergy Information) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public AL1 GetAL1(int rep) {
return (AL1)this.GetStructure("AL1", rep);
}
/**
* Returns the number of existing repetitions of AL1
*/
public int AL1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("AL1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of DG1 (Diagnosis) - creates it if necessary
///</summary>
public DG1 GetDG1() {
DG1 ret = null;
try {
ret = (DG1)this.GetStructure("DG1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of DG1
/// * (Diagnosis) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DG1 GetDG1(int rep) {
return (DG1)this.GetStructure("DG1", rep);
}
/**
* Returns the number of existing repetitions of DG1
*/
public int DG1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DG1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns DRG (Diagnosis Related Group) - creates it if necessary
///</summary>
public DRG DRG {
get{
DRG ret = null;
try {
ret = (DRG)this.GetStructure("DRG");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns ADT_A03_PROCEDURE (a Group object) - creates it if necessary
///</summary>
public ADT_A03_PROCEDURE PROCEDURE {
get{
ADT_A03_PROCEDURE ret = null;
try {
ret = (ADT_A03_PROCEDURE)this.GetStructure("PROCEDURE");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of OBX (Observation/Result) - creates it if necessary
///</summary>
public OBX GetOBX() {
OBX ret = null;
try {
ret = (OBX)this.GetStructure("OBX");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of OBX
/// * (Observation/Result) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public OBX GetOBX(int rep) {
return (OBX)this.GetStructure("OBX", rep);
}
/**
* Returns the number of existing repetitions of OBX
*/
public int OBXRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("OBX").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of GT1 (Guarantor) - creates it if necessary
///</summary>
public GT1 GetGT1() {
GT1 ret = null;
try {
ret = (GT1)this.GetStructure("GT1");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of GT1
/// * (Guarantor) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public GT1 GetGT1(int rep) {
return (GT1)this.GetStructure("GT1", rep);
}
/**
* Returns the number of existing repetitions of GT1
*/
public int GT1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("GT1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns ADT_A03_INSURANCE (a Group object) - creates it if necessary
///</summary>
public ADT_A03_INSURANCE INSURANCE {
get{
ADT_A03_INSURANCE ret = null;
try {
ret = (ADT_A03_INSURANCE)this.GetStructure("INSURANCE");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns ACC (Accident) - creates it if necessary
///</summary>
public ACC ACC {
get{
ACC ret = null;
try {
ret = (ACC)this.GetStructure("ACC");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns PDA (Patient Death and Autopsy) - creates it if necessary
///</summary>
public PDA PDA {
get{
PDA ret = null;
try {
ret = (PDA)this.GetStructure("PDA");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
}
}
|