Interface ISocialProfileManager
-
public interface ISocialProfileManager
Manager Interface for Social Profile. This interface provides support to get a social profile information from a user of the a specific social network. The information can be get by given user Id or a given key work.- Since:
- 6.1.0
- Version:
- $Revision: 13752 $ $Date: 2011-10-13 14:10:51 -0300 (Thu, 13 Oct 2011) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISocialProfile
getSocialProfileById(String userId, ISocialNetwork socialNetwork)
Get an instance ofISocialProfile
based in Social Profile identifier.List<ISocialProfile>
getSocialProfilesByKeyword(String userId, ISocialNetwork socialNetwork)
Get a list ofISocialProfile
list of profiles identifier existing.
-
-
-
Method Detail
-
getSocialProfileById
ISocialProfile getSocialProfileById(String userId, ISocialNetwork socialNetwork) throws PortalException
Get an instance ofISocialProfile
based in Social Profile identifier.- Parameters:
userId
- Lumis User Identifier.socialNetwork
- an instance ofISocialNetwork
.- Returns:
- an instance of
ISocialProfile
- Throws:
PortalException
- Since:
- 6.1.0
-
getSocialProfilesByKeyword
List<ISocialProfile> getSocialProfilesByKeyword(String userId, ISocialNetwork socialNetwork) throws PortalException
Get a list ofISocialProfile
list of profiles identifier existing.- Parameters:
userId
- Lumis User Identifier.socialNetwork
- an instanceISocialNetwork
.- Returns:
- a list of instances of
ISocialProfile
- Throws:
PortalException
- Since:
- 6.1.0
-
-