Interface Versionable
-
- All Known Subinterfaces:
IdentifiableNameableVersionable<PK>
,IdentifiableTraceableVersionable<PK,T,U>
,IdentifiableTreeableVersionable<PK,T,TR>
,IdentifiableValidatableVersionable<PK,T>
,IdentifiableVerifiableVersionable<PK>
,IdentifiableVersionable<PK>
,IdentifiableVisibilityVersionable<PK>
,ValidatableVersionable<T>
public interface Versionable
The interfaceVersionable
can be implemented from an data that need a version property for the optimistic lock value.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
COLUMN_NAME_VERSION
The Constant for the column name 'version'.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Integer
getVersion()
Gets the version.void
setVersion(java.lang.Integer version)
Sets the version.
-
-
-
Field Detail
-
COLUMN_NAME_VERSION
static final java.lang.String COLUMN_NAME_VERSION
The Constant for the column name 'version'.- See Also:
- Constant Field Values
-
-