io.overcoded.grid.security.GridUserActivity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grid-annotation Show documentation
Show all versions of grid-annotation Show documentation
An annotation library to help generate views, dialogs, and grids.
package io.overcoded.grid.security;
import java.time.LocalDateTime;
public interface GridUserActivity {
T getUser();
ActionType getActionType();
String getEntityType();
Long getEntityId();
String getDifference();
LocalDateTime getTimestamp();
void setUser(T user);
void setActionType(ActionType actionType);
void setEntityType(String entityType);
void setEntityId(Long id);
void setDifference(String difference);
void setTimestamp(LocalDateTime timestamp);
}