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

javaee.module.backend.models.users.AbstractUserHelperDtoParent_2 Maven / Gradle / Ivy

The newest version!
package javaee.module.backend.models.users;

import java.util.Date;

abstract class AbstractUserHelperDtoParent_2< UserDto > extends AbstractUserHelperDtoParent_1< UserDto > {

	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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy