blob: 7339d6cea8a2d5bf44d54d24089961e660802ea2 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
2* Copyright 2011, Big Switch Networks, Inc.
3* Originally created by David Erickson, Stanford University
4*
5* Licensed under the Apache License, Version 2.0 (the "License"); you may
6* not use this file except in compliance with the License. You may obtain
7* a copy of the License at
8*
9* http://www.apache.org/licenses/LICENSE-2.0
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14* License for the specific language governing permissions and limitations
15* under the License.
16**/
17
18package net.floodlightcontroller.core.web;
19
20import net.floodlightcontroller.core.module.ModuleLoaderResource;
21import net.floodlightcontroller.restserver.RestletRoutable;
HIGUCHI Yuta8d0d1842013-06-12 11:46:01 -070022import net.onrc.onos.ofcontroller.core.web.ClearFlowTableResource;
HIGUCHI Yutaa56fbde2013-06-17 14:26:05 -070023import net.onrc.onos.ofcontroller.core.web.TopoLinksResource;
HIGUCHI Yuta8d0d1842013-06-12 11:46:01 -070024import net.onrc.onos.ofcontroller.core.web.TopoSwitchesResource;
HIGUCHI Yutae81427f2013-06-12 12:00:02 -070025import net.onrc.onos.ofcontroller.devicemanager.web.TopoDevicesResource;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080026
27import org.restlet.Context;
28import org.restlet.Restlet;
29import org.restlet.routing.Router;
30
31/**
32 * Creates a router to handle all the core web URIs
33 * @author readams
34 */
35public class CoreWebRoutable implements RestletRoutable {
36 @Override
37 public String basePath() {
38 return "/wm/core";
39 }
40
41 @Override
42 public Restlet getRestlet(Context context) {
43 Router router = new Router(context);
44 router.attach("/module/all/json", ModuleLoaderResource.class);
45 router.attach("/module/loaded/json", LoadedModuleLoaderResource.class);
46 router.attach("/switch/{switchId}/role/json", SwitchRoleResource.class);
47 router.attach("/switch/all/{statType}/json", AllSwitchStatisticsResource.class);
48 router.attach("/switch/{switchId}/{statType}/json", SwitchStatisticsResource.class);
49 router.attach("/controller/switches/json", ControllerSwitchesResource.class);
50 router.attach("/counter/{counterTitle}/json", CounterResource.class);
51 router.attach("/counter/{switchId}/{counterName}/json", SwitchCounterResource.class);
52 router.attach("/counter/categories/{switchId}/{counterName}/{layer}/json", SwitchCounterCategoriesResource.class);
53 router.attach("/memory/json", ControllerMemoryResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080054 // Get the last {count} events from the event histories
55 router.attach("/event-history/topology-switch/{count}/json",
56 EventHistoryTopologySwitchResource.class);
57 router.attach("/event-history/topology-link/{count}/json",
58 EventHistoryTopologyLinkResource.class);
59 router.attach("/event-history/topology-cluster/{count}/json",
60 EventHistoryTopologyClusterResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080061 router.attach("/role/json", ControllerRoleResource.class);
62 router.attach("/health/json", HealthCheckResource.class);
63 router.attach("/system/uptime/json", SystemUptimeResource.class);
HIGUCHI Yuta26ffbd62013-06-14 15:24:47 -070064 // Following added by ONOS
Pankaj Berded1259e82013-01-23 14:10:00 -080065 router.attach("/topology/switches/{filter}/json", TopoSwitchesResource.class);
Pankaj Berde5024ec12013-01-31 17:07:29 -080066 router.attach("/topology/links/json", TopoLinksResource.class);
Pankaj Berdeac1a8c32013-02-26 17:45:57 -080067 router.attach("/topology/devices/json", TopoDevicesResource.class);
Jonathan Hart02102892013-04-10 12:55:50 -070068 router.attach("/clearflowtable/json", ClearFlowTableResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080069 return router;
70 }
71}