-
- Type Parameters:
T
- the generic type of time measurement
- All Known Subinterfaces:
Auditable<T,U>
,ByLastModified<T,U>
,IdentifiableByLastModified<PK,T,U>
,IdentifiableLastModified<PK,T>
,IdentifiableTraceable<PK,T,U>
,IdentifiableTraceableVersionable<PK,T,U>
,Traceable<T,U>
public interface LastModified<T>
The interfaceLastModified
can be implemented from an data that needs the data of the point of time from its last modification
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
COLUMN_NAME_LAST_MODIFIED
The Constant for the column name 'lastModified'.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getLastModified()
Gets the point of time from the last modificationvoid
setLastModified(T created)
Sets the point of time from the last modification
-
-
-
Field Detail
-
COLUMN_NAME_LAST_MODIFIED
static final java.lang.String COLUMN_NAME_LAST_MODIFIED
The Constant for the column name 'lastModified'.- See Also:
- Constant Field Values
-
-
Method Detail
-
getLastModified
T getLastModified()
Gets the point of time from the last modification- Returns:
- the point of time from the last modification
-
setLastModified
void setLastModified(T created)
Sets the point of time from the last modification- Parameters:
created
- the new point of time from the last modification
-
-