Subversion Repositories SmartDukaan

Rev

Rev 28769 | Rev 28966 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28769 Rev 28774
Line 59... Line 59...
59
 
59
 
60
	@Column(name = "last_login_timestap", unique = true, updatable = true)
60
	@Column(name = "last_login_timestap", unique = true, updatable = true)
61
	private LocalDateTime lastLoginTimestamp;
61
	private LocalDateTime lastLoginTimestamp;
62
	
62
	
63
	public String getFullName() {
63
	public String getFullName() {
64
		return (this.firstName + this.lastName).trim();
64
		return (this.firstName + " " + this.lastName).trim();
65
	}
65
	}
66
 
66
 
67
	public Boolean isActive() {
67
	public Boolean isActive() {
68
		return active;
68
		return active;
69
	}
69
	}