blob: 74cccfb99575376f5cff623e58302400e1eef4ce [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
Ray Milkey269ffb92014-04-03 14:43:30 -07002 * 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 **/
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080017
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
Ray Milkey269ffb92014-04-03 14:43:30 -070029 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080030 * @author readams
31 */
32public class CoreWebRoutable implements RestletRoutable {
33 @Override
34 public String basePath() {
Naoki Shiota862cc3b2013-12-13 15:42:50 -080035 return "/wm/floodlight/core";
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080036 }
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);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080047 router.attach("/memory/json", ControllerMemoryResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080048 router.attach("/health/json", HealthCheckResource.class);
49 router.attach("/system/uptime/json", SystemUptimeResource.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080050 return router;
51 }
52}