Uses of Interface
org.drools.command.Command

Packages that use Command
org.drools.command   
org.drools.runtime The runtime engine classes, including StatefulKnowledgeSession and StatelessKnowledgeSession. 
 

Uses of Command in org.drools.command
 

Subinterfaces of Command in org.drools.command
 interface BatchExecutionCommand
           
 

Methods in org.drools.command that return Command
 Command<FactHandle> CommandFactoryService.fromExternalFactHandleCommand(String factHandleExternalForm)
           
static Command<FactHandle> CommandFactory.fromExternalFactHandleCommand(String factHandleExternalForm)
           
 Command<FactHandle> CommandFactoryService.fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected)
           
static Command<FactHandle> CommandFactory.fromExternalFactHandleCommand(String factHandleExternalForm, boolean disconnected)
           
 Command CommandFactoryService.newAbortWorkItem(long workItemId)
           
static Command CommandFactory.newAbortWorkItem(long workItemId)
           
 Command CommandFactoryService.newCompleteWorkItem(long workItemId, Map<String,Object> results)
           
static Command CommandFactory.newCompleteWorkItem(long workItemId, Map<String,Object> results)
           
 Command CommandFactoryService.newFireAllRules()
           
static Command CommandFactory.newFireAllRules()
           
 Command CommandFactoryService.newFireAllRules(int max)
           
static Command CommandFactory.newFireAllRules(int max)
           
 Command CommandFactoryService.newFireAllRules(String outidentifier)
           
static Command CommandFactory.newFireAllRules(String outidentifier)
           
 Command CommandFactoryService.newGetGlobal(String identifier)
           
static Command CommandFactory.newGetGlobal(String identifier)
          Gets the global and adds it to the ExecutionResults
 Command CommandFactoryService.newGetGlobal(String identifier, String outIdentifier)
           
static Command CommandFactory.newGetGlobal(String identifier, String outIdentifier)
          Gets the global and adds it ot the BatchExecutionresults using the alternative outIdentifier.
 Command CommandFactoryService.newGetObject(FactHandle factHandle)
           
static Command CommandFactory.newGetObject(FactHandle factHandle)
           
 Command CommandFactoryService.newGetObjects()
           
static Command CommandFactory.newGetObjects()
           
 Command CommandFactoryService.newGetObjects(ObjectFilter filter)
           
static Command CommandFactory.newGetObjects(ObjectFilter filter)
           
 Command CommandFactoryService.newInsert(Object object)
           
static Command CommandFactory.newInsert(Object object)
          Inserts a new instance
static Command CommandFactory.newInsert(Object object, String outIdentifier)
          Inserts a new instance but references via the outIdentifier, which is returned as part of the ExecutionResults
 Command CommandFactoryService.newInsert(Object object, String outIdentifier, boolean returnObject, String entryPoint)
           
static Command CommandFactory.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.
 Command CommandFactoryService.newInsertElements(Collection objects)
           
static Command CommandFactory.newInsertElements(Collection objects)
          Iterate and insert each of the elements of the Collection.
 Command CommandFactoryService.newInsertElements(Collection objects, String outIdentifier, boolean returnObject, String entryPoint)
           
static Command CommandFactory.newInsertElements(Collection objects, String outIdentifier, boolean returnObject, String entryPoint)
          Iterate and insert each of the elements of the Collection.
 Command CommandFactoryService.newKBuilderSetPropertyCommand(String id, String name, String value)
           
static Command CommandFactory.newKBuilderSetPropertyCommand(String id, String name, String value)
           
 Command CommandFactoryService.newModify(FactHandle factHandle, List<Setter> setters)
           
static Command CommandFactory.newModify(FactHandle factHandle, List<Setter> setters)
           
 Command CommandFactoryService.newNewKnowledgeBuilderConfigurationCommand(String localId)
           
static Command CommandFactory.newNewKnowledgeBuilderConfigurationCommand(String localId)
           
 Command CommandFactoryService.newQuery(String identifier, String name)
           
static Command CommandFactory.newQuery(String identifier, String name)
          Executes a query.
 Command CommandFactoryService.newQuery(String identifier, String name, Object[] arguments)
           
static Command CommandFactory.newQuery(String identifier, String name, Object[] arguments)
          Executes a query using the given parameters.
 Command CommandFactoryService.newRetract(FactHandle factHandle)
           
static Command CommandFactory.newRetract(FactHandle factHandle)
           
 Command CommandFactoryService.newSetGlobal(String identifie, Object object)
           
static Command CommandFactory.newSetGlobal(String identifier, Object object)
          Sets the global.
 Command CommandFactoryService.newSetGlobal(String identifier, Object object, boolean out)
           
static Command CommandFactory.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.
 Command CommandFactoryService.newSetGlobal(String identifier, Object object, String outIdentifier)
           
static Command CommandFactory.newSetGlobal(String identifier, Object object, String outIdentifier)
          Sets the global but also specifies that the global is added to the ExecutionResults.
 Command CommandFactoryService.newSignalEvent(long processInstanceId, String type, Object event)
           
static Command CommandFactory.newSignalEvent(long processInstanceId, String type, Object event)
           
 Command CommandFactoryService.newSignalEvent(String type, Object event)
           
static Command CommandFactory.newSignalEvent(String type, Object event)
           
 Command CommandFactoryService.newStartProcess(String processId)
           
static Command CommandFactory.newStartProcess(String processId)
          Start a process
 Command CommandFactoryService.newStartProcess(String processId, Map<String,Object> parameters)
           
static Command CommandFactory.newStartProcess(String processId, Map<String,Object> parameters)
          Start a process using the given parameters.
 

Method parameters in org.drools.command with type arguments of type Command
static BatchExecutionCommand CommandFactory.newBatchExecution(List<? extends Command> commands)
          This is a special composite command and will execute all the supplied commands in turn.
 BatchExecutionCommand CommandFactoryService.newBatchExecution(List<? extends Command> commands, String lookup)
           
static BatchExecutionCommand CommandFactory.newBatchExecution(List<? extends Command> commands, String lookup)
           
 

Uses of Command in org.drools.runtime
 

Methods in org.drools.runtime that return types with arguments of type Command
 List<Command> BatchRequestMessage.getCommands()
           
 

Methods in org.drools.runtime with parameters of type Command
<T> T
CommandExecutor.execute(Command<T> command)
          Execute the command and return a ExecutionResults for the results of the Command.
 



Copyright © 2001-2011 JBoss by Red Hat. All Rights Reserved.