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