Package org.jboss.deployers.spi.deployer.matchers

Examples of org.jboss.deployers.spi.deployer.matchers.NameIgnoreMechanism.ignore()


    * @return true if we should ignore the name, false otherwise
    */
   protected boolean ignoreName(DeploymentUnit unit, String name)
   {
      NameIgnoreMechanism mechanism = unit.getAttachment(NameIgnoreMechanism.class);
      return mechanism != null && mechanism.ignore(unit, name);
   }

   /**
    * Parse an exact file name
    *
 
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.