java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
org.springframework.integration.dsl.IntegrationComponentSpec<S,org.springframework.integration.handler.MessageProcessor<?>>
org.springframework.integration.dsl.MessageProcessorSpec<ScriptSpec>
org.springframework.integration.scripting.dsl.ScriptSpec
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.FactoryBean<org.springframework.integration.handler.MessageProcessor<?>>, org.springframework.beans.factory.InitializingBean, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle

public class ScriptSpec extends org.springframework.integration.dsl.MessageProcessorSpec<ScriptSpec>
The MessageProcessorSpec implementation for the DslScriptExecutingMessageProcessor.
Since:
5.0
  • Field Summary

    Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec

    PARSER, target

    Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

    logger

    Fields inherited from interface org.springframework.beans.factory.FactoryBean

    OBJECT_TYPE_ATTRIBUTE

    Fields inherited from interface org.springframework.context.SmartLifecycle

    DEFAULT_PHASE
  • Method Summary

    Modifier and Type
    Method
    Description
    protected org.springframework.integration.handler.MessageProcessor<?>
     
    lang(String lang)
    The script lang (Groovy, ruby, python etc.).
    refreshCheckDelay(long refreshCheckDelay)
    The refreshCheckDelay in milliseconds for refreshable script resource.
    variable(String name, Object value)
    The script variable to use.
    variables(Map<String,Object> variables)
    The script variables to use
    variables(org.springframework.integration.support.MapBuilder<?,String,Object> variables)
    The script variables to use.

    Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec

    _this, createInstance, destroyInstance, get, getId, getObjectType, getPhase, id, isAutoStartup, isRunning, start, stop, stop

    Methods inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

    afterPropertiesSet, destroy, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanClassLoader, setBeanFactory, setSingleton

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • lang

      public ScriptSpec lang(String lang)
      The script lang (Groovy, ruby, python etc.).
      Parameters:
      lang - the script lang
      Returns:
      the current spec
      See Also:
      • DslScriptExecutingMessageProcessor.setLang(java.lang.String)
    • refreshCheckDelay

      public ScriptSpec refreshCheckDelay(long refreshCheckDelay)
      The refreshCheckDelay in milliseconds for refreshable script resource.
      Parameters:
      refreshCheckDelay - the refresh check delay milliseconds
      Returns:
      the current spec
      See Also:
    • variableGenerator

      public ScriptSpec variableGenerator(ScriptVariableGenerator variableGenerator)
      Parameters:
      variableGenerator - the ScriptVariableGenerator
      Returns:
      the current spec
      See Also:
    • variables

      public ScriptSpec variables(org.springframework.integration.support.MapBuilder<?,String,Object> variables)
      The script variables to use.
      Parameters:
      variables - the script variables MapBuilder
      Returns:
      the current spec
      See Also:
    • variables

      public ScriptSpec variables(Map<String,Object> variables)
      The script variables to use
      Parameters:
      variables - the script variables Map
      Returns:
      the current spec
      See Also:
    • variable

      public ScriptSpec variable(String name, Object value)
      The script variable to use.
      Parameters:
      name - the name of variable
      value - the value of variable
      Returns:
      the current spec
      See Also:
    • doGet

      protected org.springframework.integration.handler.MessageProcessor<?> doGet()
      Overrides:
      doGet in class org.springframework.integration.dsl.IntegrationComponentSpec<ScriptSpec,org.springframework.integration.handler.MessageProcessor<?>>