blob: 252e66ecbc4172c9f54e1a1b76a454de9dc20d4a [file] [log] [blame]
Jonathan Hart5afde492013-10-01 12:30:53 +13001package net.onrc.onos.ofcontroller.proxyarp;
2
3import java.util.List;
4
5import org.restlet.resource.Get;
6import org.restlet.resource.ServerResource;
7
8public class ArpCacheResource extends ServerResource {
9
10 @Get("json")
11 public List<String> getArpCache() {
12 IProxyArpService arp = (IProxyArpService) getContext().getAttributes().
13 get(IProxyArpService.class.getCanonicalName());
14
15 return arp.getMappings();
16 }
17
18}