blob: a885bdb27a572195ae72e0e041e92694bd06edbf [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 Radoslavov5ab68512013-02-18 09:59:33 -080017 router.attach("/delete/{flow-id}/json", DeleteFlowResource.class);
18 router.attach("/get/{flow-id}/json", GetFlowByIdResource.class);
Pavlin Radoslavova10a9a82013-02-22 11:47:54 -080019 router.attach("/get/{installer-id}/{src-dpid}/{src-port}/{dst-dpid}/{dst-port}/json", GetFlowByInstallerIdResource.class);
20 router.attach("/getall/{src-dpid}/{src-port}/{dst-dpid}/{dst-port}/json", GetAllFlowsByEndpointsResource.class);
Pavlin Radoslavov5ab68512013-02-18 09:59:33 -080021 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}