#670 - Remove @EntityConcurrencyMode ... this is now rather redundant since 4.x changes

This commit is contained in:
Robin Bygrave
2016-04-28 20:26:17 +12:00
parent 41aace9dc4
commit f0fab77ff7
11 changed files with 18 additions and 44 deletions
@@ -0,0 +1,17 @@
package com.avaje.ebeaninternal.api;
/**
* Optimistic concurrency mode used for updates and deletes.
*/
public enum ConcurrencyMode {
/**
* No concurrency checking.
*/
NONE,
/**
* Use a version column.
*/
VERSION
}