All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openbp.config.engine.script.BeanShellScriptConfig Maven / Gradle / Ivy

There is a newer version: 0.9.11
Show newest version
package org.openbp.config.engine.script;

import org.openbp.server.engine.script.ScriptEngineFactory;
import org.openbp.server.engine.script.ScriptEngineFactoryImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;


/**
 * Spring configuration that supports using the BeanShell as script interpreter.
 */
@Configuration
public class BeanShellScriptConfig
{
	@Bean
	public ScriptEngineFactory scriptEngine()
	{
		return new ScriptEngineFactoryImpl();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy