Java Doc for PostIndexer.java in  » Forum » mvnforum-1.1 » com » mvnforum » search » post » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Forum » mvnforum 1.1 » com.mvnforum.search.post 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.mvnforum.search.post.PostIndexer

PostIndexer
public class PostIndexer (Code)


Field Summary
final public static  StringFIELD_ATTACHMENT_COUNT
    
final public static  StringFIELD_FORUM_ID
    
final public static  StringFIELD_MEMBER_ID
    
final public static  StringFIELD_POST_BODY
    
final public static  StringFIELD_POST_DATE
    
final public static  StringFIELD_POST_ID
    
final public static  StringFIELD_POST_TOPIC
    
final public static  StringFIELD_THREAD_ID
    
final public static  StringFIELD_WITH_ATTACHMENT
    


Method Summary
static  voidaddPostToIndex(PostBean post)
    
static  voiddeleteForumFromIndex(int forumID)
     This method is used for deleting all posts in a forum from index.
static  voiddeletePostFromIndex(int postID)
     This method is used for deleting post from index.
static  voiddeleteThreadFromIndex(int threadID)
     This method is used for deleting all posts in a thread from index.
static  voiddoIndexPost(PostBean post, IndexWriter writer)
    
static  AnalyzergetAnalyzer()
    
static  IndexWritergetIndexWriter(Directory directory, boolean create)
     This method is used for getting new IndexWriter.
public static  intgetNumDocs()
    
public static  voidscheduleAddPostTask(PostBean postBean)
    
public static  voidscheduleDeletePostTask(int objectID, int objectType)
    
public static  voidscheduleRebuildIndexTask()
    
public static  voidscheduleUpdatePostTask(PostBean postBean)
    
public static  voidscheduleUpdateThreadTask(int threadID)
    

Field Detail
FIELD_ATTACHMENT_COUNT
final public static String FIELD_ATTACHMENT_COUNT(Code)



FIELD_FORUM_ID
final public static String FIELD_FORUM_ID(Code)



FIELD_MEMBER_ID
final public static String FIELD_MEMBER_ID(Code)



FIELD_POST_BODY
final public static String FIELD_POST_BODY(Code)



FIELD_POST_DATE
final public static String FIELD_POST_DATE(Code)



FIELD_POST_ID
final public static String FIELD_POST_ID(Code)



FIELD_POST_TOPIC
final public static String FIELD_POST_TOPIC(Code)



FIELD_THREAD_ID
final public static String FIELD_THREAD_ID(Code)



FIELD_WITH_ATTACHMENT
final public static String FIELD_WITH_ATTACHMENT(Code)





Method Detail
addPostToIndex
static void addPostToIndex(PostBean post) throws SearchException, IOException(Code)
Add single post to index
Parameters:
  post -
throws:
  SearchException -



deleteForumFromIndex
static void deleteForumFromIndex(int forumID) throws SearchException(Code)
This method is used for deleting all posts in a forum from index.
Parameters:
  forumID - id of the forum that should be deleted
throws:
  SearchException -



deletePostFromIndex
static void deletePostFromIndex(int postID) throws SearchException(Code)
This method is used for deleting post from index.
Parameters:
  postID - id of the post that should be deleted
throws:
  SearchException -



deleteThreadFromIndex
static void deleteThreadFromIndex(int threadID) throws SearchException(Code)
This method is used for deleting all posts in a thread from index.
Parameters:
  threadID - id of the thread that should be deleted
throws:
  SearchException -



doIndexPost
static void doIndexPost(PostBean post, IndexWriter writer) throws SearchException(Code)
This method is used for adding single post to index Note: this method does not close the writer
Parameters:
  post - A post that should be indexed
Parameters:
  writer - IndexWriter that is used for storing
throws:
  SearchException -



getAnalyzer
static Analyzer getAnalyzer()(Code)



getIndexWriter
static IndexWriter getIndexWriter(Directory directory, boolean create) throws SearchException(Code)
This method is used for getting new IndexWriter. It can create new index or add post to existing index. Creating new index will delete previous so it should be used for rebuilding index.
Parameters:
  create - - true if new index should be created.- false for adding posts to existing index IndexWriter object that is used for adding posts to index



getNumDocs
public static int getNumDocs()(Code)



scheduleAddPostTask
public static void scheduleAddPostTask(PostBean postBean)(Code)



scheduleDeletePostTask
public static void scheduleDeletePostTask(int objectID, int objectType)(Code)



scheduleRebuildIndexTask
public static void scheduleRebuildIndexTask()(Code)



scheduleUpdatePostTask
public static void scheduleUpdatePostTask(PostBean postBean)(Code)



scheduleUpdateThreadTask
public static void scheduleUpdateThreadTask(int threadID)(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.