Package org.kie.api.runtime.conf
Class WorkItemHandlerOption
- java.lang.Object
- 
- org.kie.api.runtime.conf.WorkItemHandlerOption
 
- 
- All Implemented Interfaces:
- Serializable,- Option,- KieSessionOption,- MultiValueKieSessionOption
 
 public class WorkItemHandlerOption extends Object implements MultiValueKieSessionOption WorkItemHandlers configuration option- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringPROPERTY_NAMEThe prefix for the property name for work item handlers
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)static WorkItemHandlerOptionget(String name, WorkItemHandler handler)This is a factory method for this WorkItemHandler configuration.WorkItemHandlergetHandler()StringgetName()StringgetPropertyName()inthashCode()StringtoString()
 
- 
- 
- 
Field Detail- 
PROPERTY_NAMEpublic static final String PROPERTY_NAME The prefix for the property name for work item handlers- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getpublic static WorkItemHandlerOption get(String name, WorkItemHandler handler) This is a factory method for this WorkItemHandler configuration. The factory method is a best practice for the case where the actual object construction is changed in the future.- Parameters:
- name- the name of the work item handler to be configured
- Returns:
- the actual type safe work item handler configuration.
 
 - 
getPropertyNamepublic String getPropertyName() - Specified by:
- getPropertyNamein interface- Option
- Returns:
- the property name for this option
 
 - 
getNamepublic String getName() - Returns:
- the name of the configured work item handler
 
 - 
getHandlerpublic WorkItemHandler getHandler() - Returns:
- the work item handler instance
 
 
- 
 
-