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

B25496-01

oracle.discussions.sdk
Interface TdMyPosts


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

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

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

B25496-01

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