Package org.jboss.embedded.core.deployable

Examples of org.jboss.embedded.core.deployable.DeployableFile


      // Make new Deployables
      final Collection<Deployable> deployables = new ArrayList<Deployable>(files.length);
      for (final File file : files)
      {
         final Deployable deployable = new DeployableFile(file);
         deployables.add(deployable);
      }
      return deployables;
   }
View Full Code Here

TOP

Related Classes of org.jboss.embedded.core.deployable.DeployableFile

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.