Package org.springframework.data.gemfire.wan

Examples of org.springframework.data.gemfire.wan.GatewayHubFactoryBean


 
  @Autowired ApplicationContext ctx;
  
  @Test
  public void testGatewayHubFactoryBean() throws Exception {
    GatewayHubFactoryBean gwhfb = ctx.getBean("&gateway-hub", GatewayHubFactoryBean.class);
    List<GatewayProxy> gateways = TestUtils.readField("gateways", gwhfb);
    assertNotNull(gateways);
    assertEquals(2, gateways.size());
    GatewayProxy gwp = gateways.get(0);
    assertEquals("gateway", gwp.getId());
View Full Code Here

TOP

Related Classes of org.springframework.data.gemfire.wan.GatewayHubFactoryBean

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.