com.plumtree.server
Class PT_CATALOGOBJ_STATUS

java.lang.Object
  extended by com.plumtree.server.PT_CATALOGOBJ_STATUS

public final class PT_CATALOGOBJ_STATUS
extends java.lang.Object

This list contains the possible status of objects in the Search Server. This is used to indicate to the Search Update Agent whether an object needs to be indexed, updated, or removed from the search index.

Version:
$Revision$
Author:
StephenC
See Also:
IPTSearchMaintenance

Field Summary
static int PT_CATALOGOBJ_CLEAN
          Indicates that the indexed object in search is synchronized with the object in the database.
static int PT_CATALOGOBJ_DELETED
          Indicates that the indexed object needs to be removed from the search index.
static int PT_CATALOGOBJ_DIRTY
          Indicates that the indexed object needs to be updated for changes made to the object in the database.
static int PT_CATALOGOBJ_INDEX_PENDING
          Indicates that an indexed Card is awaiting full-text indexing.
 
Constructor Summary
PT_CATALOGOBJ_STATUS()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PT_CATALOGOBJ_CLEAN

public static final int PT_CATALOGOBJ_CLEAN
Indicates that the indexed object in search is synchronized with the object in the database.

See Also:
Constant Field Values

PT_CATALOGOBJ_DIRTY

public static final int PT_CATALOGOBJ_DIRTY
Indicates that the indexed object needs to be updated for changes made to the object in the database.

See Also:
Constant Field Values

PT_CATALOGOBJ_DELETED

public static final int PT_CATALOGOBJ_DELETED
Indicates that the indexed object needs to be removed from the search index.

See Also:
Constant Field Values

PT_CATALOGOBJ_INDEX_PENDING

public static final int PT_CATALOGOBJ_INDEX_PENDING
Indicates that an indexed Card is awaiting full-text indexing.

See Also:
Constant Field Values
Constructor Detail

PT_CATALOGOBJ_STATUS

public PT_CATALOGOBJ_STATUS()