Uses of Interface
org.jboss.shrinkwrap.api.exporter.StreamExporter
-
-
Uses of StreamExporter in org.jboss.shrinkwrap.api
Method parameters in org.jboss.shrinkwrap.api with type arguments of type StreamExporter Modifier and Type Method Description T
Archive. add(Archive<?> archive, String path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.T
Archive. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path. -
Uses of StreamExporter in org.jboss.shrinkwrap.api.asset
Constructor parameters in org.jboss.shrinkwrap.api.asset with type arguments of type StreamExporter Constructor Description ArchiveAsset(Archive<?> archive, Class<? extends StreamExporter> exporter)
Creates a new instance wrapping the specifiedArchive
, which will use the specifiedStreamExporter
to represent the archive as anInputStream
inAsset.openStream()
. -
Uses of StreamExporter in org.jboss.shrinkwrap.api.exporter
Subinterfaces of StreamExporter in org.jboss.shrinkwrap.api.exporter Modifier and Type Interface Description interface
TarBz2Exporter
Exporter used to represent anAssignable
in TAR format encoded w/ BZip2 compressioninterface
TarExporter
Exporter used to represent anAssignable
in TAR formatinterface
TarGzExporter
Exporter used to represent anAssignable
in TAR format encoded w/ GZIP compressioninterface
ZipExporter
Exporter used to represent anAssignable
in ZIP format.interface
ZipStoredExporter
Exporter used to represent anAssignable
in ZIP format with STORED compression (none compression). -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base
Method parameters in org.jboss.shrinkwrap.impl.base with type arguments of type StreamExporter Modifier and Type Method Description T
ArchiveBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.T
MemoryMapArchiveBase. add(Archive<?> archive, String path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.T
MemoryMapArchiveBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path. -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base.container
Method parameters in org.jboss.shrinkwrap.impl.base.container with type arguments of type StreamExporter Modifier and Type Method Description T
ContainerBase. add(Archive<?> archive, String path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.T
ContainerBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path. -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base.exporter
Classes in org.jboss.shrinkwrap.impl.base.exporter that implement StreamExporter Modifier and Type Class Description class
AbstractStreamExporterImpl
Base support for I/O Stream-based exporters -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base.exporter.tar
Classes in org.jboss.shrinkwrap.impl.base.exporter.tar that implement StreamExporter Modifier and Type Class Description class
TarBz2ExporterImpl
Implementation ofTarBz2Exporter
used to export an Archive as a TAR format encoded in BZip2.class
TarExporterImpl
Implementation ofTarExporter
used to export an Archive as a TAR format.class
TarGzExporterImpl
Implementation ofTarGzExporter
used to export an Archive as a TAR format encoded in GZIP. -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base.exporter.zip
Classes in org.jboss.shrinkwrap.impl.base.exporter.zip that implement StreamExporter Modifier and Type Class Description class
ZipExporterImpl
Implementation of ZipExporter used to export an Archive as a ZIP format.class
ZipStoredExporterImpl
Implementation of ZipStoredExporter used to export an Archive as a ZIP format with STORED compression.
-