Class AbstractSocialProfileProvider
- java.lang.Object
-
- lumis.socialnetwork.socialprofile.AbstractSocialProfileProvider
-
- All Implemented Interfaces:
ISocialProfileProvider
- Direct Known Subclasses:
DouiSourceSocialProfileProvider
@StableMinor(version="14.0", sinceVersion="6.1") public abstract class AbstractSocialProfileProvider extends Object implements ISocialProfileProvider
Implementation ofISocialProfileProvider
to provide a base implementation of a simple social profile provider. It's recommended to extends this class, instead of implementing the interface directly, to have better future compatibility.- Since:
- 6.1.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Field Summary
Fields Modifier and Type Field Description protected ISocialNetwork
socialNetwork
Social Network information that will be used for the methods defined in theISocialProfileProvider
interface.
-
Constructor Summary
Constructors Constructor Description AbstractSocialProfileProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setSocialNetwork(ISocialNetwork socialNetwork)
Sets the social network information on the scope of execution, that will be used by the others methods to extract all informations necessary.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface lumis.socialnetwork.socialprofile.ISocialProfileProvider
getSocialProfileInformationById, getSocialProfileInformationsByKeyword
-
-
-
-
Field Detail
-
socialNetwork
protected ISocialNetwork socialNetwork
Social Network information that will be used for the methods defined in theISocialProfileProvider
interface.- Since:
- 6.1.0
-
-
Method Detail
-
setSocialNetwork
public void setSocialNetwork(ISocialNetwork socialNetwork)
Description copied from interface:ISocialProfileProvider
Sets the social network information on the scope of execution, that will be used by the others methods to extract all informations necessary.- Specified by:
setSocialNetwork
in interfaceISocialProfileProvider
- Parameters:
socialNetwork
- the social network object that contains all informations about it.
-
-