HL7QueueItem.java
/**
* The contents of this file are subject to the OpenMRS Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://license.openmrs.org
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* Copyright (C) OpenMRS, LLC. All Rights Reserved.
*/
package org.openmrs.hl7;
import java.util.Date;
import org.openmrs.BaseOpenmrsObject;
/**
* Common representation of {@link HL7InQueue}, {@link HL7InArchive} and {@link HL7InError}.
*
* @since 1.9
* @see HL7InQueue
* @see HL7InArchive
* @see HL7InError
*/
public abstract class HL7QueueItem extends BaseOpenmrsObject {
private HL7Source hl7Source;
private String hl7SourceKey;
private String hl7Data;
private Date dateCreated;
/**
* @return Returns the dateCreated.
*/
public Date getDateCreated() {
return dateCreated;
}
/**
* @param dateCreated The dateCreated to set.
*/
public void setDateCreated(Date dateCreated) {
this.dateCreated = dateCreated;
}
/**
* @return Returns the hl7Data.
*/
public String getHL7Data() {
return hl7Data;
}
/**
* @param hl7Data The hl7Data to set.
*/
public void setHL7Data(String hl7Data) {
this.hl7Data = hl7Data;
}
/**
* @return Returns the hl7Source.
*/
public HL7Source getHL7Source() {
return hl7Source;
}
/**
* @param hl7Source The hl7Source to set.
*/
public void setHL7Source(HL7Source hl7Source) {
this.hl7Source = hl7Source;
}
/**
* @return Returns the hl7SourceKey.
*/
public String getHL7SourceKey() {
return hl7SourceKey;
}
/**
* @param hl7SourceKey The hl7SourceKey to set.
*/
public void setHL7SourceKey(String hl7SourceKey) {
this.hl7SourceKey = hl7SourceKey;
}
}