Umesh Krishnaswamy | 345ee99 | 2012-12-13 20:29:48 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.restserver; |
2 | |||||
3 | import net.floodlightcontroller.core.module.IFloodlightService; | ||||
4 | |||||
5 | public interface IRestApiService extends IFloodlightService { | ||||
6 | /** | ||||
7 | * Adds a REST API | ||||
8 | * @param routeable | ||||
9 | */ | ||||
10 | public void addRestletRoutable(RestletRoutable routable); | ||||
11 | |||||
12 | /** | ||||
13 | * Runs the REST API server | ||||
14 | */ | ||||
15 | public void run(); | ||||
16 | } |