Interface ExecEndpointBuilderFactory.ExecEndpointBuilder

All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
Enclosing interface:
ExecEndpointBuilderFactory

public static interface ExecEndpointBuilderFactory.ExecEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint for the Exec component.
  • Method Details

    • advanced

    • args

      The arguments may be one or many whitespace-separated tokens. The option is a: <code>java.lang.String</code> type. Group: producer
      Parameters:
      args - the value to set
      Returns:
      the dsl builder
    • binding

      default ExecEndpointBuilderFactory.ExecEndpointBuilder binding(org.apache.camel.component.exec.ExecBinding binding)
      A reference to a org.apache.commons.exec.ExecBinding in the Registry. The option is a: <code>org.apache.camel.component.exec.ExecBinding</code> type. Group: producer
      Parameters:
      binding - the value to set
      Returns:
      the dsl builder
    • binding

      A reference to a org.apache.commons.exec.ExecBinding in the Registry. The option will be converted to a <code>org.apache.camel.component.exec.ExecBinding</code> type. Group: producer
      Parameters:
      binding - the value to set
      Returns:
      the dsl builder
    • commandExecutor

      default ExecEndpointBuilderFactory.ExecEndpointBuilder commandExecutor(org.apache.camel.component.exec.ExecCommandExecutor commandExecutor)
      A reference to a org.apache.commons.exec.ExecCommandExecutor in the Registry that customizes the command execution. The default command executor utilizes the commons-exec library, which adds a shutdown hook for every executed command. The option is a: <code>org.apache.camel.component.exec.ExecCommandExecutor</code> type. Group: producer
      Parameters:
      commandExecutor - the value to set
      Returns:
      the dsl builder
    • commandExecutor

      default ExecEndpointBuilderFactory.ExecEndpointBuilder commandExecutor(String commandExecutor)
      A reference to a org.apache.commons.exec.ExecCommandExecutor in the Registry that customizes the command execution. The default command executor utilizes the commons-exec library, which adds a shutdown hook for every executed command. The option will be converted to a <code>org.apache.camel.component.exec.ExecCommandExecutor</code> type. Group: producer
      Parameters:
      commandExecutor - the value to set
      Returns:
      the dsl builder
    • commandLogLevel

      default ExecEndpointBuilderFactory.ExecEndpointBuilder commandLogLevel(org.apache.camel.LoggingLevel commandLogLevel)
      Logging level to be used for commands during execution. The default value is DEBUG. Possible values are TRACE, DEBUG, INFO, WARN, ERROR or OFF. (Values of ExecCommandLogLevelType enum). The option is a: <code>org.apache.camel.LoggingLevel</code> type. Default: DEBUG Group: producer
      Parameters:
      commandLogLevel - the value to set
      Returns:
      the dsl builder
    • commandLogLevel

      default ExecEndpointBuilderFactory.ExecEndpointBuilder commandLogLevel(String commandLogLevel)
      Logging level to be used for commands during execution. The default value is DEBUG. Possible values are TRACE, DEBUG, INFO, WARN, ERROR or OFF. (Values of ExecCommandLogLevelType enum). The option will be converted to a <code>org.apache.camel.LoggingLevel</code> type. Default: DEBUG Group: producer
      Parameters:
      commandLogLevel - the value to set
      Returns:
      the dsl builder
    • exitValues

      default ExecEndpointBuilderFactory.ExecEndpointBuilder exitValues(String exitValues)
      The exit values of successful executions. If the process exits with another value, an exception is raised. Comma-separated list of exit values. And empty list (the default) sets no expected exit values and disables the check. The option is a: <code>java.lang.String</code> type. Group: producer
      Parameters:
      exitValues - the value to set
      Returns:
      the dsl builder
    • outFile

      The name of a file, created by the executable, that should be considered as its output. If no outFile is set, the standard output (stdout) of the executable will be used instead. The option is a: <code>java.lang.String</code> type. Group: producer
      Parameters:
      outFile - the value to set
      Returns:
      the dsl builder
    • timeout

      default ExecEndpointBuilderFactory.ExecEndpointBuilder timeout(long timeout)
      The timeout, in milliseconds, after which the executable should be terminated. If execution has not completed within the timeout, the component will send a termination request. The option is a: <code>long</code> type. Group: producer
      Parameters:
      timeout - the value to set
      Returns:
      the dsl builder
    • timeout

      The timeout, in milliseconds, after which the executable should be terminated. If execution has not completed within the timeout, the component will send a termination request. The option will be converted to a <code>long</code> type. Group: producer
      Parameters:
      timeout - the value to set
      Returns:
      the dsl builder
    • useStderrOnEmptyStdout

      default ExecEndpointBuilderFactory.ExecEndpointBuilder useStderrOnEmptyStdout(boolean useStderrOnEmptyStdout)
      A boolean indicating that when stdout is empty, this component will populate the Camel Message Body with stderr. This behavior is disabled (false) by default. The option is a: <code>boolean</code> type. Default: false Group: producer
      Parameters:
      useStderrOnEmptyStdout - the value to set
      Returns:
      the dsl builder
    • useStderrOnEmptyStdout

      default ExecEndpointBuilderFactory.ExecEndpointBuilder useStderrOnEmptyStdout(String useStderrOnEmptyStdout)
      A boolean indicating that when stdout is empty, this component will populate the Camel Message Body with stderr. This behavior is disabled (false) by default. The option will be converted to a <code>boolean</code> type. Default: false Group: producer
      Parameters:
      useStderrOnEmptyStdout - the value to set
      Returns:
      the dsl builder
    • workingDir

      default ExecEndpointBuilderFactory.ExecEndpointBuilder workingDir(String workingDir)
      The directory in which the command should be executed. If null, the working directory of the current process will be used. The option is a: <code>java.lang.String</code> type. Group: producer
      Parameters:
      workingDir - the value to set
      Returns:
      the dsl builder