Uses of Class
org.apache.camel.component.exec.ExecCommand

Packages that use ExecCommand
org.apache.camel.component.exec   
org.apache.camel.component.exec.impl   
 

Uses of ExecCommand in org.apache.camel.component.exec
 

Methods in org.apache.camel.component.exec that return ExecCommand
 ExecCommand ExecResult.getCommand()
          The executed command, that produced this result.
 ExecCommand ExecBinding.readInput(org.apache.camel.Exchange exchange, ExecEndpoint endpoint)
          Creates a ExecCommand from the headers in the exchange and the settings of the endpoint.
 

Methods in org.apache.camel.component.exec with parameters of type ExecCommand
 ExecResult ExecCommandExecutor.execute(ExecCommand execCommand)
          Executes the command and returns a not-null ExecResult instance.
 

Constructors in org.apache.camel.component.exec with parameters of type ExecCommand
ExecResult(ExecCommand command, InputStream stdout, InputStream stderr, int exitValue)
          Creates a ExecResult instance.
 

Uses of ExecCommand in org.apache.camel.component.exec.impl
 

Methods in org.apache.camel.component.exec.impl that return ExecCommand
 ExecCommand DefaultExecBinding.readInput(org.apache.camel.Exchange exchange, ExecEndpoint endpoint)
           
 

Methods in org.apache.camel.component.exec.impl with parameters of type ExecCommand
 ExecResult DefaultExecCommandExecutor.execute(ExecCommand command)
           
protected  org.apache.commons.exec.DefaultExecutor DefaultExecCommandExecutor.prepareDefaultExecutor(ExecCommand execCommand)
           
protected  org.apache.commons.exec.CommandLine DefaultExecCommandExecutor.toCommandLine(ExecCommand execCommand)
          Transforms an ExecCommand to a CommandLine.
 



Apache Camel