Interface ByLastModified<T,U>
-
- Type Parameters:
T
- the generic type of time measurementU
- the generic type of the user or account
- All Superinterfaces:
LastModified<T>
- All Known Subinterfaces:
Auditable<T,U>
,IdentifiableByLastModified<PK,T,U>
,IdentifiableTraceable<PK,T,U>
,IdentifiableTraceableVersionable<PK,T,U>
,Traceable<T,U>
public interface ByLastModified<T,U> extends LastModified<T>
The interfaceByLastModified
can be implemented from an data that needs the data of the point of time from its last modification and who last modified
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
COLUMN_NAME_LAST_MODIFIED_BY
The Constant for the column name 'lastModifiedBy'.-
Fields inherited from interface io.github.astrapi69.data.modifiable.LastModified
COLUMN_NAME_LAST_MODIFIED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description U
getLastModifiedBy()
Gets the user or account that last modified this datavoid
setLastModifiedBy(U user)
Sets the user or account that last modified this data-
Methods inherited from interface io.github.astrapi69.data.modifiable.LastModified
getLastModified, setLastModified
-
-
-
-
Field Detail
-
COLUMN_NAME_LAST_MODIFIED_BY
static final java.lang.String COLUMN_NAME_LAST_MODIFIED_BY
The Constant for the column name 'lastModifiedBy'.- See Also:
- Constant Field Values
-
-
Method Detail
-
getLastModifiedBy
U getLastModifiedBy()
Gets the user or account that last modified this data- Returns:
- the user or account that last modified this data
-
setLastModifiedBy
void setLastModifiedBy(U user)
Sets the user or account that last modified this data- Parameters:
user
- the user or account that last modified this data
-
-