Package org.jboss.test.kernel.registry.support

Examples of org.jboss.test.kernel.registry.support.BusBean


   public void testSetAndGet() throws Throwable
   {
      Kernel kernel = bootstrap();
      org.jboss.kernel.spi.registry.KernelRegistry registry = kernel.getRegistry();
      KernelConfigurator configurator = kernel.getConfigurator();
      registry.registerEntry("Bus", makeContext(configurator, "Name1", new BusBean()));

      KernelBus bus = kernel.getBus();
      Object result1 = bus.get("Bus", "value");
      assertNull("Result 1", result1);
      bus.set("Bus", "value", "BusBus");
View Full Code Here

TOP

Related Classes of org.jboss.test.kernel.registry.support.BusBean

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.