org.mule.module.scripting.config.ScriptingNamespaceHandler Maven / Gradle / Ivy
/*
* $Id: ScriptingNamespaceHandler.java 11230 2008-03-06 19:21:00Z acooke $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.scripting.config;
import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
public class ScriptingNamespaceHandler extends AbstractMuleNamespaceHandler
{
public void init()
{
registerIgnoredElement("lang");
registerBeanDefinitionParser("script", new ScriptDefinitionParser(false));
registerBeanDefinitionParser("groovy-refreshable", new GroovyRefreshableBeanBuilderParser(false));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy