blob: 9125985fa6caa6a3978a3286dfe649951cba1bf7 [file] [log] [blame]
Jonathan Hartd857ad62013-12-14 18:08:17 -08001package net.onrc.onos.ofcontroller.devicemanager;
2
3import net.floodlightcontroller.core.module.IFloodlightService;
4
5/**
6 * {@link OnosDeviceManager} doesn't yet provide any API to fellow modules,
7 * however making it export a dummy service means we can specify it as
8 * a dependency of Forwarding
9 * @author jono
10 *
11 */
12public interface IOnosDeviceService extends IFloodlightService {
13
TeruU80ce5062014-03-03 17:16:13 -080014 public void deleteOnosDevice(OnosDevice dev);
15
16 public void addOnosDevice(Long mac, OnosDevice dev);
17
Jonathan Hartd857ad62013-12-14 18:08:17 -080018}