blob: a40a508520be535083bfa7ae22170d812aa3914d [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);
Pavlin Radoslavov0e0525e2013-03-04 15:49:11 -080016 router.attach("/add/json", AddFlowResource.class);
Pavlin Radoslavov916832f2013-03-14 17:48:41 -070017 router.attach("/clear/{flow-id}/json", ClearFlowResource.class);
Pavlin Radoslavov5ab68512013-02-18 09:59:33 -080018 router.attach("/delete/{flow-id}/json", DeleteFlowResource.class);
19 router.attach("/get/{flow-id}/json", GetFlowByIdResource.class);
Pavlin Radoslavov706df052013-03-06 10:49:07 -080020 router.attach("/getall-by-installer-id/{installer-id}/{src-dpid}/{src-port}/{dst-dpid}/{dst-port}/json", GetAllFlowsByInstallerIdResource.class);
21 router.attach("/getall-by-endpoints/{src-dpid}/{src-port}/{dst-dpid}/{dst-port}/json", GetAllFlowsByEndpointsResource.class);
Pavlin Radoslavov5ab68512013-02-18 09:59:33 -080022 router.attach("/getall/json", GetAllFlowsResource.class);
23 return router;
24 }
25
26 /**
27 * Set the base path for the Topology
28 */
29 @Override
30 public String basePath() {
31 return "/wm/flow";
32 }
33}