mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#390 - ENH: Add Change log mechanism - javadoc update - no effective change
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user