Class MongoDBChecker
- java.lang.Object
-
- org.nuxeo.ecm.core.storage.mongodb.MongoDBChecker
-
- All Implemented Interfaces:
BackingChecker
public class MongoDBChecker extends Object implements BackingChecker
- Since:
- 9.2
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONFIG_NAME
static int
DEFAULT_CHECK_TIMEOUT_IN_SECONDS
static String
PARAM_MONGODB_CHECK_TIMEOUT
static String
TEMPLATE_NAME
-
Constructor Summary
Constructors Constructor Description MongoDBChecker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accepts(ConfigurationHolder configHolder)
Test if the check has to be done for the given configuration.void
check(ConfigurationHolder configHolder)
Test the availability of the backing service.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.launcher.config.backingservices.BackingChecker
getDescriptor, getDescriptor, getDescriptor, getDescriptor
-
-
-
-
Field Detail
-
TEMPLATE_NAME
public static final String TEMPLATE_NAME
- See Also:
- Constant Field Values
-
CONFIG_NAME
public static final String CONFIG_NAME
- See Also:
- Constant Field Values
-
PARAM_MONGODB_CHECK_TIMEOUT
public static final String PARAM_MONGODB_CHECK_TIMEOUT
- Since:
- 9.3
- See Also:
- Constant Field Values
-
DEFAULT_CHECK_TIMEOUT_IN_SECONDS
public static final int DEFAULT_CHECK_TIMEOUT_IN_SECONDS
- Since:
- 9.3
- See Also:
- Constant Field Values
-
-
Method Detail
-
accepts
public boolean accepts(ConfigurationHolder configHolder)
Description copied from interface:BackingChecker
Test if the check has to be done for the given configuration.- Specified by:
accepts
in interfaceBackingChecker
- Parameters:
configHolder
- The current configuration- Returns:
- true if
BackingChecker.check(ConfigurationHolder)
has to be called.
-
check
public void check(ConfigurationHolder configHolder) throws ConfigurationException
Description copied from interface:BackingChecker
Test the availability of the backing service.- Specified by:
check
in interfaceBackingChecker
- Parameters:
configHolder
- The current configuration- Throws:
ConfigurationException
- if backing service is not available.
-
-