Package org.jboss.deployers.spi.attachments

Examples of org.jboss.deployers.spi.attachments.LocalAttachments


    */
   protected <T> T getAttachment(DeploymentUnit unit, Class<T> type)
   {
      if (forceHierarchyLookup == false && isComponentsOnly() && (unit instanceof LocalAttachments))
      {
         LocalAttachments la = (LocalAttachments) unit;
         return la.getLocalAttachment(type);
      }
      return unit.getAttachment(type);
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.spi.attachments.LocalAttachments

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.