Class ChangeDescriptor
- java.lang.Object
-
- org.neotropic.kuwaiba.core.apis.persistence.ChangeDescriptor
-
public class ChangeDescriptor extends Object
This class is used to summarize a changed made to an object or a set of objects. It's mainly used by those methods that modify objects, and should log those changes in the application's audit trail- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
-
-
Constructor Summary
Constructors Constructor Description ChangeDescriptor()ChangeDescriptor(String affectedProperties, String oldValues, String newValues, String notes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAffectedProperties()StringgetNewValues()StringgetNotes()StringgetOldValues()voidsetAffectedProperties(String affectedProperties)voidsetNewValues(String newValues)voidsetNotes(String notes)voidsetOldValues(String oldValues)
-
-
-
Method Detail
-
getAffectedProperties
public String getAffectedProperties()
-
setAffectedProperties
public void setAffectedProperties(String affectedProperties)
-
getOldValues
public String getOldValues()
-
setOldValues
public void setOldValues(String oldValues)
-
getNewValues
public String getNewValues()
-
setNewValues
public void setNewValues(String newValues)
-
getNotes
public String getNotes()
-
setNotes
public void setNotes(String notes)
-
-