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 java.time.OffsetDateTime;

import org.springframework.lang.Nullable;

/**
* This class consists of properties representing a patient's Problem Audit History.
*
* @author Pavani Mukthipudi
* @since 1.0
*/
public class AuditHistory implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String fieldChanged;
private String oldValue;
private String newValue;
private String modifiedBy;

@Nullable
private OffsetDateTime modifiedDate;

/**
* The getter for the field changed.
*
* @return the problem field changed
*/
public String getFieldChanged() {
return fieldChanged;
}

/**
* The setter for the field changed.
*
* @param fieldChanged the problem field changed
*
*/
public void setFieldChanged(String fieldChanged) {
this.fieldChanged = fieldChanged;
}

/**
* The getter for the old value.
*
* @return the old value of the field
*/
public String getOldValue() {
return oldValue;
}

/**
* The setter for the old value.
*
* @param oldValue the old value of the field
*/
public void setOldValue(String oldValue) {
this.oldValue = oldValue;
}

/**
* The getter for the new value.
*
* @return the new value of the field
*/
public String getNewValue() {
return newValue;
}

/**
* The setter for the new value.
*
* @param newValue the new value of the field
*/
public void setNewValue(String newValue) {
this.newValue = newValue;
}

/**
* The getter for the modified by.
*
* @return the name of the person the field was modified by
*/
public String getModifiedBy() {
return modifiedBy;
}

/**
* The setter for the modified by.
*
* @param modifiedBy the name of the person the field was modified by
*/
public void setModifiedBy(String modifiedBy) {
this.modifiedBy = modifiedBy;
}

/**
* The getter for the modified date.
*
* @return the date the field was modified
*/
public OffsetDateTime getModifiedDate() {
return modifiedDate;
}

/**
* The setter for the modified date.
*
* @param modifiedDate the date the field was modified
*/
public void setModifiedDate(OffsetDateTime modifiedDate) {
this.modifiedDate = modifiedDate;
}
}