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 |
Ray Milkey | 269ffb9 | 2014-04-03 14:43:30 -0700 | [diff] [blame] | 8 | * |
Umesh Krishnaswamy | 345ee99 | 2012-12-13 20:29:48 -0800 | [diff] [blame] | 9 | * @param routeable |
| 10 | */ |
| 11 | public void addRestletRoutable(RestletRoutable routable); |
| 12 | |
| 13 | /** |
| 14 | * Runs the REST API server |
| 15 | */ |
| 16 | public void run(); |
| 17 | } |