public class Change { private String attribute; private String oldValue; private String newValue; public Change(String attribute, String oldValue, String newValue) { this.attribute = attribute; this.oldValue = oldValue; this.newValue = newValue; } public String getAttribute() { return attribute; } public void setAttribute(String attribute) { this.attribute = attribute; } public String getOldValue() { return oldValue; } public void setOldValue(String oldValue) { this.oldValue = oldValue; } public String getNewValue() { return newValue; } public void setNewValue(String newValue) { this.newValue = newValue; } @Override public String toString() { return "Change{" + "attribute='" + attribute + '\'' + ", oldValue='" + oldValue + '\'' + ", newValue='" + newValue + '\'' + '}'; } }