• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java RestApiServer类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中net.floodlightcontroller.restserver.RestApiServer的典型用法代码示例。如果您正苦于以下问题:Java RestApiServer类的具体用法?Java RestApiServer怎么用?Java RestApiServer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



RestApiServer类属于net.floodlightcontroller.restserver包,在下文中一共展示了RestApiServer类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
    storageSource = new MemoryStorageSource();
    restApi = new RestApiServer();
    FloodlightModuleContext fmc = new FloodlightModuleContext();
    fmc.addService(IRestApiService.class, restApi);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    restApi.init(fmc);
    storageSource.init(fmc);
    restApi.startUp(fmc);
    storageSource.startUp(fmc);
    super.setUp();
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:14,代码来源:MemoryStorageTest.java


示例2: testHARoleChanged

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Test 
  public void testHARoleChanged() throws IOException {
      StaticFlowEntryPusher staticFlowEntryPusher = new StaticFlowEntryPusher();
      IStorageSourceService storage = createStorageWithFlowEntries();
      MockFloodlightProvider mfp = getMockFloodlightProvider();
      staticFlowEntryPusher.setFloodlightProvider(mfp);
      staticFlowEntryPusher.setStorageSource(storage);
      RestApiServer restApi = new RestApiServer();
      try {
          FloodlightModuleContext fmc = new FloodlightModuleContext();
          restApi.init(fmc);
      } catch (FloodlightModuleException e) {
          e.printStackTrace();
      }

      staticFlowEntryPusher.startUp(null);    // again, to hack unittest
      

      
      // Send a notification that we've changed to slave
    //  mfp.dispatchRoleChanged(null, Role.SLAVE);
 //####     mfp.dispatchMessage(Role.SLAVE, Role.MASTER);
      // Make sure we've removed all our entries
      
      // Send a notification that we've changed to master
//#####      mfp.dispatchRoleChanged(Role.SLAVE, Role.MASTER);  
      // Make sure we've learned the entries
     
  }
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:30,代码来源:flowProgram.java


示例3: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext cntx = new FloodlightModuleContext();
    ldm = new TestLinkDiscoveryManager();
    TopologyManager routingEngine = new TopologyManager();
    ldm.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
    MockThreadPoolService tp = new MockThreadPoolService();
    RestApiServer restApi = new RestApiServer();
    cntx.addService(IRestApiService.class, restApi);
    cntx.addService(IThreadPoolService.class, tp);
    cntx.addService(IRoutingService.class, routingEngine);
    cntx.addService(ILinkDiscoveryService.class, ldm);
    cntx.addService(ITopologyService.class, ldm);
    cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
    cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
    restApi.init(cntx);
    tp.init(cntx);
    routingEngine.init(cntx);
    ldm.init(cntx);
    restApi.startUp(cntx);
    tp.startUp(cntx);
    routingEngine.startUp(cntx);
    ldm.startUp(cntx);

    IOFSwitch sw1 = createMockSwitch(1L);
    IOFSwitch sw2 = createMockSwitch(2L);
    Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
    switches.put(1L, sw1);
    switches.put(2L, sw2);
    getMockFloodlightProvider().setSwitches(switches);
    replay(sw1, sw2);
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:35,代码来源:LinkDiscoveryManagerTest.java


示例4: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@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);
    contextCapture = new Capture<FloodlightContext>(CaptureType.ALL);
    writeCaptureList = new Capture<List<OFMessage>>(CaptureType.ALL);

    //OFMessageSafeOutStream mockOutStream = createNiceMock(OFMessageSafeOutStream.class);
    mockSwitch.write(capture(writeCapture), capture(contextCapture));
    expectLastCall().anyTimes();
    mockSwitch.write(capture(writeCaptureList), capture(contextCapture));
    expectLastCall().anyTimes();
    mockSwitch.flush();
    expectLastCall().anyTimes();


    FloodlightModuleContext fmc = new FloodlightModuleContext();
    fmc.addService(IStorageSourceService.class, storage);

    MockFloodlightProvider mockFloodlightProvider = getMockFloodlightProvider();
    Map<Long, IOFSwitch> switchMap = new HashMap<Long, IOFSwitch>();
    switchMap.put(dpid, mockSwitch);
    // NO ! expect(mockFloodlightProvider.getSwitches()).andReturn(switchMap).anyTimes();
    mockFloodlightProvider.setSwitches(switchMap);
    fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
    RestApiServer restApi = new RestApiServer();
    fmc.addService(IRestApiService.class, restApi);
    restApi.init(fmc);
    staticFlowEntryPusher.init(fmc);
    staticFlowEntryPusher.startUp(fmc);    // again, to hack unittest
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:37,代码来源:StaticFlowTests.java


