Class CommandFactory
The CommandFactory returns Commands that can be used by classes that implement CommandExecutor. Typically more than one Command will want to be executed, where is where the BatchExecution comes in, which takes a List of commands, think of it as CompositeCommand.
Out of the box marshalling to XML is support for the Commands, specifically the BatchExecution command and ExecutionResults, using the Drools Pipeline. If the drools-pipeline module is added then the PipelineFactory can be used in conjunction with the BatchExecutionHelper to marshall to and from XML. BatchExecutionHelper also provides additional documentation on the supported XML format.
`This api is experimental and thus the classes and the interfaces returned are subject to change.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.kie.api.command.Command<org.kie.api.runtime.rule.FactHandle>fromExternalFactHandleCommand(String factHandleExternalForm) static org.kie.api.command.Command<org.kie.api.runtime.rule.FactHandle>fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected) static org.kie.api.command.CommandnewAbortWorkItem(long workItemId) static org.kie.api.command.BatchExecutionCommandnewBatchExecution(List<? extends org.kie.api.command.Command> commands) This is a special composite command and will execute all the supplied commands in turn.static org.kie.api.command.BatchExecutionCommandnewBatchExecution(List<? extends org.kie.api.command.Command> commands, String lookup) static org.kie.api.command.CommandnewCompleteWorkItem(long workItemId, Map<String, Object> results) static org.kie.api.command.CommandnewDelete(org.kie.api.runtime.rule.FactHandle factHandle) static org.kie.api.command.CommandnewDeleteObject(Object object, String entryPoint) static org.kie.api.command.Commandstatic org.kie.api.command.CommandnewEnableAuditLog(String filename) static org.kie.api.command.CommandnewEnableAuditLog(String directory, String filename) static org.kie.api.command.Commandstatic org.kie.api.command.CommandnewFireAllRules(int max) static org.kie.api.command.CommandnewFireAllRules(String outidentifier) static org.kie.api.command.CommandnewGetFactHandle(Object object) static org.kie.api.command.CommandnewGetFactHandleInEntryPoint(Object object, String entryPoint) static org.kie.api.command.CommandnewGetGlobal(String identifier) Gets the global and adds it to the ExecutionResultsstatic org.kie.api.command.CommandnewGetGlobal(String identifier, String outIdentifier) Gets the global and adds it ot the BatchExecutionresults using the alternative outIdentifier.static org.kie.api.command.CommandnewGetObject(org.kie.api.runtime.rule.FactHandle factHandle) static org.kie.api.command.CommandnewGetObject(org.kie.api.runtime.rule.FactHandle factHandle, String outIdentifier) static org.kie.api.command.Commandstatic org.kie.api.command.CommandnewGetObjects(String outIdentifier) static org.kie.api.command.CommandnewGetObjects(org.kie.api.runtime.ObjectFilter filter) static org.kie.api.command.CommandnewGetObjects(org.kie.api.runtime.ObjectFilter filter, String outIdentifier) static org.kie.api.command.CommandInserts a new instancestatic org.kie.api.command.CommandInserts a new instance but references via the outIdentifier, which is returned as part of the ExecutionResultsstatic org.kie.api.command.CommandInserts a new instance but references via the outIdentifier, which is returned as part of the ExecutionResults The outIdentifier can be null.static org.kie.api.command.CommandnewInsertElements(Collection objects) Iterate and insert each of the elements of the Collection.static org.kie.api.command.CommandnewInsertElements(Collection objects, String outIdentifier, boolean returnObject, String entryPoint) Iterate and insert each of the elements of the Collection.static org.kie.api.command.Commandstatic org.kie.api.command.CommandExecutes a query.static org.kie.api.command.CommandExecutes a query using the given parameters.static org.kie.api.command.CommandnewRegisterWorkItemHandlerCommand(org.kie.api.runtime.process.WorkItemHandler handler, String workItemName) static org.kie.api.command.CommandnewSetGlobal(String identifier, Object object) Sets the global.static org.kie.api.command.CommandnewSetGlobal(String identifier, Object object, boolean out) Sets the global but also when the out parameter is true specifies that the global is added to the ExecutionResults.static org.kie.api.command.CommandnewSetGlobal(String identifier, Object object, String outIdentifier) Sets the global but also specifies that the global is added to the ExecutionResults.static org.kie.api.command.Setterstatic org.kie.api.command.CommandnewSignalEvent(String type, Object event) static org.kie.api.command.CommandnewSignalEvent(String processInstanceId, String type, Object event) static org.kie.api.command.CommandnewStartProcess(String processId) Start a processstatic org.kie.api.command.CommandnewStartProcess(String processId, Map<String, Object> parameters) Start a process using the given parameters.
-
Constructor Details
-
CommandFactory
public CommandFactory()
-
-
Method Details
-
newInsert
Inserts a new instance- Parameters:
object-- Returns:
-
newDispose
public static org.kie.api.command.Command newDispose() -
newInsert
Inserts a new instance but references via the outIdentifier, which is returned as part of the ExecutionResults- Parameters:
object-outIdentifier-- Returns:
-
newInsert
public static org.kie.api.command.Command newInsert(Object object, String outIdentifier, boolean returnObject, String entryPoint) Inserts a new instance but references via the outIdentifier, which is returned as part of the ExecutionResults The outIdentifier can be null. The entryPoint, which can also be null, specifies the entrypoint the object is inserted into.- Parameters:
object-outIdentifier-entryPoint-- Returns:
-
newInsertElements
Iterate and insert each of the elements of the Collection.- Parameters:
objects- The objects to insert- Returns:
-
newInsertElements
public static org.kie.api.command.Command newInsertElements(Collection objects, String outIdentifier, boolean returnObject, String entryPoint) Iterate and insert each of the elements of the Collection.- Parameters:
objects- The objects to insertoutIdentifier- Identifier to lookup the returned objectsreturnObject- boolean to specify whether the inserted Collection is part of the ExecutionResultsentryPoint- Optional EntryPoint for the insertions- Returns:
-
newDelete
public static org.kie.api.command.Command newDelete(org.kie.api.runtime.rule.FactHandle factHandle) -
newDeleteObject
-
newGetFactHandle
-
newGetFactHandleInEntryPoint
-
newSetter
-
newModify
public static org.kie.api.command.Command newModify(org.kie.api.runtime.rule.FactHandle factHandle, List<org.kie.api.command.Setter> setters) -
newGetObject
public static org.kie.api.command.Command newGetObject(org.kie.api.runtime.rule.FactHandle factHandle) -
newGetObject
public static org.kie.api.command.Command newGetObject(org.kie.api.runtime.rule.FactHandle factHandle, String outIdentifier) -
newGetObjects
public static org.kie.api.command.Command newGetObjects() -
newGetObjects
-
newGetObjects
public static org.kie.api.command.Command newGetObjects(org.kie.api.runtime.ObjectFilter filter) -
newGetObjects
public static org.kie.api.command.Command newGetObjects(org.kie.api.runtime.ObjectFilter filter, String outIdentifier) -
newSetGlobal
Sets the global. Does not add the global to the ExecutionResults.- Parameters:
identifier- The identifier of the globalobject- The instance to be set as the global.- Returns:
-
newSetGlobal
public static org.kie.api.command.Command newSetGlobal(String identifier, Object object, boolean out) Sets the global but also when the out parameter is true specifies that the global is added to the ExecutionResults.- Parameters:
identifier- The identifier of the globalobject- The instance to be set as the global.out- When true the global will be added to the ExecutionResults using the global's identifier.- Returns:
-
newSetGlobal
public static org.kie.api.command.Command newSetGlobal(String identifier, Object object, String outIdentifier) Sets the global but also specifies that the global is added to the ExecutionResults. Instead of using the global's identifier it uses the outIdentifier when being added to the ExecutionResults.- Parameters:
identifier- The identifier of the globalobject- The instance to be set as the global.outIdentifier- The identifier used to store the global in the ExecutionResults- Returns:
-
newGetGlobal
Gets the global and adds it to the ExecutionResults- Parameters:
identifier-- Returns:
-
newGetGlobal
Gets the global and adds it ot the BatchExecutionresults using the alternative outIdentifier.- Parameters:
identifier- The identifier of the globaloutIdentifier- The identifier used in the ExecutionResults to store the global.- Returns:
-
newFireAllRules
public static org.kie.api.command.Command newFireAllRules() -
newFireAllRules
public static org.kie.api.command.Command newFireAllRules(int max) -
newFireAllRules
-
newStartProcess
Start a process- Parameters:
processId-- Returns:
-
newStartProcess
public static org.kie.api.command.Command newStartProcess(String processId, Map<String, Object> parameters) Start a process using the given parameters.- Parameters:
processId-parameters-- Returns:
-
newSignalEvent
-
newSignalEvent
-
newRegisterWorkItemHandlerCommand
public static org.kie.api.command.Command newRegisterWorkItemHandlerCommand(org.kie.api.runtime.process.WorkItemHandler handler, String workItemName) -
newCompleteWorkItem
-
newAbortWorkItem
public static org.kie.api.command.Command newAbortWorkItem(long workItemId) -
newQuery
Executes a query. The query results will be added to the ExecutionResults using the given identifier.- Parameters:
identifier- The identifier to be used for the results when added to the ExecutionResultsname- The name of the query to execute- Returns:
-
newQuery
public static org.kie.api.command.Command newQuery(String identifier, String name, Object[] arguments) Executes a query using the given parameters. The query results will be added to the ExecutionResults using the given identifier.- Parameters:
identifier- The identifier to be used for the results when added to the ExecutionResultsname- The name of the query to executearguments- The arguments to be used for the query parameters- Returns:
-
newBatchExecution
public static org.kie.api.command.BatchExecutionCommand newBatchExecution(List<? extends org.kie.api.command.Command> commands) This is a special composite command and will execute all the supplied commands in turn.- Parameters:
commands-- Returns:
-
newBatchExecution
public static org.kie.api.command.BatchExecutionCommand newBatchExecution(List<? extends org.kie.api.command.Command> commands, String lookup) - Returns:
-
fromExternalFactHandleCommand
public static org.kie.api.command.Command<org.kie.api.runtime.rule.FactHandle> fromExternalFactHandleCommand(String factHandleExternalForm) -
fromExternalFactHandleCommand
public static org.kie.api.command.Command<org.kie.api.runtime.rule.FactHandle> fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected) -
newEnableAuditLog
-
newEnableAuditLog
-