org.mule.module.scripting.config.ScriptDefinitionParser Maven / Gradle / Ivy
/*
* $Id: ScriptDefinitionParser.java 11195 2008-03-06 04:13:01Z tcarlson $
* --------------------------------------------------------------------------------------
* 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.parsers.assembly.BeanAssembler;
import org.mule.config.spring.parsers.generic.MuleOrphanDefinitionParser;
import org.w3c.dom.Element;
import org.springframework.beans.factory.xml.ParserContext;
public class ScriptDefinitionParser extends MuleOrphanDefinitionParser
{
public ScriptDefinitionParser(boolean singleton)
{
super(singleton);
addIgnored("name");
}
protected Class getBeanClass(org.w3c.dom.Element element)
{
return String.class;
}
protected void postProcess(ParserContext context, BeanAssembler assembler, Element element)
{
assembler.getBean().addConstructorArg(element.getFirstChild().getNodeValue());
super.postProcess(context, assembler, element);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy