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.patientdemographics;

import java.io.Serializable;
import java.time.OffsetDateTime;

/**
* This class consists of properties representing a contact person of the patient.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class EnvironmentalExposure implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String typeOfExposure;
private boolean exposureIndicated;
private String exposureMethod;
private OffsetDateTime registrationDate;
private OffsetDateTime examDate;
private String screeningStatus;

/**
* The getter for type of exposure.
*
* @return the type of exposure
*/
public String getTypeOfExposure() {
return typeOfExposure;
}

/**
* The setter for type of exposure.
*
* @param typeOfExposure the type of exposure to set
*/
public void setTypeOfExposure(String typeOfExposure) {
this.typeOfExposure = typeOfExposure;
}

/**
* The getter for exposure indicated.
*
* @return the exposure indicated
*/
public boolean isExposureIndicated() {
return exposureIndicated;
}

/**
* The setter for exposure indicated.
*
* @param exposureIndicated the exposure indicated to set
*/
public void setExposureIndicated(boolean exposureIndicated) {
this.exposureIndicated = exposureIndicated;
}

/**
* The getter for exposure method.
*
* @return the exposure method
*/
public String getExposureMethod() {
return exposureMethod;
}

/**
* The setter for exposure method.
*
* @param exposureMethod the exposure method to set
*/
public void setExposureMethod(String exposureMethod) {
this.exposureMethod = exposureMethod;
}

/**
* The getter for the registration date.
*
* @return the registration date
*/
public OffsetDateTime getRegistrationDate() {
return registrationDate;
}

/**
* The setter for the registration date.
*
* @param registrationDate the registration date to set
*/
public void setRegistrationDate(OffsetDateTime registrationDate) {
this.registrationDate = registrationDate;
}

/**
* The getter for the exam date.
*
* @return the exam date
*/
public OffsetDateTime getExamDate() {
return examDate;
}

/**
* The setter for the exam date.
*
* @param examDate the exam date to set
*/
public void setExamDate(OffsetDateTime examDate) {
this.examDate = examDate;
}

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

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