public enum ComponentConfigurationPolicy extends Enum<ComponentConfigurationPolicy>
ComponentDescription.getConfigurationPolicy()
.Enum Constant and Description |
---|
IGNORE
The configuration admin is not consulted for a configuration for this component.
|
OPTIONAL
If a configuration is available it will be used, if not the component
will be activated anyway (this is the default).
|
REQUIRE
In order to activate this component a configuration is required.
|
Modifier and Type | Method and Description |
---|---|
static ComponentConfigurationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentConfigurationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentConfigurationPolicy OPTIONAL
public static final ComponentConfigurationPolicy IGNORE
public static final ComponentConfigurationPolicy REQUIRE
public static ComponentConfigurationPolicy[] values()
for (ComponentConfigurationPolicy c : ComponentConfigurationPolicy.values()) System.out.println(c);
public static ComponentConfigurationPolicy 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 © 2006–2015 The Apache Software Foundation. All rights reserved.