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

Part No. B16232-01


oracle.discussions.sdk
Interface TdMyPosts

All Superinterfaces:
TdRelatedContent

public interface TdMyPosts
extends TdRelatedContent

Represents a user's posted threads/messages/replies in oracle discussions.

Sample code snippet illustrating the usage of TdMyPosts.

  //tdStore is an instance of TdStore
  //Extract the TdMyPosts from tdstore instance
  TdMyPosts tdmyp = tdStore.getMyPosts();
  //Extract all the my posts from TdMyPosts instance
  TdIterator tdit = tdmyp.getPopularThreads();
  
Since:
OCS 10.1.1
See Also:
TdThread.java, TdMessage.java, TdRelatedContent.java

Method Summary
TdIterator getMyPosts()
Returns full listing of threads/messages/replies posted by this user at all levels of oracle discussions.

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

Method Detail

getMyPosts

public TdIterator getMyPosts()
Returns full listing of threads/messages/replies posted by this user at all levels of oracle discussions.
Returns:
TdIterator

Copyright © 2005, Oracle. All rights reserved.