KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > forum > ForumIndexerPlugin


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.communication.forum;
6
7 import org.exoplatform.services.indexing.IndexerPlugin;
8 import org.exoplatform.services.indexing.IndexingService;
9 /**
10  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
11  * @since Sep 12, 2004
12  * @version $Id: ForumIndexerPlugin.java,v 1.2 2004/10/16 21:27:02 tuan08 Exp $
13  */

14 public interface ForumIndexerPlugin extends IndexerPlugin {
15   final static public String JavaDoc IDENTIFIER= "ForumIndexerPlugin" ;
16   final static public String JavaDoc AUTHOR_FIELD = IndexingService.AUTHOR_FIELD ;
17   final static public String JavaDoc SUBJECT_FIELD = IndexingService.TITLE_FIELD ;
18   final static public String JavaDoc BODY_FIELD = IndexingService.DOCUMENT_FIELD ;
19   final static public String JavaDoc CATEGORY_ID_FIELD = "categoryId" ;
20   final static public String JavaDoc FORUM_ID_FIELD = "forumId" ;
21   final static public String JavaDoc TOPIC_ID_FIELD = "topicId" ;
22   final static public String JavaDoc POST_ID_FIELD = "postId" ;
23   final static public String JavaDoc DATE_FIELD = "date" ;
24 }
Popular Tags