Package org.jboss.test.managed.factory.support.beans

Examples of org.jboss.test.managed.factory.support.beans.BeanMetaDataICF


   public void testInstanceClassFactoryAddition()
   {
      AbstractManagedObjectFactory mof = new AbstractManagedObjectFactory();
      testMOF = mof;

      BeanMetaDataICF bicf = new BeanMetaDataICF();
      mof.addInstanceClassFactory(bicf);
      LocalDSInstanceClassFactory dsicf = new LocalDSInstanceClassFactory();
      mof.addInstanceClassFactory(dsicf);
      NoTxICF nticf = new NoTxICF();
      mof.addInstanceClassFactory(nticf);
View Full Code Here


   }

   public void testKernelDeployment()
   {
      AbstractManagedObjectFactory mof = new AbstractManagedObjectFactory();
      BeanMetaDataICF icf = new BeanMetaDataICF();
      icf.setDelegateICF(new DefaultInstanceClassFactory(mof));
      mof.setInstanceClassFactory(IBeanMetaData.class, icf);
      testMOF = mof;

      AKernelDeployment ad = new AKernelDeployment();
      ABeanMetaData bean1 = new ABeanMetaData();
View Full Code Here

TOP

Related Classes of org.jboss.test.managed.factory.support.beans.BeanMetaDataICF

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.