public static enum ContentStoreCleaner.DeleteFailureAction extends Enum<ContentStoreCleaner.DeleteFailureAction>
Enum Constant and Description |
---|
IGNORE
Failure to clean up a binary is logged, but the URL is discarded for good i.e.
|
KEEP_URL
Failure to clean up the binary is logged and then a URL record is created with a
orphan time of 0; there will be no further attempts to delete the URL binary, but
the record will also not be destroyed.
|
Modifier and Type | Method and Description |
---|---|
static ContentStoreCleaner.DeleteFailureAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentStoreCleaner.DeleteFailureAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentStoreCleaner.DeleteFailureAction IGNORE
public static final ContentStoreCleaner.DeleteFailureAction KEEP_URL
public static ContentStoreCleaner.DeleteFailureAction[] values()
for (ContentStoreCleaner.DeleteFailureAction c : ContentStoreCleaner.DeleteFailureAction.values()) System.out.println(c);
public static ContentStoreCleaner.DeleteFailureAction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2017 Alfresco Software. All rights reserved.