ca.uhn.hl7v2.model.v25.segment.AUT Maven / Gradle / Ivy
/*
* This class is an auto-generated source file for a HAPI
* HL7 v2.x standard structure class.
*
* For more information, visit: http://hl7api.sourceforge.net/
*/
package ca.uhn.hl7v2.model.v25.segment;
// import ca.uhn.hl7v2.model.v25.group.*;
import ca.uhn.hl7v2.model.v25.datatype.*;
import ca.uhn.log.HapiLogFactory;
import ca.uhn.hl7v2.HL7Exception;
import ca.uhn.hl7v2.parser.ModelClassFactory;
import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
import ca.uhn.hl7v2.model.AbstractMessage;
import ca.uhn.hl7v2.model.Group;
import ca.uhn.hl7v2.model.Type;
import ca.uhn.hl7v2.model.AbstractSegment;
import ca.uhn.hl7v2.model.Varies;
/**
*Represents an HL7 AUT message segment (Authorization Information).
* This segment has the following fields:
*
* - AUT-1: Authorizing Payor, Plan ID (CE) optional
*
- AUT-2: Authorizing Payor, Company ID (CE)
*
- AUT-3: Authorizing Payor, Company Name (ST) optional
*
- AUT-4: Authorization Effective Date (TS) optional
*
- AUT-5: Authorization Expiration Date (TS) optional
*
- AUT-6: Authorization Identifier (EI) optional
*
- AUT-7: Reimbursement Limit (CP) optional
*
- AUT-8: Requested Number of Treatments (NM) optional
*
- AUT-9: Authorized Number of Treatments (NM) optional
*
- AUT-10: Process Date (TS) optional
*
*/
public class AUT extends AbstractSegment {
/**
* Creates a new AUT segment
*/
public AUT(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(CE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(72) }, "Authorizing Payor, Plan ID");
this.add(CE.class, true, 1, 250, new Object[]{ getMessage(), new Integer(285) }, "Authorizing Payor, Company ID");
this.add(ST.class, false, 1, 45, new Object[]{ getMessage(), new Integer(0) }, "Authorizing Payor, Company Name");
this.add(TS.class, false, 1, 26, new Object[]{ getMessage(), new Integer(0) }, "Authorization Effective Date");
this.add(TS.class, false, 1, 26, new Object[]{ getMessage(), new Integer(0) }, "Authorization Expiration Date");
this.add(EI.class, false, 1, 30, new Object[]{ getMessage(), new Integer(0) }, "Authorization Identifier");
this.add(CP.class, false, 1, 25, new Object[]{ getMessage(), new Integer(0) }, "Reimbursement Limit");
this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Requested Number of Treatments");
this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Authorized Number of Treatments");
this.add(TS.class, false, 1, 26, new Object[]{ getMessage(), new Integer(0) }, "Process Date");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating AUT - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns
* AUT-1: "Authorizing Payor, Plan ID" - creates it if necessary
*/
public CE getAuthorizingPayorPlanID() {
CE ret = null;
try {
Type t = this.getField(1, 0);
ret = (CE)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-1: "Authorizing Payor, Plan ID" - creates it if necessary
*/
public CE getAut1_AuthorizingPayorPlanID() {
CE ret = null;
try {
Type t = this.getField(1, 0);
ret = (CE)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-2: "Authorizing Payor, Company ID" - creates it if necessary
*/
public CE getAuthorizingPayorCompanyID() {
CE ret = null;
try {
Type t = this.getField(2, 0);
ret = (CE)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-2: "Authorizing Payor, Company ID" - creates it if necessary
*/
public CE getAut2_AuthorizingPayorCompanyID() {
CE ret = null;
try {
Type t = this.getField(2, 0);
ret = (CE)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-3: "Authorizing Payor, Company Name" - creates it if necessary
*/
public ST getAuthorizingPayorCompanyName() {
ST ret = null;
try {
Type t = this.getField(3, 0);
ret = (ST)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-3: "Authorizing Payor, Company Name" - creates it if necessary
*/
public ST getAut3_AuthorizingPayorCompanyName() {
ST ret = null;
try {
Type t = this.getField(3, 0);
ret = (ST)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-4: "Authorization Effective Date" - creates it if necessary
*/
public TS getAuthorizationEffectiveDate() {
TS ret = null;
try {
Type t = this.getField(4, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-4: "Authorization Effective Date" - creates it if necessary
*/
public TS getAut4_AuthorizationEffectiveDate() {
TS ret = null;
try {
Type t = this.getField(4, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-5: "Authorization Expiration Date" - creates it if necessary
*/
public TS getAuthorizationExpirationDate() {
TS ret = null;
try {
Type t = this.getField(5, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-5: "Authorization Expiration Date" - creates it if necessary
*/
public TS getAut5_AuthorizationExpirationDate() {
TS ret = null;
try {
Type t = this.getField(5, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-6: "Authorization Identifier" - creates it if necessary
*/
public EI getAuthorizationIdentifier() {
EI ret = null;
try {
Type t = this.getField(6, 0);
ret = (EI)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-6: "Authorization Identifier" - creates it if necessary
*/
public EI getAut6_AuthorizationIdentifier() {
EI ret = null;
try {
Type t = this.getField(6, 0);
ret = (EI)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-7: "Reimbursement Limit" - creates it if necessary
*/
public CP getReimbursementLimit() {
CP ret = null;
try {
Type t = this.getField(7, 0);
ret = (CP)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-7: "Reimbursement Limit" - creates it if necessary
*/
public CP getAut7_ReimbursementLimit() {
CP ret = null;
try {
Type t = this.getField(7, 0);
ret = (CP)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-8: "Requested Number of Treatments" - creates it if necessary
*/
public NM getRequestedNumberOfTreatments() {
NM ret = null;
try {
Type t = this.getField(8, 0);
ret = (NM)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-8: "Requested Number of Treatments" - creates it if necessary
*/
public NM getAut8_RequestedNumberOfTreatments() {
NM ret = null;
try {
Type t = this.getField(8, 0);
ret = (NM)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-9: "Authorized Number of Treatments" - creates it if necessary
*/
public NM getAuthorizedNumberOfTreatments() {
NM ret = null;
try {
Type t = this.getField(9, 0);
ret = (NM)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-9: "Authorized Number of Treatments" - creates it if necessary
*/
public NM getAut9_AuthorizedNumberOfTreatments() {
NM ret = null;
try {
Type t = this.getField(9, 0);
ret = (NM)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-10: "Process Date" - creates it if necessary
*/
public TS getProcessDate() {
TS ret = null;
try {
Type t = this.getField(10, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* AUT-10: "Process Date" - creates it if necessary
*/
public TS getAut10_ProcessDate() {
TS ret = null;
try {
Type t = this.getField(10, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/** {@inheritDoc} */
protected Type createNewTypeWithoutReflection(int field) {
switch (field) {
case 0: return new CE(getMessage());
case 1: return new CE(getMessage());
case 2: return new ST(getMessage());
case 3: return new TS(getMessage());
case 4: return new TS(getMessage());
case 5: return new EI(getMessage());
case 6: return new CP(getMessage());
case 7: return new NM(getMessage());
case 8: return new NM(getMessage());
case 9: return new TS(getMessage());
default: return null;
}
}
}