Class UserEntity
- java.lang.Object
-
- com.atlassian.confluence.plugins.like.rest.entities.UserEntity
-
public class UserEntity extends Object
-
-
Constructor Summary
Constructors Constructor Description UserEntity()
UserEntity(String name)
UserEntity(String name, boolean followedByRemoteUser)
UserEntity(String name, String fullName, String url)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getAvatarUrl()
String
getFullName()
String
getName()
String
getUrl()
int
hashCode()
boolean
isFollowedByRemoteUser()
void
setAvatarUrl(String avatarUrl)
void
setFollowedByRemoteUser(boolean followedByRemoteUser)
void
setFullName(String fullName)
void
setName(String name)
void
setUrl(String url)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getFullName
public String getFullName()
-
setFullName
public void setFullName(String fullName)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getAvatarUrl
public String getAvatarUrl()
-
setAvatarUrl
public void setAvatarUrl(String avatarUrl)
-
isFollowedByRemoteUser
public boolean isFollowedByRemoteUser()
-
setFollowedByRemoteUser
public void setFollowedByRemoteUser(boolean followedByRemoteUser)
-
-