Class UserDTO
- java.lang.Object
-
- org.powertac.visualizer.service.dto.UserDTO
-
- Direct Known Subclasses:
ManagedUserVM
public class UserDTO extends Object
A DTO representing a user, with his authorities.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>
getAuthorities()
String
getCreatedBy()
Instant
getCreatedDate()
String
getFirstName()
Long
getId()
String
getLangKey()
String
getLastModifiedBy()
Instant
getLastModifiedDate()
String
getLastName()
String
getLogin()
void
setId(Long id)
void
setLastModifiedDate(Instant lastModifiedDate)
void
setLogin(String login)
String
toString()
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getLogin
public String getLogin()
-
setLogin
public void setLogin(String login)
-
getFirstName
public String getFirstName()
-
getLastName
public String getLastName()
-
getLangKey
public String getLangKey()
-
getCreatedBy
public String getCreatedBy()
-
getCreatedDate
public Instant getCreatedDate()
-
getLastModifiedBy
public String getLastModifiedBy()
-
getLastModifiedDate
public Instant getLastModifiedDate()
-
setLastModifiedDate
public void setLastModifiedDate(Instant lastModifiedDate)
-
-