Oracle Discussions Java API Reference
10g Release 1 (10.1.2)

B25496-01

oracle.discussions.sdk
Interface TdMyFollowups


public interface TdMyFollowups
extends TdRelatedContent

Represents the threads/messages/replies to which others oracle discussions users have contributed, after this used did.

Oracle discussions elements names have been changed in the webui compared to that of sdk portion. The existing names to the new names mapping is as shown.

Sample Code snippet illustrating the usage of TdMyFollowups

  //tdStore is a TdStore instance
  //Retrieve the TdMyFollowups instance from tdstore.
  TdMyFollowups tdmyf = tdStore.getMyFollowups();
  //Retrieve the threads from TdMyFollowups
  TdIterator tdit = tdmyf.getPopularThreads();
 
Since:
OCS 10.1.1
See Also:
TdThread, TdMessage, TdRelatedContent

Method Summary
 TdIterator getMyFollowups()
          Returns the threads/messages/replies in oracle discussions which are posted by this user and to which others contributed after this user did.

 

Methods inherited from interface oracle.discussions.sdk.TdRelatedContent
getMostRecentPosts, getPopularThreads

 

Method Detail

getMyFollowups

public TdIterator getMyFollowups()
Returns the threads/messages/replies in oracle discussions which are posted by this user and to which others contributed after this user did. Returns replies-to-my-posts in the form of a TdIterator
Returns:
TdIterator.

Oracle Discussions Java API Reference
10g Release 1 (10.1.2)

B25496-01

Copyright © 2002, 2005, Oracle. All rights reserved.