nl.vpro.domain.user.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-domain Show documentation
Show all versions of user-domain Show documentation
Domain classes and interfaces related to accountability, users and organizations.
package nl.vpro.domain.user;
import java.time.Instant;
import nl.vpro.domain.Identifiable;
/**
* @author Michiel Meeuwissen
* @since 4.3
*/
public interface User extends Identifiable {
String getPrincipalId();
String getGivenName();
String getFamilyName();
String getDisplayName();
String getEmail();
Instant getLastLogin();
void setLastLogin(Instant instant);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy