src.main.java.com.vincomobile.fw.basic.business.VirtualUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vincofw-basic Show documentation
Show all versions of vincofw-basic Show documentation
Vincomobile framework (Basic components)
package com.vincomobile.fw.basic.business;
import com.vincomobile.fw.basic.persistence.model.EntityBean;
import java.util.Date;
public class VirtualUser {
String idUser;
EntityBean realUser;
String password;
Date passwordUpdate;
public VirtualUser(EntityBean realUser, String idUser, String password, Date passwordUpdate) {
this.realUser = realUser;
this.idUser = idUser;
this.password = password;
this.passwordUpdate = passwordUpdate;
}
public VirtualUser(EntityBean realUser, String idUser, String password) {
this.realUser = realUser;
this.idUser = idUser;
this.password = password;
this.passwordUpdate = new Date();
}
public String getIdUser() {
return idUser;
}
public EntityBean getRealUser() {
return realUser;
}
public String getPassword() {
return password;
}
public Date getPasswordUpdate() {
return passwordUpdate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy