Examples of WadlComponent


Examples of org.restlet.ext.wadl.WadlComponent

* @author Jerome Louvel
*/
public class WadlTestCase extends RestletTestCase {

    public void testWadl() throws Exception {
        WadlComponent comp = new WadlComponent(
                "clap://class/org/restlet/test/ext/wadl/YahooSearch.wadl");
        WadlApplication app = (WadlApplication) comp.getHosts().get(0)
                .getRoutes().get(0).getNext();
        assertNotNull(app);
        assertEquals(app.getInboundRoot(), app.getRouter());
        assertNotNull(app.getInboundRoot());
    }
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.