io.overcoded.grid.security.GridUser 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.util.List;
public interface GridUser {
String getEmail();
String getUsername();
String getFullName();
void setUsername(String username);
String getPassword();
void setPassword(String password);
boolean isEnabled();
void setEnabled(boolean enabled);
List extends GridRole> getRoles();
List extends GridUserActivity extends GridUser>> getActivities();
}