blob: 0e48975f0e0e554559988dd5b434791e135c9c77 [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() {
Naoki Shiota862cc3b2013-12-13 15:42:50 -080034 return "/wm/floodlight/core";
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080035 }
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);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080046 router.attach("/memory/json", ControllerMemoryResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080047 // Get the last {count} events from the event histories
48 router.attach("/event-history/topology-switch/{count}/json",
49 EventHistoryTopologySwitchResource.class);
50 router.attach("/event-history/topology-link/{count}/json",
51 EventHistoryTopologyLinkResource.class);
52 router.attach("/event-history/topology-cluster/{count}/json",
53 EventHistoryTopologyClusterResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080054 router.attach("/health/json", HealthCheckResource.class);
55 router.attach("/system/uptime/json", SystemUptimeResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080056 return router;
57 }
58}