Package org.jboss.aerogear.controller.router

Examples of org.jboss.aerogear.controller.router.RouteDescriptor


        assertThat(evs.resolveViewPathFor(customErrorRoute)).isEqualTo("/WEB-INF/pages/ErrorTarget/errorPage.jsp");
    }

    @SuppressWarnings("unchecked")
    private Route customErrorRoute(final Class<? extends Throwable> t) throws Exception {
        final RouteDescriptor rd = new RouteDescriptor();
        rd.setPath("ErrorFilter").setThrowables(new HashSet<Class<? extends Throwable>>(Arrays.asList(t)))
                .on(RequestMethod.GET).to(ErrorTarget.class).errorPage();
        return new DefaultRoute(rd);
    }
View Full Code Here

TOP

Related Classes of org.jboss.aerogear.controller.router.RouteDescriptor

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.