Package org.jboss.mx.loading.LoaderRepositoryFactory

Examples of org.jboss.mx.loading.LoaderRepositoryFactory.LoaderRepositoryConfig


         // Check for a custom loader-repository for scoping
         NodeList loaders = di.document.getElementsByTagName("loader-repository");
         if( loaders.getLength() > 0 )
         {
            Element loader = (Element) loaders.item(0);
            LoaderRepositoryConfig config = LoaderRepositoryFactory.parseRepositoryConfig(loader);
            di.setRepositoryInfo(config);
         }

         // In case there is a dependent classpath defined parse it
         parseXMLClasspath(di);
View Full Code Here


   {
      ClassLoadingMetaData classLoadingMetaData = unit.getAttachment(ClassLoadingMetaData.class);
      if (classLoadingMetaData != null)
         return;

      LoaderRepositoryConfig config = metaData.getLoaderRepositoryConfig();
      if (config != null)
         LoaderRepositoryConfigHelper.create(unit, config);
   }
View Full Code Here

TOP

Related Classes of org.jboss.mx.loading.LoaderRepositoryFactory.LoaderRepositoryConfig

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.