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

nl.vpro.domain.user.User Maven / Gradle / Ivy

Go to download

Domain classes and interfaces related to accountability, users and organizations.

There is a newer version: 8.3.1
Show newest version
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