-
- Type Parameters:
T
- the generic type of time measurementU
- the generic type of the user or account
- All Superinterfaces:
Deletable<T>
- All Known Subinterfaces:
IdentifiableByDeletable<PK,T,U>
,IdentifiableTraceable<PK,T,U>
,IdentifiableTraceableVersionable<PK,T,U>
,Traceable<T,U>
public interface ByDeletable<T,U> extends Deletable<T>
The interfaceByDeletable
can be implemented from an data that needs the data of the point of time from its deletion and who deleted
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
COLUMN_NAME_DELETED_BY
The Constant for the column name 'deletedBy'.-
Fields inherited from interface io.github.astrapi69.data.deletable.Deletable
COLUMN_NAME_DELETED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description U
getDeletedBy()
Gets the user or account that deleted this datavoid
setDeletedBy(U user)
Sets the user or account that deleted this data-
Methods inherited from interface io.github.astrapi69.data.deletable.Deletable
getDeleted, setDeleted
-
-
-
-
Field Detail
-
COLUMN_NAME_DELETED_BY
static final java.lang.String COLUMN_NAME_DELETED_BY
The Constant for the column name 'deletedBy'.- See Also:
- Constant Field Values
-
-