Package org.apache.camel.rest.model

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


     * @return
     */
    @GET
    @Path("endpoints")
    public Endpoints getEndpoint() {
        return new Endpoints(camelContext);
    }
View Full Code Here


* @version $Revision: 701583 $
*/
public class EndpointsTest extends TestSupport {

    public void testEndpointsAsXml() throws Exception {
        Endpoints endpoints = resource("endpoints").accept("application/xml").get(Endpoints.class);
        assertValidEndpoints(endpoints);

        endpoints = resource("endpoints.xml").get(Endpoints.class);
        assertValidEndpoints(endpoints);
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.rest.model.Endpoints

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.