#390 - ENH: Add Change log mechanism - javadoc update - no effective change

This commit is contained in:
Robin Bygrave
2015-08-25 08:12:22 +12:00
parent fe8a32ea18
commit efad23d482
2 changed files with 12 additions and 0 deletions
@@ -26,6 +26,12 @@ public enum ChangeType {
this.code = code;
}
/**
* Return the short code for the ChangeType.
* <p>
* I - Insert, U - Update and D - Delete.
* </p>
*/
public String getCode() {
return code;
}
@@ -34,6 +34,12 @@ public enum TxnState {
this.code = code;
}
/**
* Return the short code for the transaction state.
* <p>
* C - Committed, R - Rollback and I for In progress.
* </p>
*/
public String getCode() {
return code;
}