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 for patient's death information.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class DeathInformation implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String source;
private OffsetDateTime updatedDate;
private String lastEditedBy;

/**
* The getter for the Source of the death information.
*
* @return the Source of the death information
*/
public String getSource() {
return source;
}

/**
* The setter for the Source of the death information.
*
* @param source the Source of the death information to set
*/
public void setSource(String source) {
this.source = source;
}

/**
* The getter for Updated Date.
*
* @return the Updated Date
*/
public OffsetDateTime getUpdatedDate() {
return updatedDate;
}

/**
* The setter for Updated Date.
*
* @param updatedDate the Updated Date to set
*/
public void setUpdatedDate(OffsetDateTime updatedDate) {
this.updatedDate = updatedDate;
}

/**
* The getter for Last Edited By.
*
* @return the Name of the person it was last edited by
*/
public String getLastEditedBy() {
return lastEditedBy;
}

/**
* The setter for Last Edited By.
*
* @param lastEditedBy the Name of the person to set
*/
public void setLastEditedBy(String lastEditedBy) {
this.lastEditedBy = lastEditedBy;
}
}