Package com.google.gerrit.entities
Class UserIdentity
- java.lang.Object
-
- com.google.gerrit.entities.UserIdentity
-
public final class UserIdentity extends Object
-
-
Constructor Summary
Constructors Constructor Description UserIdentity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Account.Id
getAccount()
Instant
getDate()
String
getEmail()
String
getName()
int
getTimeZone()
String
getUsername()
void
setAccount(Account.Id id)
void
setDate(Instant d)
void
setEmail(String e)
void
setName(String n)
void
setTimeZone(int offset)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String n)
-
getEmail
public String getEmail()
-
setEmail
public void setEmail(String e)
-
getUsername
public String getUsername()
-
getDate
public Instant getDate()
-
setDate
public void setDate(Instant d)
-
getTimeZone
public int getTimeZone()
-
setTimeZone
public void setTimeZone(int offset)
-
getAccount
public Account.Id getAccount()
-
setAccount
public void setAccount(Account.Id id)
-
-