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

com.jgcomptech.tools.authc.AuthenticationInfo Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.jgcomptech.tools.authc;

import java.io.Serializable;
import java.time.LocalDateTime;

/**
 * Interface used for objects that contain Authentication info.
 * @since 1.5.0
 */
public interface AuthenticationInfo extends Serializable {
    String getUsername();
    boolean isLocked();
    boolean isPasswordExpired();
    LocalDateTime getCreationDate();
    LocalDateTime getPasswordExpirationDate();
    boolean hasPasswordExpiration();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy