blob: 71f662506d40de4f9df50c3c5dd233b516a5fcb4 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001package net.floodlightcontroller.learningswitch;
2
3import java.util.Map;
4
5import net.floodlightcontroller.core.IOFSwitch;
6import net.floodlightcontroller.core.module.IFloodlightService;
7import net.floodlightcontroller.core.types.MacVlanPair;
8
9public interface ILearningSwitchService extends IFloodlightService {
10 /**
11 * Returns the LearningSwitch's learned host table
12 * @return The learned host table
13 */
14 public Map<IOFSwitch, Map<MacVlanPair,Short>> getTable();
15}