org.opends.server.backends.jeb
Class VerifyConfig

java.lang.Object
  extended by org.opends.server.backends.jeb.VerifyConfig

public class VerifyConfig
extends java.lang.Object

This class represents the configuration of a JE backend verification process.


Constructor Summary
VerifyConfig()
          Create a new verify configuration.
 
Method Summary
 void addCleanIndex(java.lang.String index)
          Add the name of an index to those indexes to be verified for cleanliness.
 void addCompleteIndex(java.lang.String index)
          Add the name of an index to those indexes to be verified for completeness.
 DN getBaseDN()
          Get the base DN to be verified.
 java.util.ArrayList<java.lang.String> getCleanList()
          Get the names of indexes to be verified for cleanliness.
 java.util.ArrayList<java.lang.String> getCompleteList()
          Get the names of indexes to be verified for completeness.
 void setBaseDN(DN baseDN)
          Set the base DN to be verified.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

VerifyConfig

public VerifyConfig()
Create a new verify configuration.

Method Detail

getBaseDN

public DN getBaseDN()
Get the base DN to be verified.

Returns:
The base DN to be verified.

setBaseDN

public void setBaseDN(DN baseDN)
Set the base DN to be verified.

Parameters:
baseDN - The base DN to be verified.

getCompleteList

public java.util.ArrayList<java.lang.String> getCompleteList()
Get the names of indexes to be verified for completeness.

Returns:
The names of indexes to be verified for completeness.

addCompleteIndex

public void addCompleteIndex(java.lang.String index)
Add the name of an index to those indexes to be verified for completeness.

Parameters:
index - The name of an index to be verified for completeness.

getCleanList

public java.util.ArrayList<java.lang.String> getCleanList()
Get the names of indexes to be verified for cleanliness.

Returns:
The names of indexes to be verified for cleanliness.

addCleanIndex

public void addCleanIndex(java.lang.String index)
Add the name of an index to those indexes to be verified for cleanliness.

Parameters:
index - The name of an index to be verified for cleanliness.