Package org.exoplatform.webconferencing
Class IdentityInfo
- java.lang.Object
-
- org.exoplatform.webconferencing.IdentityInfo
-
public abstract class IdentityInfo extends Object
Identity abstraction for conversations in eXo web conferencing.
Created by The eXo Platform SAS- Version:
- $Id: IdentityInfo.java 00000 Mar 3, 2017 pnedonosko $
- Author:
- Peter Nedonosko
-
-
Field Summary
Fields Modifier and Type Field Description protected StringavatarLinkThe avatar link.static StringEMPTYThe Constant EMPTY.protected StringidThe id.protected StringprofileLinkThe profile link.protected StringtitleThe title.
-
Constructor Summary
Constructors Constructor Description IdentityInfo(String id, String title)Instantiates a new identity info.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetAvatarLink()Gets the avatar link.StringgetId()Gets the id.StringgetProfileLink()Gets the profile link.StringgetTitle()Gets the title.abstract StringgetType()Gets the identity type.inthashCode()abstract booleanisGroup()Checks if it is a group.voidsetAvatarLink(String avatarLink)Sets the avatar link.voidsetProfileLink(String profileLink)Sets the profile link.
-
-
-
Method Detail
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
getTitle
public String getTitle()
Gets the title.- Returns:
- the title
-
getAvatarLink
public String getAvatarLink()
Gets the avatar link.- Returns:
- the avatar link
-
getProfileLink
public String getProfileLink()
Gets the profile link.- Returns:
- the profile link
-
setAvatarLink
public void setAvatarLink(String avatarLink)
Sets the avatar link.- Parameters:
avatarLink- the new avatar link
-
setProfileLink
public void setProfileLink(String profileLink)
Sets the profile link.- Parameters:
profileLink- the new profile link
-
isGroup
public abstract boolean isGroup()
Checks if it is a group.- Returns:
- true, if is a group
-
getType
public abstract String getType()
Gets the identity type.- Returns:
- the type
-
-