/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.smartitengineering.user.client.impl.domain; import java.util.Date; /** * * @author modhu7 */ public class User extends AbstractClientDomain<Long> implements com.smartitengineering.user.client.api.User { private String username; private String password; private Date lastModifiedDate; @Override public String getUsername() { return username; } @Override public String getPassword() { return password; } @Override public void setPassword(String password) { this.password = password; } @Override public void setUsername(String username) { this.username = username; } @Override public Date getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(Date lastModifiedDate) { if (lastModifiedDate == null) { return; } this.lastModifiedDate = lastModifiedDate; } }