Package org.exoplatform.webconferencing
Class IdentityData
- java.lang.Object
-
- org.exoplatform.webconferencing.IdentityData
-
public class IdentityData extends Object
The Class IdentityData.
-
-
Constructor Summary
Constructors Constructor Description IdentityData(String id, String displayName, String type, String avatarUrl)Instantiates a new identity search result.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAvatarUrl()Gets the avatar url.StringgetDisplayName()Gets the display name.StringgetId()Gets the id.StringgetType()Gets the type.voidsetAvatarUrl(String avatarUrl)Sets the avatar url.voidsetDisplayName(String displayName)Sets the display name.voidsetId(String id)Sets the id.voidsetType(String type)Sets the type.
-
-
-
Method Detail
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
setId
public void setId(String id)
Sets the id.- Parameters:
id- the new id
-
getDisplayName
public String getDisplayName()
Gets the display name.- Returns:
- the display name
-
setDisplayName
public void setDisplayName(String displayName)
Sets the display name.- Parameters:
displayName- the new display name
-
getAvatarUrl
public String getAvatarUrl()
Gets the avatar url.- Returns:
- the avatar url
-
setAvatarUrl
public void setAvatarUrl(String avatarUrl)
Sets the avatar url.- Parameters:
avatarUrl- the new avatar url
-
getType
public String getType()
Gets the type.- Returns:
- the type
-
setType
public void setType(String type)
Sets the type.- Parameters:
type- the new type
-
-