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, java.lang.String path, java.lang.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, java.lang.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
Fields in org.jboss.shrinkwrap.api.asset with type parameters of type StreamExporter Modifier and Type Field Description private java.lang.Class<? extends StreamExporter>
ArchiveAsset. exporter
Exporter used to represent this archive as aInputStream
Constructor parameters in org.jboss.shrinkwrap.api.asset with type arguments of type StreamExporter Constructor Description ArchiveAsset(Archive<?> archive, java.lang.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. -
Uses of StreamExporter in org.jboss.shrinkwrap.impl.base
Fields in org.jboss.shrinkwrap.impl.base with type parameters of type StreamExporter Modifier and Type Field Description private java.lang.Class<? extends StreamExporter>
ArchiveFormatStreamBindings. exporter
Methods in org.jboss.shrinkwrap.impl.base that return types with arguments of type StreamExporter Modifier and Type Method Description java.lang.Class<? extends StreamExporter>
ArchiveFormatStreamBindings. getExporter()
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, java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.T
MemoryMapArchiveBase. add(Archive<?> archive, java.lang.String path, java.lang.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, java.lang.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, java.lang.String path, java.lang.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, java.lang.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.
-