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 booleanequals(Object obj)StringgetAvatarUrl()StringgetFullName()StringgetName()StringgetUrl()inthashCode()booleanisFollowedByRemoteUser()voidsetAvatarUrl(String avatarUrl)voidsetFollowedByRemoteUser(boolean followedByRemoteUser)voidsetFullName(String fullName)voidsetName(String name)voidsetUrl(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)
-
-