Package org.jboss.deployers.spi.classloading

Examples of org.jboss.deployers.spi.classloading.DeploymentMetaData


    * @return the lifecycle
    */
   protected DeploymentLifeCycle createDeploymentLifeCycle()
   {
      DeploymentLifeCycle lifecycle = new DeploymentLifeCycle(this);
      DeploymentMetaData dmd = unit.getAttachment(DeploymentMetaData.class);
      if (dmd != null)
      {
         lifecycle.setLazyResolve(dmd.isLazyResolve());
         lifecycle.setLazyStart(dmd.isLazyStart());
         Set<FilterMetaData> filters = dmd.getFilters();
         if (filters != null && filters.isEmpty() == false)
         {
            ClassFilter[] cfs = new ClassFilter[filters.size()];
            int i = 0;
            for (FilterMetaData fmd : filters)
View Full Code Here

TOP

Related Classes of org.jboss.deployers.spi.classloading.DeploymentMetaData

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.