Class ExplodedExporterImpl

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static java.util.logging.Logger log
      Logger
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      private java.io.File export​(Archive<?> archive, java.io.File outputDirectory)  
      java.io.File exportExploded​(java.io.File baseDirectory)
      Exports provided archive as an exploded directory structure.
      java.io.File exportExploded​(java.io.File baseDirectory, java.lang.String directoryName)
      Exports provided archive as an exploded directory structure.
      java.io.File exportExplodedInto​(java.io.File directory)
      Exports provided archive as an exploded directory structure into the given directory.
      • 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
    • Field Detail

      • log

        private static final java.util.logging.Logger log
        Logger
    • Constructor Detail

      • ExplodedExporterImpl

        public ExplodedExporterImpl​(Archive<?> archive)
    • Method Detail

      • exportExplodedInto

        public java.io.File exportExplodedInto​(java.io.File directory)
        Description copied from interface: ExplodedExporter
        Exports provided archive as an exploded directory structure into the given directory.
        Specified by:
        exportExplodedInto in interface ExplodedExporter
        Parameters:
        directory - Must be a folder
        Returns:
        File for exploded archive contents
      • export

        private java.io.File export​(Archive<?> archive,
                                    java.io.File outputDirectory)