Aqualogic Interaction API  
 

IPTSAdmin.getSearchableObjectIDsInRange Method 

Runs a special-purpose query used by Search Repair to check for discrepancies between the database and search index. Returns all indexed objects of a given class ID and within a specified range of object IDs.

int[] getSearchableObjectIDsInRange(
   int lClassID,
   int nLowerBound,
   bool bLowerBoundExclusive,
   int nHigherBound,
   bool bHigherBoundExclusive,
   bool bOnlyApplyLowerBound
);

Parameters

lClassID
object type (PT_CLASSID) to constrain the query
nLowerBound
lower limit of the object ID range
bLowerBoundExclusive
whether the lower bound is included in the range
nHigherBound
upper limit of the object ID range
bHigherBoundExclusive
whether the upper bound is included in the range
bOnlyApplyLowerBound
if true, ignore nHigherBound

Return Value

int[] containing object IDs in range, not necessarily sorted.

See Also

IPTSAdmin Interface | com.plumtree.server.search.admin Namespace