Interface User
-
- All Known Implementing Classes:
UserImpl
public interface UserAn user of the system.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEmail()StringgetFirstname()StringgetLastname()StringgetPasswordHash()List<? extends org.springframework.security.core.GrantedAuthority>getRoles()UUIDgetUuid()booleanisEnabled()voidsetEmail(String email)voidsetEnabled(boolean enabled)voidsetFirstname(String firstname)voidsetLastname(String lastname)voidsetPasswordHash(String passwordHash)voidsetRoles(List<Role> roles)voidsetUuid(UUID uuid)
-
-
-
Method Detail
-
getEmail
String getEmail()
-
setEmail
void setEmail(String email)
-
getFirstname
String getFirstname()
-
setFirstname
void setFirstname(String firstname)
-
getLastname
String getLastname()
-
setLastname
void setLastname(String lastname)
-
getPasswordHash
String getPasswordHash()
-
setPasswordHash
void setPasswordHash(String passwordHash)
-
getRoles
List<? extends org.springframework.security.core.GrantedAuthority> getRoles()
-
isEnabled
boolean isEnabled()
-
setEnabled
void setEnabled(boolean enabled)
-
getUuid
UUID getUuid()
-
setUuid
void setUuid(UUID uuid)
-
-