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

javaee.module.backend.entities.users.AbstractUserHelper Maven / Gradle / Ivy

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

import java.util.Date;

public abstract class AbstractUserHelper< User > extends AbstractUserHelperParent_2< User > {

	public void setUsername( String username ) {
		this.username = username;
	}

	public void setPassword( String password ) {
		this.password = password;
	}

	public void setIsAccountLocked( Boolean accountLocked ) {
		isAccountLocked = accountLocked;
	}

	public void setIsAccountExpired( Boolean accountExpired ) {
		isAccountExpired = accountExpired;
	}

	public void setIsAccountDisabled( Boolean accountDisabled ) {
		isAccountDisabled = accountDisabled;
	}

	public void setIsPasswordExpired( Boolean passwordExpired ) {
		isPasswordExpired = passwordExpired;
	}

	public void setLastPasswordChangedDate( Date lastPasswordChangedDate ) {
		this.lastPasswordChangedDate = lastPasswordChangedDate;
	}

	public void setIncorrectPasswordCount( Integer incorrectPasswordCount ) {
		this.incorrectPasswordCount = incorrectPasswordCount;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy