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;

import gov.va.med.pbm.ampl.model.Contact;
import gov.va.med.pbm.ampl.model.Facility;

/**
* This class consists of properties representing a provider.
*
* @author Ian Meinert
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class Provider implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String name;
private Contact contactDetails;
private String role;
private String status;
private Facility facility;

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

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

/**
* The getter for contactDetails.
*
* @return the contactDetails
*/
public Contact getContactDetails() {
return contactDetails;
}

/**
* The setter for contactDetails.
*
* @param contactDetails the contact details to set
*/
public void setContactDetails(Contact contactDetails) {
this.contactDetails = contactDetails;
}

/**
* The getter for role.
*
* @return the role
*/
public String getRole() {
return role;
}

/**
* The setter for role.
*
* @param role the role to set
*/
public void setRole(String role) {
this.role = role;
}

/**
* The getter for status.
*
* @return the status
*/
public String getStatus() {
return status;
}

/**
* The setter for status.
*
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}

/**
* The getter for facility.
*
* @return the facility
*/
public Facility getFacility() {
return facility;
}

/**
* The setter for facility.
*
* @param facility the facility to set
*/
public void setFacility(Facility facility) {
this.facility = facility;
}
}