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 RRI_I12 message structure (see chapter 11.5.1). This structure contains the
/// following elements:
///<ol>
///<li>0: MSH (Message Header) </li>
///<li>1: SFT (Software Segment) optional repeating</li>
///<li>2: MSA (Message Acknowledgment) optional </li>
///<li>3: RF1 (Referral Information) optional </li>
///<li>4: RRI_I12_AUTHORIZATION_CONTACT (a Group object) optional </li>
///<li>5: RRI_I12_PROVIDER_CONTACT (a Group object) repeating</li>
///<li>6: PID (Patient Identification) </li>
///<li>7: ACC (Accident) optional </li>
///<li>8: DG1 (Diagnosis) optional repeating</li>
///<li>9: DRG (Diagnosis Related Group) optional repeating</li>
///<li>10: AL1 (Patient Allergy Information) optional repeating</li>
///<li>11: RRI_I12_PROCEDURE (a Group object) optional repeating</li>
///<li>12: RRI_I12_OBSERVATION (a Group object) optional repeating</li>
///<li>13: RRI_I12_PATIENT_VISIT (a Group object) optional </li>
///<li>14: NTE (Notes and Comments) optional repeating</li>
///</ol>
///</summary>
[Serializable]
public class RRI_I12 : AbstractMessage {
///<summary>
/// Creates a new RRI_I12 Group with custom IModelClassFactory.
///</summary>
public RRI_I12(IModelClassFactory factory) : base(factory){
init(factory);
}
///<summary>
/// Creates a new RRI_I12 Group with DefaultModelClassFactory.
///</summary>
public RRI_I12() : base(new DefaultModelClassFactory()) {
init(new DefaultModelClassFactory());
}
///<summary>
/// initalize method for RRI_I12. 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(MSA), false, false);
this.add(typeof(RF1), false, false);
this.add(typeof(RRI_I12_AUTHORIZATION_CONTACT), false, false);
this.add(typeof(RRI_I12_PROVIDER_CONTACT), true, true);
this.add(typeof(PID), true, false);
this.add(typeof(ACC), false, false);
this.add(typeof(DG1), false, true);
this.add(typeof(DRG), false, true);
this.add(typeof(AL1), false, true);
this.add(typeof(RRI_I12_PROCEDURE), false, true);
this.add(typeof(RRI_I12_OBSERVATION), false, true);
this.add(typeof(RRI_I12_PATIENT_VISIT), false, false);
this.add(typeof(NTE), false, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating RRI_I12 - 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 MSA (Message Acknowledgment) - creates it if necessary
///</summary>
public MSA MSA {
get{
MSA ret = null;
try {
ret = (MSA)this.GetStructure("MSA");
} 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 RF1 (Referral Information) - creates it if necessary
///</summary>
public RF1 RF1 {
get{
RF1 ret = null;
try {
ret = (RF1)this.GetStructure("RF1");
} 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 RRI_I12_AUTHORIZATION_CONTACT (a Group object) - creates it if necessary
///</summary>
public RRI_I12_AUTHORIZATION_CONTACT AUTHORIZATION_CONTACT {
get{
RRI_I12_AUTHORIZATION_CONTACT ret = null;
try {
ret = (RRI_I12_AUTHORIZATION_CONTACT)this.GetStructure("AUTHORIZATION_CONTACT");
} 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 RRI_I12_PROVIDER_CONTACT (a Group object) - creates it if necessary
///</summary>
public RRI_I12_PROVIDER_CONTACT GetPROVIDER_CONTACT() {
RRI_I12_PROVIDER_CONTACT ret = null;
try {
ret = (RRI_I12_PROVIDER_CONTACT)this.GetStructure("PROVIDER_CONTACT");
} 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 RRI_I12_PROVIDER_CONTACT
/// * (a Group object) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RRI_I12_PROVIDER_CONTACT GetPROVIDER_CONTACT(int rep) {
return (RRI_I12_PROVIDER_CONTACT)this.GetStructure("PROVIDER_CONTACT", rep);
}
/**
* Returns the number of existing repetitions of RRI_I12_PROVIDER_CONTACT
*/
public int PROVIDER_CONTACTRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("PROVIDER_CONTACT").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 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 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 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 first repetition of DRG (Diagnosis Related Group) - creates it if necessary
///</summary>
public DRG GetDRG() {
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 a specific repetition of DRG
/// * (Diagnosis Related Group) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DRG GetDRG(int rep) {
return (DRG)this.GetStructure("DRG", rep);
}
/**
* Returns the number of existing repetitions of DRG
*/
public int DRGRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DRG").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 RRI_I12_PROCEDURE (a Group object) - creates it if necessary
///</summary>
public RRI_I12_PROCEDURE GetPROCEDURE() {
RRI_I12_PROCEDURE ret = null;
try {
ret = (RRI_I12_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 a specific repetition of RRI_I12_PROCEDURE
/// * (a Group object) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RRI_I12_PROCEDURE GetPROCEDURE(int rep) {
return (RRI_I12_PROCEDURE)this.GetStructure("PROCEDURE", rep);
}
/**
* Returns the number of existing repetitions of RRI_I12_PROCEDURE
*/
public int PROCEDURERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("PROCEDURE").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 RRI_I12_OBSERVATION (a Group object) - creates it if necessary
///</summary>
public RRI_I12_OBSERVATION GetOBSERVATION() {
RRI_I12_OBSERVATION ret = null;
try {
ret = (RRI_I12_OBSERVATION)this.GetStructure("OBSERVATION");
} 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 RRI_I12_OBSERVATION
/// * (a Group object) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RRI_I12_OBSERVATION GetOBSERVATION(int rep) {
return (RRI_I12_OBSERVATION)this.GetStructure("OBSERVATION", rep);
}
/**
* Returns the number of existing repetitions of RRI_I12_OBSERVATION
*/
public int OBSERVATIONRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("OBSERVATION").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 RRI_I12_PATIENT_VISIT (a Group object) - creates it if necessary
///</summary>
public RRI_I12_PATIENT_VISIT PATIENT_VISIT
{
get{
RRI_I12_PATIENT_VISIT ret = null;
try {
ret = (RRI_I12_PATIENT_VISIT)this.GetStructure("PATIENT_VISIT");
} 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 NTE (Notes and Comments) - creates it if necessary
///</summary>
public NTE GetNTE() {
NTE ret = null;
try {
ret = (NTE)this.GetStructure("NTE");
} 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 NTE
/// * (Notes and Comments) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public NTE GetNTE(int rep) {
return (NTE)this.GetStructure("NTE", rep);
}
/**
* Returns the number of existing repetitions of NTE
*/
public int NTERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("NTE").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;
}
}
}
}
|