Difference between revisions of "SocialFollow"

From LongJump Support Wiki
imported>Aeric
imported>Aeric
 
Line 20: Line 20:
:<syntaxhighlight lang="java" enclose="div">
:<syntaxhighlight lang="java" enclose="div">
SocialRecordBean srb = new SocialRecordBean();  
SocialRecordBean srb = new SocialRecordBean();  
srb.setObjectId();  
srb.setObjectId("__object name__");  
srb.setRecordId();  
srb.setRecordId("__record Id__");  
srb.setFollower(, null);  
srb.setFollower("__user id__", "__user name__");  
Functions.socialFollow(new SocialBean(srb));  
Functions.socialFollow(new SocialBean(srb));  
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 18:57, 12 April 2012

Follow a resource.

Syntax
void Functions.socialFollow(SocialBean sb);
Parameters
SocialBean
An instance of a SocialBean subclass:
Throws
Exception
Example
SocialRecordBean srb = new SocialRecordBean(); 
srb.setObjectId("__object name__"); 
srb.setRecordId("__record Id__"); 
srb.setFollower("__user id__", "__user name__"); 
Functions.socialFollow(new SocialBean(srb));