Umesh Krishnaswamy | 345ee99 | 2012-12-13 20:29:48 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.learningswitch; |
| 2 | |
| 3 | import java.util.Map; |
| 4 | |
| 5 | import net.floodlightcontroller.core.IOFSwitch; |
| 6 | import net.floodlightcontroller.core.module.IFloodlightService; |
| 7 | import net.floodlightcontroller.core.types.MacVlanPair; |
| 8 | |
| 9 | public 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 | } |