public static interface ExecEndpointBuilderFactory.ExecEndpointBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
args(String args)
The arguments may be one or many whitespace-separated tokens.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
binding(Object binding)
A reference to a org.apache.commons.exec.ExecBinding in the Registry.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
binding(String binding)
A reference to a org.apache.commons.exec.ExecBinding in the Registry.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
commandExecutor(Object commandExecutor)
A reference to a org.apache.commons.exec.ExecCommandExecutor in the
Registry that customizes the command execution.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
commandExecutor(String commandExecutor)
A reference to a org.apache.commons.exec.ExecCommandExecutor in the
Registry that customizes the command execution.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
commandLogLevel(org.apache.camel.LoggingLevel commandLogLevel)
Logging level to be used for commands during execution.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
commandLogLevel(String commandLogLevel)
Logging level to be used for commands during execution.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
outFile(String outFile)
The name of a file, created by the executable, that should be
considered as its output.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
timeout(long timeout)
The timeout, in milliseconds, after which the executable should be
terminated.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
timeout(String timeout)
The timeout, in milliseconds, after which the executable should be
terminated.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
useStderrOnEmptyStdout(boolean useStderrOnEmptyStdout)
A boolean indicating that when stdout is empty, this component will
populate the Camel Message Body with stderr.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
useStderrOnEmptyStdout(String useStderrOnEmptyStdout)
A boolean indicating that when stdout is empty, this component will
populate the Camel Message Body with stderr.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder |
workingDir(String workingDir)
The directory in which the command should be executed.
|
default ExecEndpointBuilderFactory.ExecEndpointBuilder args(String args)
args - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder binding(Object binding)
binding - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder binding(String binding)
binding - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder commandExecutor(Object commandExecutor)
commandExecutor - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder commandExecutor(String commandExecutor)
commandExecutor - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder commandLogLevel(org.apache.camel.LoggingLevel commandLogLevel)
commandLogLevel - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder commandLogLevel(String commandLogLevel)
commandLogLevel - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder lazyStartProducer(boolean lazyStartProducer)
lazyStartProducer - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder lazyStartProducer(String lazyStartProducer)
lazyStartProducer - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder outFile(String outFile)
outFile - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder timeout(long timeout)
timeout - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder timeout(String timeout)
timeout - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder useStderrOnEmptyStdout(boolean useStderrOnEmptyStdout)
useStderrOnEmptyStdout - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder useStderrOnEmptyStdout(String useStderrOnEmptyStdout)
useStderrOnEmptyStdout - the value to setdefault ExecEndpointBuilderFactory.ExecEndpointBuilder workingDir(String workingDir)
workingDir - the value to setApache Camel