blob: 533b55b5e2c991c42eef880ac61d88969bf9c119 [file] [log] [blame]
Brian O'Connor67c6e662014-02-17 15:20:44 -08001package net.onrc.onos.intent.runtime;
2
3import org.restlet.Context;
4import org.restlet.Restlet;
5import org.restlet.routing.Router;
6
7import net.floodlightcontroller.restserver.RestletRoutable;
8
9public class IntentWebRoutable implements RestletRoutable {
10
11 @Override
12 public Restlet getRestlet(Context context) {
13 Router router = new Router(context);
14 // TODO: add routes
15 return router;
16 }
17
18 @Override
19 public String basePath() {
20 return "/wm/onos/intent";
21 }
22
23}