Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.pbm.ampl.model;

import java.io.Serializable;

/**
* This class consists of properties representing a patient lab. TODO Remove if not needed.
*
* @author Ian Meinert
* @since 1.0
*/
public class Lab implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

/**
* The name of the lab.
*/
private String name;

/**
* The unit value of the lab.
*/
private String unitValue;

/**
* The flag indicator of the lab.
*/
private String flag;

/**
* The range of the lab.
*/
private String range;

/**
* The time the lab was taken.
*/
private String timeTaken;

/**
* The getter for the name.
*
* @return the name of the lab
*/
public String getName() {
return name;
}

/**
* The setter for the name.
*
* @param name the name of the lab
*
*/
public void setName(String name) {
this.name = name;
}

/**
* The getter for the unitValue.
*
* @return the value of the lab unit
*/
public String getUnitValue() {
return unitValue;
}

/**
* The setter for the unitValue.
*
* @param unitValue the value of the lab unit
*
*/
public void setUnitValue(String unitValue) {
this.unitValue = unitValue;
}

/**
* The getter for the flag.
*
* @return the lab flag
*/
public String getFlag() {
return flag;
}

/**
* The setter for the lab.
*
* @param flag the lab flag
*
*/
public void setFlag(String flag) {
this.flag = flag;
}

/**
* The getter for the range.
*
* @return the range of the lab
*/
public String getRange() {
return range;
}

/**
* The setter for the range.
*
* @param range the range of the lab
*
*/
public void setRange(String range) {
this.range = range;
}

/**
* The getter for the timeTaken.
*
* @return the time the lab was taken
*/
public String getTimeTaken() {
return timeTaken;
}

/**
* The setter for the timeTaken.
*
* @param timeTaken the time the lab was taken
*
*/
public void setTimeTaken(String timeTaken) {
this.timeTaken = timeTaken;
}
}