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 for patient's location information.
*
* @author Ian Meinert
*
*/
public class Location implements Serializable {
private static final long serialVersionUID = 201719442732168177L;
/**
* Name of the location as used by humans.
*/
private String name;
/**
* Type of function performed.
*/
private String specialty;
/**
* Physical form of the location.
* <p>
* e.g. bed, ward, etc.
*/
private String physicalType;
/**
* Organization responsible for provisioning and upkeep.
*/
private Facility facility;
/**
* The getter for the name.
*
* @return the name
*/
public String getName() {
return name;
}
/**
* The setter for the name.
*
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* The getter for the specialty.
*
* @return the specialty
*/
public String getSpecialty() {
return specialty;
}
/**
* The setter for the specialty.
*
* @param specialty the specialty to set
*/
public void setSpecialty(String specialty) {
this.specialty = specialty;
}
/**
* The getter for the physicalType.
*
* @return the physicalType
*/
public String getPhysicalType() {
return physicalType;
}
/**
* The setter for the physicalType.
*
* @param physicalType the physicalType to set
*/
public void setPhysicalType(String physicalType) {
this.physicalType = physicalType;
}
/**
* The getter for the facility.
*
* @return the facility
*/
public Facility getFacility() {
return facility;
}
/**
* The setter for the facility.
*
* @param facility the facility to set
*/
public void setFacility(Facility facility) {
this.facility = facility;
}
}