Examples of XsltTransformModel


Examples of org.switchyard.transform.config.model.XsltTransformModel

    @Test
    public void testPoolSizeConfiguration() throws Exception {
        XsltTransformFactory factory = new XsltTransformFactory();
        SwitchYardModel switchyard = new ModelPuller<SwitchYardModel>().pull(
                "xslt-config-06.xml", getClass());
        XsltTransformModel model = (XsltTransformModel)
                switchyard.getTransforms().getTransforms().get(0);
        int maxSize = factory.getTransformPoolSize(model);
        Assert.assertEquals(123, maxSize);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.