Package org.jboss.kernel.plugins.deployment.props

Examples of org.jboss.kernel.plugins.deployment.props.PropertiesGraphFactory.build()


      properties.put("mybean.somenumber.type", "java.lang.Long");
      properties.put("mybean.injectee", "(inject).injectee");
      properties.put("injectee.(class)", "org.jboss.acme.MyBean2");

      PropertiesGraphFactory propertiesGraph = new PropertiesGraphFactory(properties);
      KernelDeployment deployment = propertiesGraph.build();
      assertNotNull(deployment);
      List<BeanMetaData> beans = deployment.getBeans();
      assertNotNull(beans);
      assertFalse(beans.isEmpty());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.