javaee.module.backend.entities.users.AbstractUserHelperParent_2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.entities.users;
import java.util.Date;
abstract class AbstractUserHelperParent_2< User > extends AbstractUserHelperParent_1< User > {
public String getUsername( ) {
return username;
}
public String getPassword( ) {
return password;
}
public Boolean getIsAccountLocked( ) {
return isAccountLocked;
}
public Boolean getIsAccountExpired( ) {
return isAccountExpired;
}
public Boolean getIsAccountDisabled( ) {
return isAccountDisabled;
}
public Boolean getIsPasswordExpired( ) {
return isPasswordExpired;
}
public Date getLastPasswordChangedDate( ) {
return lastPasswordChangedDate;
}
public Integer getIncorrectPasswordCount( ) {
return incorrectPasswordCount;
}
}