blob: 71f662506d40de4f9df50c3c5dd233b516a5fcb4 [file] [log] [blame]
package net.floodlightcontroller.learningswitch;
import java.util.Map;
import net.floodlightcontroller.core.IOFSwitch;
import net.floodlightcontroller.core.module.IFloodlightService;
import net.floodlightcontroller.core.types.MacVlanPair;
public interface ILearningSwitchService extends IFloodlightService {
/**
* Returns the LearningSwitch's learned host table
* @return The learned host table
*/
public Map<IOFSwitch, Map<MacVlanPair,Short>> getTable();
}