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