Class UserDto
- java.lang.Object
-
- com.atlassian.confluence.plugins.rest.dto.UserDto
-
@Immutable public final class UserDto extends Object
-
-
Constructor Summary
Constructors Constructor Description UserDto(String userName, String fullName, String avatarUrl, String url, String phone, String email, String position, String department, String location, String about, UserPreferencesDto userPreferencesDto, boolean anonymousUser, boolean unknownUser)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAbout()
String
getAvatarUrl()
String
getDepartment()
String
getEmail()
String
getFullName()
String
getLocation()
String
getPhone()
String
getPosition()
String
getUrl()
String
getUserName()
UserPreferencesDto
getUserPreferences()
int
hashCode()
boolean
isAnonymous()
boolean
isUnknownUser()
String
toString()
-
-
-
Method Detail
-
getUserName
public String getUserName()
-
getFullName
public String getFullName()
-
getAvatarUrl
public String getAvatarUrl()
-
getUrl
public String getUrl()
-
getEmail
public String getEmail()
-
getPhone
public String getPhone()
-
getPosition
public String getPosition()
-
getDepartment
public String getDepartment()
-
getLocation
public String getLocation()
-
getAbout
public String getAbout()
-
getUserPreferences
public UserPreferencesDto getUserPreferences()
-
isAnonymous
public boolean isAnonymous()
-
isUnknownUser
public boolean isUnknownUser()
-
-