Package org.restlet.routing

Examples of org.restlet.routing.TemplateRoute


   * @param context
   * @param router
   * @param folder
   */
  void attachBrowsing(Context context, Router router, String folder) {
    TemplateRoute route = router.attach("/" + folder + "/{path}", ArtifactsResource.class);
    Map<String, Variable> variables = route.getTemplate().getVariables();
    variables.put("path", new Variable(Variable.TYPE_URI_PATH));   
    router.attach("/" + folder, ArtifactsResource.class);
  }
View Full Code Here

TOP

Related Classes of org.restlet.routing.TemplateRoute

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.