Class ScriptMessageSourceSpec
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
org.springframework.integration.dsl.IntegrationComponentSpec<S,H>
org.springframework.integration.dsl.MessageSourceSpec<ScriptMessageSourceSpec,MessageSource<?>>
org.springframework.integration.scripting.dsl.ScriptMessageSourceSpec
- All Implemented Interfaces:
- Aware,- BeanClassLoaderAware,- BeanFactoryAware,- DisposableBean,- FactoryBean<MessageSource<?>>,- InitializingBean,- Lifecycle,- Phased,- SmartLifecycle,- ComponentsRegistration
public class ScriptMessageSourceSpec extends MessageSourceSpec<ScriptMessageSourceSpec,MessageSource<?>> implements ComponentsRegistration
The 
MessageSourceSpec for Dynamic Language Scripts.
 Delegates configuration options to the ScriptSpec.
 Produces MessageProcessorMessageSource.
 *- Since:
- 5.0
- Author:
- Artem Bilan
- See Also:
- ScriptSpec,- MessageProcessorMessageSource
- 
Field SummaryFields inherited from class org.springframework.integration.dsl.IntegrationComponentSpecPARSER, target
- 
Constructor SummaryConstructors Constructor Description ScriptMessageSourceSpec(String scriptLocation)ScriptMessageSourceSpec(Resource scriptResource)
- 
Method SummaryModifier and Type Method Description protected MessageSource<?>doGet()Map<Object,String>getComponentsToRegister()ScriptMessageSourceSpeclang(String lang)The script lang (Groovy, ruby, python etc.).ScriptMessageSourceSpecrefreshCheckDelay(long refreshCheckDelay)The refreshCheckDelay in milliseconds for refreshable script resource.ScriptMessageSourceSpecvariable(String name, Object value)The script variable to use.ScriptMessageSourceSpecvariableGenerator(ScriptVariableGenerator variableGenerator)TheScriptVariableGeneratorto use.ScriptMessageSourceSpecvariables(Map<String,Object> variables)The script variables to use.ScriptMessageSourceSpecvariables(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, stopMethods inherited from class org.springframework.beans.factory.config.AbstractFactoryBeanafterPropertiesSet, destroy, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanClassLoader, setBeanFactory, setSingleton
- 
Constructor Details
- 
Method Details- 
langThe script lang (Groovy, ruby, python etc.).- Parameters:
- lang- the script lang
- Returns:
- the current spec
- See Also:
- ScriptSpec.lang(java.lang.String)
 
- 
variableGeneratorTheScriptVariableGeneratorto use.- Parameters:
- variableGenerator- the- ScriptVariableGenerator
- Returns:
- the current spec
- See Also:
- ScriptSpec.variableGenerator
 
- 
variablesThe script variables to use.- Parameters:
- variables- the script variables
- Returns:
- the current spec
- See Also:
- ScriptSpec.variables(MapBuilder)
 
- 
variablesThe script variables to use.- Parameters:
- variables- the script variables
- Returns:
- the current spec
- See Also:
- ScriptSpec.variables(Map)
 
- 
variableThe script variable to use.- Parameters:
- name- the name of variable
- value- the value of variable
- Returns:
- the current spec
- See Also:
- ScriptSpec.variable(java.lang.String, java.lang.Object)
 
- 
refreshCheckDelayThe refreshCheckDelay in milliseconds for refreshable script resource.- Parameters:
- refreshCheckDelay- the refresh check delay milliseconds
- Returns:
- the current spec
- See Also:
- ScriptSpec.refreshCheckDelay(long)
 
- 
doGet- Overrides:
- doGetin class- IntegrationComponentSpec<ScriptMessageSourceSpec,MessageSource<?>>
 
- 
getComponentsToRegister- Specified by:
- getComponentsToRegisterin interface- ComponentsRegistration
 
 
-