Package org.mule.config.spring.parsers.assembly.configuration

Examples of org.mule.config.spring.parsers.assembly.configuration.SimplePropertyConfiguration


    public static final String SIMPLE = "simple";

    public void testSimple()
    {
        PropertyConfiguration config = new SimplePropertyConfiguration();
        setTestValues(SIMPLE, config);
        verifyTestValues(SIMPLE, config);
        verifyIgnored(SIMPLE, config);
    }
View Full Code Here


    public ThirdPartyContainerDefinitionParser()
    {
        super(ThirdPartyContainer.class, true);
        addIgnored(AbstractMuleBeanDefinitionParser.ATTRIBUTE_NAME);
        addBeanFlag(MuleHierarchicalBeanDefinitionParserDelegate.MULE_NO_RECURSE);
        PropertyConfiguration configuration = new SimplePropertyConfiguration();
        registerPostProcessor(
                new NamedSetterChildElementIterator(
                        "thing", new DefaultBeanAssemblerFactory(), configuration));
    }
View Full Code Here

    public static final String REFERENCE = "reference";
    public static final String WRAPPER = "wrapper";

    public void testTempWrapper()
    {
        PropertyConfiguration reference = new SimplePropertyConfiguration();
        setTestValues(REFERENCE, reference); // as normal
        PropertyConfiguration wrapper = new TempWrapperPropertyConfiguration(reference);
        verifyTestValues(REFERENCE, wrapper); // transparent wrapper
        setTestValues(WRAPPER, wrapper); // add extra values
        verifyTestValues(REFERENCE, wrapper); // original values still visible via wrapper
View Full Code Here

    public static final String WRAPPER = "wrapper";

    @Test
    public void testTempWrapper()
    {
        PropertyConfiguration reference = new SimplePropertyConfiguration();
        setTestValues(REFERENCE, reference); // as normal
        PropertyConfiguration wrapper = new TempWrapperPropertyConfiguration(reference);
        verifyTestValues(REFERENCE, wrapper); // transparent wrapper
        setTestValues(WRAPPER, wrapper); // add extra values
        verifyTestValues(REFERENCE, wrapper); // original values still visible via wrapper
View Full Code Here

    public static final String SIMPLE = "simple";

    @Test
    public void testSimple()
    {
        PropertyConfiguration config = new SimplePropertyConfiguration();
        setTestValues(SIMPLE, config);
        verifyTestValues(SIMPLE, config);
        verifyIgnored(SIMPLE, config);
    }
View Full Code Here

    public ThirdPartyContainerDefinitionParser()
    {
        super(ThirdPartyContainer.class, true);
        addIgnored(AbstractMuleBeanDefinitionParser.ATTRIBUTE_NAME);
        addBeanFlag(MuleHierarchicalBeanDefinitionParserDelegate.MULE_NO_RECURSE);
        PropertyConfiguration configuration = new SimplePropertyConfiguration();
        registerPostProcessor(
                new NamedSetterChildElementIterator(
                        "thing", new DefaultBeanAssemblerFactory(), configuration));
    }
View Full Code Here

TOP

Related Classes of org.mule.config.spring.parsers.assembly.configuration.SimplePropertyConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.