Class ExplodedExporterImpl
- java.lang.Object
-
- org.jboss.shrinkwrap.impl.base.AssignableBase<Archive<?>>
-
- org.jboss.shrinkwrap.impl.base.exporter.ExplodedExporterImpl
-
- All Implemented Interfaces:
Assignable,ExplodedExporter
public class ExplodedExporterImpl extends AssignableBase<Archive<?>> implements ExplodedExporter
ExplodedExporterImpl Implementation of ExplodedExporter used to export an Archive as an exploded directory structure.- Version:
- $Revision: $
- Author:
- John Bailey, Aslak Knutsen
-
-
Constructor Summary
Constructors Constructor Description ExplodedExporterImpl(Archive<?> archive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FileexportExploded(File baseDirectory)Exports provided archive as an exploded directory structure.FileexportExploded(File baseDirectory, String directoryName)Exports provided archive as an exploded directory structure.FileexportExplodedInto(File directory)Exports provided archive as an exploded directory structure into the given directory.-
Methods inherited from class org.jboss.shrinkwrap.impl.base.AssignableBase
as, getArchive
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jboss.shrinkwrap.api.Assignable
as
-
-
-
-
Constructor Detail
-
ExplodedExporterImpl
public ExplodedExporterImpl(Archive<?> archive)
-
-
Method Detail
-
exportExploded
public File exportExploded(File baseDirectory)
Exports provided archive as an exploded directory structure.- Specified by:
exportExplodedin interfaceExplodedExporter- Parameters:
baseDirectory- Must be a folder- Returns:
- File for exploded archive contents
- See Also:
ExplodedExporter.exportExploded(java.io.File)
-
exportExploded
public File exportExploded(File baseDirectory, String directoryName)
Exports provided archive as an exploded directory structure.- Specified by:
exportExplodedin interfaceExplodedExporter- Parameters:
baseDirectory- Must be a folderdirectoryName- The exploded directory name- Returns:
- File for exploded archive contents
- See Also:
ExplodedExporter.exportExploded(java.io.File, java.lang.String)
-
exportExplodedInto
public File exportExplodedInto(File directory)
Description copied from interface:ExplodedExporterExports provided archive as an exploded directory structure into the given directory.- Specified by:
exportExplodedIntoin interfaceExplodedExporter- Parameters:
directory- Must be a folder- Returns:
- File for exploded archive contents
-
-