public enum RuleEngineProperties extends java.lang.Enum<RuleEngineProperties>
Enum Constant and Description |
---|
CUSTOM_RULE_MONITOR_LISTENER
Property name for custom rule monitor listener configuration
|
MAX_DISPATCHER_QUEUE_SIZE
The property name for maximum size of the rule action dispatcher queue
|
MONITOR_REQ_AND_RESPONSE
Property name for configuration used to monitor (persist) request and
response data of external rule actions
|
PUBLISH_AUDIT
Deprecated.
use
CUSTOM_RULE_MONITOR_LISTENER instead |
RULE_AUDIT
The property name for rule monitor
|
RULESET_CACHE_SIZE
The property name for maximum size of rule set cache
|
THREAD_POOL_SIZE
The property name for rule action thread pool size
|
Modifier and Type | Method and Description |
---|---|
static RuleEngineProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RuleEngineProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleEngineProperties RULE_AUDIT
public static final RuleEngineProperties MONITOR_REQ_AND_RESPONSE
@Deprecated public static final RuleEngineProperties PUBLISH_AUDIT
CUSTOM_RULE_MONITOR_LISTENER
insteadpublic static final RuleEngineProperties CUSTOM_RULE_MONITOR_LISTENER
public static final RuleEngineProperties THREAD_POOL_SIZE
public static final RuleEngineProperties MAX_DISPATCHER_QUEUE_SIZE
public static final RuleEngineProperties RULESET_CACHE_SIZE
public static RuleEngineProperties[] values()
for (RuleEngineProperties c : RuleEngineProperties.values()) System.out.println(c);
public static RuleEngineProperties valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null