示例5: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
    storageSource = new MemoryStorageSource();
    restApi = new RestApiServer();
    FloodlightModuleContext fmc = new FloodlightModuleContext();
    fmc.addService(IRestApiService.class, restApi);
    restApi.init(fmc);
    storageSource.init(fmc);
    restApi.startUp(fmc);
    storageSource.startUp(fmc);
    super.setUp();
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:13,代码来源:MemoryStorageTest.java


示例6: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext cntx = new FloodlightModuleContext();
    ldm = new TestLinkDiscoveryManager();
    TopologyManager routingEngine = new TopologyManager();
    ldm.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
    MockThreadPoolService tp = new MockThreadPoolService();
    RestApiServer restApi = new RestApiServer();
    cntx.addService(IRestApiService.class, restApi);
    cntx.addService(IThreadPoolService.class, tp);
    cntx.addService(IRoutingService.class, routingEngine);
    cntx.addService(ILinkDiscoveryService.class, ldm);
    cntx.addService(ITopologyService.class, ldm);
    cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
    cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
    restApi.init(cntx);
    tp.init(cntx);
    routingEngine.init(cntx);
    ldm.init(cntx);
    restApi.startUp(cntx);
    tp.startUp(cntx);
    routingEngine.startUp(cntx);
    ldm.startUp(cntx);

    IOFSwitch sw1 = createMockSwitch(1L);
    IOFSwitch sw2 = createMockSwitch(2L);
    Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
    switches.put(1L, sw1);
    switches.put(2L, sw2);
    getMockFloodlightProvider().setSwitches(switches);
    replay(sw1, sw2);
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:34,代码来源:LinkDiscoveryManagerTest.java


示例7: testHARoleChanged

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Test 
public void testHARoleChanged() throws IOException {
    StaticFlowEntryPusher staticFlowEntryPusher = new StaticFlowEntryPusher();
    IStorageSourceService storage = createStorageWithFlowEntries();
    MockFloodlightProvider mfp = getMockFloodlightProvider();
    staticFlowEntryPusher.setFloodlightProvider(mfp);
    staticFlowEntryPusher.setStorageSource(storage);
    RestApiServer restApi = new RestApiServer();
    try {
        FloodlightModuleContext fmc = new FloodlightModuleContext();
        restApi.init(fmc);
    } catch (FloodlightModuleException e) {
        e.printStackTrace();
    }
    staticFlowEntryPusher.restApi = restApi;
    staticFlowEntryPusher.startUp(null);    // again, to hack unittest
    
    assert(staticFlowEntryPusher.entry2dpid.containsValue(TestSwitch1DPID));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod1));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod2));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod3));
    
    // Send a notification that we've changed to slave
    mfp.dispatchRoleChanged(null, Role.SLAVE);
    // Make sure we've removed all our entries
    assert(staticFlowEntryPusher.entry2dpid.isEmpty());
    assert(staticFlowEntryPusher.entriesFromStorage.isEmpty());
    
    // Send a notification that we've changed to master
    mfp.dispatchRoleChanged(Role.SLAVE, Role.MASTER);  
    // Make sure we've learned the entries
    assert(staticFlowEntryPusher.entry2dpid.containsValue(TestSwitch1DPID));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod1));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod2));
    assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod3));
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:37,代码来源:StaticFlowTests.java


示例8: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Override
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext fmc = new FloodlightModuleContext();
    
    FloodlightProvider cm = new FloodlightProvider();
    controller = (Controller)cm.getServiceImpls().get(IFloodlightProviderService.class);
    fmc.addService(IFloodlightProviderService.class, controller);
    
    MemoryStorageSource memstorage = new MemoryStorageSource();
    fmc.addService(IStorageSourceService.class, memstorage);
    
    RestApiServer restApi = new RestApiServer();
    fmc.addService(IRestApiService.class, restApi);
    
    CounterStore cs = new CounterStore();
    fmc.addService(ICounterStoreService.class, cs);
    
    PktInProcessingTime ppt = new PktInProcessingTime();
    fmc.addService(IPktInProcessingTimeService.class, ppt);
    
    tp = new MockThreadPoolService();
    fmc.addService(IThreadPoolService.class, tp);
    
    ppt.init(fmc);
    restApi.init(fmc);
    memstorage.init(fmc);
    cm.init(fmc);
    tp.init(fmc);
    ppt.startUp(fmc);
    restApi.startUp(fmc);
    memstorage.startUp(fmc);
    cm.startUp(fmc);
    tp.startUp(fmc);
}
 
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:36,代码来源:ControllerTest.java


示例9: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext cntx = new FloodlightModuleContext();
    ldm = new LinkDiscoveryManager();
    MockThreadPoolService tp = new MockThreadPoolService();
    RestApiServer restApi = new RestApiServer();
    IControllerRegistryService registry =
            createMock(IControllerRegistryService.class);
    expect(registry.hasControl(anyLong())).andReturn(true).anyTimes();
    replay(registry);
    cntx.addService(IControllerRegistryService.class, registry);
    cntx.addService(IRestApiService.class, restApi);
    cntx.addService(IThreadPoolService.class, tp);
    cntx.addService(ILinkDiscoveryService.class, ldm);
    cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
    restApi.init(cntx);
    tp.init(cntx);
    ldm.init(cntx);
    restApi.startUp(cntx);
    tp.startUp(cntx);
    ldm.startUp(cntx);

    IOFSwitch sw1 = createMockSwitch(1L);
    IOFSwitch sw2 = createMockSwitch(2L);
    Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
    switches.put(1L, sw1);
    switches.put(2L, sw2);
    getMockFloodlightProvider().setSwitches(switches);
    replay(sw1, sw2);
}
 
开发者ID:opennetworkinglab,项目名称:spring-open,代码行数:33,代码来源:LinkDiscoveryManagerTest.java


示例10: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext fmc = new FloodlightModuleContext();

    FloodlightProvider floodlightProvider = new FloodlightProvider();

    controller = (Controller) floodlightProvider.getServiceImpls().get(
            IFloodlightProviderService.class);
    fmc.addService(IFloodlightProviderService.class, controller);

    RestApiServer restApi = new RestApiServer();
    fmc.addService(IRestApiService.class, restApi);

    DebugCounter counterService = new DebugCounter();
    fmc.addService(IDebugCounterService.class, counterService);

    threadPool = new MockThreadPoolService();
    fmc.addService(IThreadPoolService.class, threadPool);

    IControllerRegistryService registry =
            createMock(IControllerRegistryService.class);
    fmc.addService(IControllerRegistryService.class, registry);
    LinkDiscoveryManager linkDiscovery = new LinkDiscoveryManager();
    fmc.addService(ILinkDiscoveryService.class, linkDiscovery);

    restApi.init(fmc);
    floodlightProvider.init(fmc);
    threadPool.init(fmc);
    linkDiscovery.init(fmc);
    restApi.startUp(fmc);
    floodlightProvider.startUp(fmc);
    threadPool.startUp(fmc);
}
 
开发者ID:opennetworkinglab,项目名称:spring-open,代码行数:36,代码来源:ControllerTest.java


示例11: setUp

import net.floodlightcontroller.restserver.RestApiServer; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
    super.setUp();
    FloodlightModuleContext cntx = new FloodlightModuleContext();
    tFSFW = new TestFlowSpaceFirewall();
    cntx.addConfigParam(tFSFW, "configFile", "src/test/resources/good_config.xml");
    MockThreadPoolService tp = new MockThreadPoolService();
    RestApiServer restApi = new RestApiServer();
    cntx.addService(IRestApiService.class, restApi);
    cntx.addService(IThreadPoolService.class, tp);
    cntx.addService(IFlowSpaceFirewallService.class, tFSFW);
    cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
    cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
    restApi.init(cntx);
    tp.init(cntx);
    tFSFW.init(cntx);
    restApi.startUp(cntx);
    tp.startUp(cntx);
    tFSFW.startUp(cntx);

    IOFSwitch sw1 = createMockSwitch(1L);
    IOFSwitch sw2 = createMockSwitch(2L);
    Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
    switches.put(1L, sw1);
    switches.put(2L, sw2);
    getMockFloodlightProvider().setSwitches(switches);
    replay(sw1, sw2);
}
 
开发者ID:GlobalNOC,项目名称:FlowSpaceFirewall,代码行数:30,代码来源:FlowSpaceFirewallTest.java



注:本文中的net.floodlightcontroller.restserver.RestApiServer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java AbstractLogger类代码示例发布时间:2022-05-21
下一篇:
Java Hex类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap