Class ErrorHandling
- java.lang.Object
-
- org.apache.jackrabbit.core.persistence.util.ErrorHandling
-
public final class ErrorHandling extends Object
ErrorHandling configuration abstraction class
-
-
Field Summary
Fields Modifier and Type Field Description static String
IGNORE_MISSING_BLOBS
Controls if references to missing blob resources are treated as errors or not.
-
Constructor Summary
Constructors Constructor Description ErrorHandling()
Creates a default error handling config.ErrorHandling(String str)
Creates a new error handling configuration based on the given string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
ignoreMissingBlobs()
Checks if error handling is set to ignore missing blobsString
toString()
Returns the string representation where the flags are separated with "|".
-
-
-
Field Detail
-
IGNORE_MISSING_BLOBS
public static final String IGNORE_MISSING_BLOBS
Controls if references to missing blob resources are treated as errors or not.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ErrorHandling
public ErrorHandling()
Creates a default error handling config.
-
ErrorHandling
public ErrorHandling(String str)
Creates a new error handling configuration based on the given string. The individual flags should be separated with "|".- Parameters:
str
- flags
-
-