Package lumis.socialnetwork
Interface ISocialNetwork
-
- All Known Implementing Classes:
SocialNetwork
@StableMinor(version="16.1", sinceVersion="6.1") public interface ISocialNetwork
Interface that represents the configuration of a Social Network.- Since:
- 6.1.0
- Version:
- $Revision: 26157 $ $Date: 2024-01-13 11:35:03 -0300 (Sat, 13 Jan 2024) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getChannelBaseId()
Returns the channel base id.java.util.Date
getCreationDate()
Returns the creation date.java.lang.String
getId()
Return the id of the social network.java.lang.String
getName()
Returns the name of the social network.java.lang.String
getPersonalPageId()
Returns the personal page id.
-
-
-
Method Detail
-
getChannelBaseId
java.lang.String getChannelBaseId()
Returns the channel base id. One social network has one channel that defines the begin of network and all channels on the hierarchy belongs the same social network.- Returns:
- the channel base id.
- Since:
- 6.1.0
-
getCreationDate
java.util.Date getCreationDate()
Returns the creation date.- Returns:
- the creation date.
- Since:
- 6.1.0
-
getId
java.lang.String getId()
Return the id of the social network.- Returns:
- the id of the social network.
- Since:
- 6.1.0
-
getName
java.lang.String getName()
Returns the name of the social network.- Returns:
- the name of the social network.
- Since:
- 6.1.0
-
getPersonalPageId
java.lang.String getPersonalPageId()
Returns the personal page id. The personal page is one page into the social network that represents the personal page of a user. In this page, is usually instantiated an interface of social profile. When one user of the portal wants to see informations about the social profile of one user, this page is used to show the informations.- Returns:
- the personal page id.
- Since:
- 6.1.0
-
-