blob: 2bb39ef380fb8b716da13621ead914d6e2a9b1e7 [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;
Pankaj Berde5024ec12013-01-31 17:07:29 -080021import net.floodlightcontroller.linkdiscovery.web.TopoLinksResource;
Pankaj Berdeac1a8c32013-02-26 17:45:57 -080022import net.floodlightcontroller.devicemanager.web.TopoDevicesResource;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080023import net.floodlightcontroller.restserver.RestletRoutable;
24
25import org.restlet.Context;
26import org.restlet.Restlet;
27import org.restlet.routing.Router;
28
29/**
30 * Creates a router to handle all the core web URIs
31 * @author readams
32 */
33public class CoreWebRoutable implements RestletRoutable {
34 @Override
35 public String basePath() {
36 return "/wm/core";
37 }
38
39 @Override
40 public Restlet getRestlet(Context context) {
41 Router router = new Router(context);
42 router.attach("/module/all/json", ModuleLoaderResource.class);
43 router.attach("/module/loaded/json", LoadedModuleLoaderResource.class);
44 router.attach("/switch/{switchId}/role/json", SwitchRoleResource.class);
45 router.attach("/switch/all/{statType}/json", AllSwitchStatisticsResource.class);
46 router.attach("/switch/{switchId}/{statType}/json", SwitchStatisticsResource.class);
47 router.attach("/controller/switches/json", ControllerSwitchesResource.class);
48 router.attach("/counter/{counterTitle}/json", CounterResource.class);
49 router.attach("/counter/{switchId}/{counterName}/json", SwitchCounterResource.class);
50 router.attach("/counter/categories/{switchId}/{counterName}/{layer}/json", SwitchCounterCategoriesResource.class);
51 router.attach("/memory/json", ControllerMemoryResource.class);
52 router.attach("/packettrace/json", PacketTraceResource.class);
53 // Get the last {count} events from the event histories
54 router.attach("/event-history/topology-switch/{count}/json",
55 EventHistoryTopologySwitchResource.class);
56 router.attach("/event-history/topology-link/{count}/json",
57 EventHistoryTopologyLinkResource.class);
58 router.attach("/event-history/topology-cluster/{count}/json",
59 EventHistoryTopologyClusterResource.class);
60 router.attach("/storage/tables/json", StorageSourceTablesResource.class);
61 router.attach("/controller/summary/json", ControllerSummaryResource.class);
62 router.attach("/role/json", ControllerRoleResource.class);
63 router.attach("/health/json", HealthCheckResource.class);
64 router.attach("/system/uptime/json", SystemUptimeResource.class);
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}