blob: e373cec4b273e4299f8266c557b38b471ea51814 [file] [log] [blame]
Jonathan Hart47016712014-02-07 12:41:35 -08001package net.onrc.onos.ofcontroller.networkgraph.web;
2
Jonathan Hart6df90172014-04-03 10:13:11 -07003import net.onrc.onos.core.datastore.topology.KVSwitch;
Jonathan Hart47016712014-02-07 12:41:35 -08004
5import org.restlet.resource.Get;
6import org.restlet.resource.ServerResource;
7
Yuta HIGUCHIfe1ffe42014-03-26 10:31:46 -07008public class DatastoreSwitchesResource extends ServerResource {
Jonathan Hart47016712014-02-07 12:41:35 -08009
10 @Get("json")
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070011 public Iterable<KVSwitch> retrieve() {
12 return KVSwitch.getAllSwitches();
Jonathan Hart47016712014-02-07 12:41:35 -080013 }
14
15}