Package org.jboss.deployers.vfs.plugins.structure.dir

Examples of org.jboss.deployers.vfs.plugins.structure.dir.GroupingStructure


      return true;
   }

   protected VFSDeploymentContext determineStructure(VFSDeployment deployment) throws Exception
   {
      GroupingStructure gs = new GroupingStructure();
      VirtualFileFilter top = new VirtualFileFilter()
      {
         public boolean accepts(VirtualFile file)
         {
            return file.getName().endsWith(".sar");
         }
      };
      gs.setShortCircuitFilter(top);
      gs.addGroup("lib");
      gs.addGroup("lib/nested");
      return determineStructureWithStructureDeployers(deployment, new MockEarStructureDeployer(), new JARStructure(), gs);
   }
View Full Code Here


      return suite(EsbStructureUnitTestCase.class);
   }
  
   protected VFSDeploymentContext determineStructure(VFSDeployment deployment) throws Exception
   {
      GroupingStructure gs = new GroupingStructure();
      VirtualFileFilter top = new VirtualFileFilter()
      {
         public boolean accepts(VirtualFile file)
         {
            return file.getName().endsWith(".esb");
         }
      };
      gs.setShortCircuitFilter(top);
      gs.addGroup("jars");
      gs.addGroup("wars");
      return determineStructureWithStructureDeployers(deployment, new JARStructure(), new WARStructure(), gs);
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.vfs.plugins.structure.dir.GroupingStructure

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.