com.plumtree.server
Class PT_DOC_ACTION_TYPES

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

public final class PT_DOC_ACTION_TYPES
extends java.lang.Object

Enumeration of search indexing action codes, used by IPTIndexer to return information about the success or failure of indexing requests.

Version:
$Revision$
Author:
MarcusM
See Also:
IPTIndexer

Field Summary
static int PT_DOC_DELETE_ACTION_ID
          Code representing a "delete" action, deleting a searchable item from the search index.
static int PT_DOC_INSERT_ACTION_ID
          Code representing an "insert" action, indexing a complete searchable item in the search index.
static int PT_DOC_PROFILE_ACTION_ID
          Code representing an "profile" action, taxonomizing a card in the search index based on filter matching.
static int PT_DOC_UPDATE_ACTION_ID
          Code representing an "update" action, updating the properties (but not the full-text) of a card in the search index.
static int PT_DOC_UPDATE_ADD_ALL_ACTION_ID
          Code representing an "update add all" action, updating the properties of a document in the search index.
 
Constructor Summary
PT_DOC_ACTION_TYPES()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PT_DOC_INSERT_ACTION_ID

public static final int PT_DOC_INSERT_ACTION_ID
Code representing an "insert" action, indexing a complete searchable item in the search index.

See Also:
Constant Field Values

PT_DOC_DELETE_ACTION_ID

public static final int PT_DOC_DELETE_ACTION_ID
Code representing a "delete" action, deleting a searchable item from the search index.

See Also:
Constant Field Values

PT_DOC_UPDATE_ACTION_ID

public static final int PT_DOC_UPDATE_ACTION_ID
Code representing an "update" action, updating the properties (but not the full-text) of a card in the search index.

See Also:
Constant Field Values

PT_DOC_PROFILE_ACTION_ID

public static final int PT_DOC_PROFILE_ACTION_ID
Code representing an "profile" action, taxonomizing a card in the search index based on filter matching.

See Also:
Constant Field Values

PT_DOC_UPDATE_ADD_ALL_ACTION_ID

public static final int PT_DOC_UPDATE_ADD_ALL_ACTION_ID
Code representing an "update add all" action, updating the properties of a document in the search index.

See Also:
Constant Field Values
Constructor Detail

PT_DOC_ACTION_TYPES

public PT_DOC_ACTION_TYPES()