Examples of EndpointConfiguration


Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        TestComponent comp = context.getComponent("test", TestComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("test:my:foo?timeout=1000");

        assertEquals("1000", conf.getParameter("timeout"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        XsltComponent comp = context.getComponent("xslt", XsltComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("xslt:foo?deleteOutputFile=true");

        assertEquals("true", conf.getParameter("deleteOutputFile"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        JpaComponent comp = context.getComponent("jpa", JpaComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("jpa://org.apache.camel.examples.SendEmail"
                + "?usePersist=true&persistenceUnit=custom");

        assertEquals("true", conf.getParameter("usePersist"));
        assertEquals("custom", conf.getParameter("persistenceUnit"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        MailComponent comp = context.getComponent("smtp", MailComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("smtp://james@myhost?password=secret&connectionTimeout=2500");

        assertEquals("secret", conf.getParameter("password"));
        assertEquals("2500", conf.getParameter("connectionTimeout"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        BeanComponent comp = context.getComponent("bean", BeanComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("bean:foo?method=bar");

        assertEquals("bar", conf.getParameter("method"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        DataSetComponent comp = context.getComponent("dataset", DataSetComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("dataset:foo?minRate=3");

        assertEquals("3", conf.getParameter("minRate"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        LanguageComponent comp = context.getComponent("language", LanguageComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("language:simple:foo?transform=false");

        assertEquals("false", conf.getParameter("transform"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        FileComponent comp = context.getComponent("file", FileComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("file:target/foo?delete=true");

        assertEquals("true", conf.getParameter("delete"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        TimerComponent comp = context.getComponent("timer", TimerComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("timer:foo?period=2000");

        assertEquals("2000", conf.getParameter("period"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
View Full Code Here

Examples of org.apache.camel.EndpointConfiguration

    }

    @Test
    public void testComponentConfiguration() throws Exception {
        DataFormatComponent comp = context.getComponent("dataformat", DataFormatComponent.class);
        EndpointConfiguration conf = comp.createConfiguration("dataformaat:marshal:string?charset=iso-8859-1");

        assertEquals("iso-8859-1", conf.getParameter("charset"));

        ComponentConfiguration compConf = comp.createComponentConfiguration();
        String json = compConf.createParameterJsonSchema();
        assertNotNull(json);
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.