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

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

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

    List> getActivities();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy