Package net.floodlightcontroller.staticflowentry

Examples of net.floodlightcontroller.staticflowentry.StaticFlowEntryPusher



    @Override
    public void setUp() throws Exception {
        super.setUp();
        staticFlowEntryPusher = new StaticFlowEntryPusher();
        storage = createStorageWithFlowEntries();
        dpid = HexString.toLong(TestSwitch1DPID);

        mockSwitch = createNiceMock(IOFSwitch.class);
        writeCapture = new Capture<OFMessage>(CaptureType.ALL);
View Full Code Here



    @Override
    public void setUp() throws Exception {
        super.setUp();
        staticFlowEntryPusher = new StaticFlowEntryPusher();
        storage = createStorageWithFlowEntries();
        dpid = HexString.toLong(TestSwitch1DPID);

        mockSwitch = createNiceMock(IOFSwitch.class);
        writeCapture = new Capture<OFMessage>(CaptureType.ALL);
View Full Code Here

        tps = new MockThreadPoolService(); //dependency for device manager
        deviceManager = new MockDeviceManager();
        topology = createMock(ITopologyService.class);
        routingEngine = createMock(IRoutingService.class);
        restApi = new RestApiServer();
        sfp = new StaticFlowEntryPusher();
        storage = new MemoryStorageSource(); //dependency for sfp
        mockSyncService = new MockSyncService();

        fmc.addService(IRestApiService.class, restApi);
        fmc.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
View Full Code Here

TOP

Related Classes of net.floodlightcontroller.staticflowentry.StaticFlowEntryPusher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.