Examples of GetVerbDefinition


Examples of org.apache.camel.model.rest.GetVerbDefinition

    public void testParseSimpleRestXml() throws Exception {
        RestDefinition rest = assertOneRest("simpleRest.xml");
        assertEquals("/users", rest.getPath());

        assertEquals(1, rest.getVerbs().size());
        GetVerbDefinition get = (GetVerbDefinition) rest.getVerbs().get(0);
        assertEquals("/view/{id}", get.getUri());
        assertEquals("direct:getUser", get.getTo().getUri());
    }
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.