blob: b1188c8b089141ef41e0906d7a6523e514b747ef [file] [log] [blame]
Pavlin Radoslavov5ab68512013-02-18 09:59:33 -08001package net.floodlightcontroller.flowcache.web;
2
3import net.floodlightcontroller.restserver.RestletRoutable;
4
5import org.restlet.Context;
6import org.restlet.Restlet;
7import org.restlet.routing.Router;
8
9public class FlowWebRoutable implements RestletRoutable {
10 /**
11 * Create the Restlet router and bind to the proper resources.
12 */
13 @Override
14 public Restlet getRestlet(Context context) {
15 Router router = new Router(context);
16 router.attach("/add/{flow}/json", AddFlowResource.class);
17 router.attach("/delete/{flow-id}/json", DeleteFlowResource.class);
18 router.attach("/get/{flow-id}/json", GetFlowByIdResource.class);
19 router.attach("/get/{installer-id}/{data-path-endpoints}/json", GetFlowByInstallerIdResource.class);
20 router.attach("/getall/{data-path-endpoints}/json", GetAllFlowsByEndpointsResource.class);
21 router.attach("/getall/json", GetAllFlowsResource.class);
22 return router;
23 }
24
25 /**
26 * Set the base path for the Topology
27 */
28 @Override
29 public String basePath() {
30 return "/wm/flow";
31 }
32}