Oracle Collaboration Suite Discussions Java API Reference
10g (10.1.1)

Part No. B16232-01


oracle.discussions.sdk
Interface TdMyFollowups

All Superinterfaces:
TdRelatedContent

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.java, TdMessage.java, TdRelatedContent.java

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.

Copyright © 2005, Oracle. All rights reserved.