All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.overcoded.grid.security.GridUserActivity Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy