本文整理汇总了Java中net.floodlightcontroller.storage.memory.MemoryStorageSource.init方法的典型用法代码示例。如果您正苦于以下问题:Java MemoryStorageSource.init方法的具体用法?Java MemoryStorageSource.init怎么用?Java MemoryStorageSource.init使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.storage.memory.MemoryStorageSource
的用法示例。
在下文中一共展示了MemoryStorageSource.init方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的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();
}
示例2: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的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();
}
示例3: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的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
示例4: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的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);
}
示例5: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的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>();
IDebugCounterService debugCounterService = new MockDebugCounterService();
IDebugEventService debugEventService = new MockDebugEventService();
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
MemoryStorageSource storageService = new MemoryStorageSource();
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, storageService);
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
cntx.addService(IDebugCounterService.class, debugCounterService);
cntx.addService(IDebugEventService.class, debugEventService);
cntx.addService(IOFSwitchService.class, getMockSwitchService());
restApi.init(cntx);
tp.init(cntx);
routingEngine.init(cntx);
storageService.init(cntx);
storageService.startUp(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<DatapathId, IOFSwitch> switches = new HashMap<DatapathId, IOFSwitch>();
switches.put(DatapathId.of(1L), sw1);
switches.put(DatapathId.of(2L), sw2);
getMockSwitchService().setSwitches(switches);
replay(sw1, sw2);
}
示例6: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
factory = OFFactories.getFactory(OFVersion.OF_13);
lb = new LoadBalancer();
cntx = new FloodlightContext();
fmc = new FloodlightModuleContext();
entityClassifier = new DefaultEntityClassifier(); // dependency for device manager
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();
debugCounterService = new MockDebugCounterService();
debugEventService = new MockDebugEventService();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
fmc.addService(IEntityClassifierService.class, entityClassifier);
fmc.addService(IThreadPoolService.class, tps);
fmc.addService(IDeviceService.class, deviceManager);
fmc.addService(ITopologyService.class, topology);
fmc.addService(IRoutingService.class, routingEngine);
fmc.addService(IStaticFlowEntryPusherService.class, sfp);
fmc.addService(ILoadBalancerService.class, lb);
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(ISyncService.class, mockSyncService);
fmc.addService(IDebugCounterService.class, debugCounterService);
fmc.addService(IDebugEventService.class, debugEventService);
fmc.addService(IOFSwitchService.class, getMockSwitchService());
lb.init(fmc);
//getMockFloodlightProvider().init(fmc);
entityClassifier.init(fmc);
tps.init(fmc);
mockSyncService.init(fmc);
deviceManager.init(fmc);
restApi.init(fmc);
sfp.init(fmc);
storage.init(fmc);
topology.addListener(deviceManager);
expectLastCall().times(1);
replay(topology);
lb.startUp(fmc);
//getMockFloodlightProvider().startUp(fmc);
entityClassifier.startUp(fmc);
tps.startUp(fmc);
mockSyncService.startUp(fmc);
deviceManager.startUp(fmc);
restApi.startUp(fmc);
sfp.startUp(fmc);
storage.startUp(fmc);
verify(topology);
vipsResource = new VipsResource();
poolsResource = new PoolsResource();
membersResource = new MembersResource();
vip1=null;
vip2=null;
pool1=null;
pool2=null;
pool3=null;
member1=null;
member2=null;
member3=null;
member4=null;
}
示例7: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
cntx = new FloodlightContext();
mockFloodlightProvider = getMockFloodlightProvider();
mockSwitchManager = getMockSwitchService();
debugEventService = new MockDebugEventService();
entityClassifier = new DefaultEntityClassifier();
tps = new MockThreadPoolService();
deviceManager = new MockDeviceManager();
topology = createMock(ITopologyService.class);
debugCounterService = new MockDebugCounterService();
storageService = new MemoryStorageSource();
restApi = new RestApiServer();
acl = new ACL();
// Mock switches
DatapathId dpid = DatapathId.of(TestSwitch1DPID);
sw = EasyMock.createNiceMock(IOFSwitch.class);
expect(sw.getId()).andReturn(dpid).anyTimes();
expect(sw.getOFFactory()).andReturn(
OFFactories.getFactory(OFVersion.OF_13)).anyTimes();
replay(sw);
// Load the switch map
Map<DatapathId, IOFSwitch> switches = new HashMap<DatapathId, IOFSwitch>();
switches.put(dpid, sw);
mockSwitchManager.setSwitches(switches);
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
fmc.addService(IOFSwitchService.class, mockSwitchManager);
fmc.addService(IDebugCounterService.class, debugCounterService);
fmc.addService(IStorageSourceService.class, storageService);
fmc.addService(IDebugEventService.class, debugEventService);
fmc.addService(IEntityClassifierService.class, entityClassifier);
fmc.addService(IThreadPoolService.class, tps);
fmc.addService(IDeviceService.class, deviceManager);
fmc.addService(ITopologyService.class, topology);
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IACLService.class, acl);
topology.addListener(deviceManager);
expectLastCall().times(1);
replay(topology);
debugCounterService.init(fmc);
entityClassifier.init(fmc);
tps.init(fmc);
deviceManager.init(fmc);
storageService.init(fmc);
restApi.init(fmc);
acl.init(fmc);
debugCounterService.startUp(fmc);
deviceManager.startUp(fmc);
entityClassifier.startUp(fmc);
tps.startUp(fmc);
storageService.startUp(fmc);
acl.startUp(fmc);
verify(topology);
storageService.createTable(StaticFlowEntryPusher.TABLE_NAME, null);
storageService.setTablePrimaryKeyName(StaticFlowEntryPusher.TABLE_NAME,
StaticFlowEntryPusher.COLUMN_NAME);
}
示例8: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
debugCounterService = new MockDebugCounterService();
staticFlowEntryPusher = new StaticFlowEntryPusher();
switchService = getMockSwitchService();
storage = new MemoryStorageSource();
dpid = HexString.toLong(TestSwitch1DPID);
mockSwitch = createNiceMock(IOFSwitch.class);
writeCapture = new Capture<OFMessage>(CaptureType.ALL);
writeCaptureList = new Capture<List<OFMessage>>(CaptureType.ALL);
expect(mockSwitch.write(capture(writeCapture))).andReturn(true).anyTimes();
expect(mockSwitch.write(capture(writeCaptureList))).andReturn(Collections.<OFMessage>emptyList()).anyTimes();
expect(mockSwitch.getOFFactory()).andReturn(factory).anyTimes();
replay(mockSwitch);
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(IOFSwitchService.class, getMockSwitchService());
fmc.addService(IDebugCounterService.class, debugCounterService);
MockFloodlightProvider mockFloodlightProvider = getMockFloodlightProvider();
Map<DatapathId, IOFSwitch> switchMap = new HashMap<DatapathId, IOFSwitch>();
switchMap.put(DatapathId.of(dpid), mockSwitch);
getMockSwitchService().setSwitches(switchMap);
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IOFSwitchService.class, switchService);
restApi.init(fmc);
debugCounterService.init(fmc);
storage.init(fmc);
staticFlowEntryPusher.init(fmc);
debugCounterService.init(fmc);
storage.startUp(fmc);
createStorageWithFlowEntries();
staticFlowEntryPusher.startUp(fmc); // again, to hack unittest
}
示例9: doSetUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
public void doSetUp(HARole role) throws Exception {
FloodlightModuleContext fmc = new FloodlightModuleContext();
FloodlightProvider cm = new FloodlightProvider();
fmc.addConfigParam(cm, "role", role.toString());
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);
ThreadPool threadPool = new ThreadPool();
fmc.addService(IThreadPoolService.class, threadPool);
// TODO: should mock IDebugCounterService and make sure
// the expected counters are updated.
MockDebugCounterService debugCounterService = new MockDebugCounterService();
fmc.addService(IDebugCounterService.class, debugCounterService);
DebugEventService debugEventService = new DebugEventService();
fmc.addService(IDebugEventService.class, debugEventService);
switchManager = new OFSwitchManager();
fmc.addService(IOFSwitchService.class, switchManager);
MockSyncService syncService = new MockSyncService();
fmc.addService(ISyncService.class, syncService);
IShutdownService shutdownService = createMock(IShutdownService.class);
shutdownService.registerShutdownListener(anyObject(IShutdownListener.class));
expectLastCall().anyTimes();
replay(shutdownService);
fmc.addService(IShutdownService.class, shutdownService);
verify(shutdownService);
threadPool.init(fmc);
syncService.init(fmc);
switchManager.init(fmc);
debugCounterService.init(fmc);
memstorage.init(fmc);
debugEventService.init(fmc);
restApi.init(fmc);
cm.init(fmc);
syncService.init(fmc);
switchManager.startUpBase(fmc);
debugCounterService.startUp(fmc);
memstorage.startUp(fmc);
debugEventService.startUp(fmc);
threadPool.startUp(fmc);
restApi.startUp(fmc);
cm.startUp(fmc);
}
示例10: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
debugCounterService = new MockDebugCounterService();
staticFlowEntryPusher = new StaticFlowEntryPusher();
switchService = getMockSwitchService();
storage = new MemoryStorageSource();
dpid = HexString.toLong(TestSwitch1DPID);
mockSwitch = createNiceMock(IOFSwitch.class);
writeCapture = new Capture<OFMessage>(CaptureType.ALL);
writeCaptureList = new Capture<List<OFMessage>>(CaptureType.ALL);
mockSwitch.write(capture(writeCapture));
expectLastCall().anyTimes();
mockSwitch.write(capture(writeCaptureList));
expectLastCall().anyTimes();
mockSwitch.flush();
expectLastCall().anyTimes();
expect(mockSwitch.getOFFactory()).andReturn(factory).anyTimes();
replay(mockSwitch);
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(IOFSwitchService.class, getMockSwitchService());
fmc.addService(IDebugCounterService.class, debugCounterService);
MockFloodlightProvider mockFloodlightProvider = getMockFloodlightProvider();
Map<DatapathId, IOFSwitch> switchMap = new HashMap<DatapathId, IOFSwitch>();
switchMap.put(DatapathId.of(dpid), mockSwitch);
getMockSwitchService().setSwitches(switchMap);
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IOFSwitchService.class, switchService);
restApi.init(fmc);
debugCounterService.init(fmc);
storage.init(fmc);
staticFlowEntryPusher.init(fmc);
debugCounterService.init(fmc);
storage.startUp(fmc);
createStorageWithFlowEntries();
staticFlowEntryPusher.startUp(fmc); // again, to hack unittest
}
示例11: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
lb = new LoadBalancer();
cntx = new FloodlightContext();
fmc = new FloodlightModuleContext();
entityClassifier = new DefaultEntityClassifier(); // dependency for device manager
frm = new FlowReconcileManager(); //dependency for device manager
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());
fmc.addService(IEntityClassifierService.class, entityClassifier);
fmc.addService(IFlowReconcileService.class, frm);
fmc.addService(IThreadPoolService.class, tps);
fmc.addService(IDeviceService.class, deviceManager);
fmc.addService(ITopologyService.class, topology);
fmc.addService(IRoutingService.class, routingEngine);
fmc.addService(ICounterStoreService.class, new CounterStore());
fmc.addService(IStaticFlowEntryPusherService.class, sfp);
fmc.addService(ILoadBalancerService.class, lb);
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(ISyncService.class, mockSyncService);
lb.init(fmc);
getMockFloodlightProvider().init(fmc);
entityClassifier.init(fmc);
frm.init(fmc);
tps.init(fmc);
mockSyncService.init(fmc);
deviceManager.init(fmc);
restApi.init(fmc);
sfp.init(fmc);
storage.init(fmc);
topology.addListener(deviceManager);
expectLastCall().times(1);
replay(topology);
lb.startUp(fmc);
getMockFloodlightProvider().startUp(fmc);
entityClassifier.startUp(fmc);
frm.startUp(fmc);
tps.startUp(fmc);
mockSyncService.startUp(fmc);
deviceManager.startUp(fmc);
restApi.startUp(fmc);
sfp.startUp(fmc);
storage.startUp(fmc);
verify(topology);
vipsResource = new VipsResource();
poolsResource = new PoolsResource();
membersResource = new MembersResource();
vip1=null;
vip2=null;
pool1=null;
pool2=null;
pool3=null;
member1=null;
member2=null;
member3=null;
member4=null;
}
示例12: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
debugCounterService = new MockDebugCounterService();
staticFlowEntryPusher = new StaticFlowEntryPusher();
switchService = getMockSwitchService();
storage = new MemoryStorageSource();
dpid = HexString.toLong(TestSwitch1DPID);
mockSwitch = createNiceMock(IOFSwitch.class);
writeCapture = new Capture<OFMessage>(CaptureType.ALL);
writeCaptureList = new Capture<List<OFMessage>>(CaptureType.ALL);
mockSwitch.write(capture(writeCapture));
expectLastCall().anyTimes();
mockSwitch.write(capture(writeCaptureList));
expectLastCall().anyTimes();
mockSwitch.flush();
expectLastCall().anyTimes();
expect(mockSwitch.getOFFactory()).andReturn(factory).anyTimes();
replay(mockSwitch);
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(IOFSwitchService.class, getMockSwitchService());
fmc.addService(IDebugCounterService.class, debugCounterService);
MockFloodlightProvider mockFloodlightProvider = getMockFloodlightProvider();
Map<DatapathId, IOFSwitch> switchMap = new HashMap<DatapathId, IOFSwitch>();
switchMap.put(DatapathId.of(dpid), mockSwitch);
getMockSwitchService().setSwitches(switchMap);
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IOFSwitchService.class, switchService);
restApi.init(fmc);
debugCounterService.init(fmc);
storage.init(fmc);
staticFlowEntryPusher.init(fmc);
debugCounterService.init(fmc);
storage.startUp(fmc);
createStorageWithFlowEntries();
staticFlowEntryPusher.startUp(fmc); // again, to hack unittest
}
示例13: setUp
import net.floodlightcontroller.storage.memory.MemoryStorageSource; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
super.setUp();
lb = new LoadBalancer();
cntx = new FloodlightContext();
fmc = new FloodlightModuleContext();
entityClassifier = new DefaultEntityClassifier(); // dependency for device manager
frm = new FlowReconcileManager(); //dependency for device manager
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
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
fmc.addService(IEntityClassifierService.class, entityClassifier);
fmc.addService(IFlowReconcileService.class, frm);
fmc.addService(IThreadPoolService.class, tps);
fmc.addService(IDeviceService.class, deviceManager);
fmc.addService(ITopologyService.class, topology);
fmc.addService(IRoutingService.class, routingEngine);
fmc.addService(ICounterStoreService.class, new CounterStore());
fmc.addService(IStaticFlowEntryPusherService.class, sfp);
fmc.addService(ILoadBalancerService.class, lb);
fmc.addService(IStorageSourceService.class, storage);
lb.init(fmc);
getMockFloodlightProvider().init(fmc);
entityClassifier.init(fmc);
frm.init(fmc);
tps.init(fmc);
deviceManager.init(fmc);
restApi.init(fmc);
sfp.init(fmc);
storage.init(fmc);
topology.addListener(deviceManager);
expectLastCall().times(1);
replay(topology);
lb.startUp(fmc);
getMockFloodlightProvider().startUp(fmc);
entityClassifier.startUp(fmc);
frm.startUp(fmc);
tps.startUp(fmc);
deviceManager.startUp(fmc);
restApi.startUp(fmc);
sfp.startUp(fmc);
storage.startUp(fmc);
verify(topology);
vipsResource = new VipsResource();
poolsResource = new PoolsResource();
membersResource = new MembersResource();
vip1=null;
vip2=null;
pool1=null;
pool2=null;
pool3=null;
member1=null;
member2=null;
member3=null;
member4=null;
}