ec.gob.senescyt.sniese.commons.security.Usuario Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sniese-commons Show documentation
Show all versions of sniese-commons Show documentation
Librería que contiene clases de uso comun para sniese hechos en dropwizard
package ec.gob.senescyt.sniese.commons.security;
import java.util.List;
public interface Usuario {
String getNombreUsuario();
String getCredenciales();
String getEmailInstitucional();
String getNombre();
Long getInstitucion();
List getPermisos();
void setCredenciales(String credenciales);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy