|
ShrinkWrap Aggregator and Build Parent 1.0.0-cr-1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Assignable in org.jboss.shrinkwrap.api |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.api | |
---|---|
interface |
Archive<T extends Archive<T>>
Represents a collection of resources which may be constructed programmatically. |
interface |
GenericArchive
Simple Archive extension which closes the generic context
as a convenience to users not requiring any spec archive type. |
Methods in org.jboss.shrinkwrap.api with type parameters of type Assignable | ||
---|---|---|
|
ExtensionLoader.addOverride(Class<T> extensionClass,
Class<? extends T> extensionImplClass)
Add a Override to the normal Extension loading. |
|
|
Assignable.as(Class<TYPE> clazz)
Wraps an Archive in a different 'view'. |
|
|
ArchiveFactory.create(Class<T> type)
Creates a new archive of the specified type. |
|
static
|
ShrinkWrap.create(Class<T> type)
Creates a new archive of the specified type. |
|
|
ArchiveFactory.create(Class<T> type,
String archiveName)
Creates a new archive of the specified type. |
|
static
|
ShrinkWrap.create(Class<T> type,
String archiveName)
Creates a new archive of the specified type. |
|
|
ArchiveFactory.createFromZipFile(Class<T> type,
File archiveFile)
Creates a new archive of the specified type as imported from the specified File . |
|
static
|
ShrinkWrap.createFromZipFile(Class<T> type,
File archiveFile)
Creates a new archive of the specified type as imported from the specified File . |
|
|
ExtensionLoader.getExtensionFromExtensionMapping(Class<T> extensionClass)
Gets the extension for the given type from the extensionMapping |
|
|
ExtensionLoader.load(Class<T> extensionClass,
Archive<?> baseArchive)
Load a Extension. |
|
static
|
UnknownExtensionTypeExceptionDelegator.newExceptionInstance(Class<T> type)
|
Uses of Assignable in org.jboss.shrinkwrap.api.exporter |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.api.exporter | |
---|---|
interface |
ExplodedExporter
Exporter used to export an Archive as an exploded directory structure. |
interface |
StreamExporter
Generic exporter capable of representing an Assignable
as an InputStream , or writing its contents to
a provided OutputStream or File . |
interface |
TarExporter
Exporter used to represent an Assignable in TAR format |
interface |
TarGzExporter
Exporter used to represent an Assignable in TAR format encoded w/
GZIP compression |
interface |
ZipExporter
Exporter used to represent an Assignable in ZIP format. |
Uses of Assignable in org.jboss.shrinkwrap.api.importer |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.api.importer | |
---|---|
interface |
ExplodedImporter
Importer used to import Exploded directory structures into a Archive |
interface |
StreamImporter<I extends StreamImporter<I>>
Generic importer capable of representing an Assignable
as an entity capable of reading from an InputStream , or
file type. |
interface |
TarGzImporter
Assignable type capable of importing TAR archive
content encoded in GZIP compression. |
interface |
TarImporter
Assignable type capable of importing TAR archive
content |
interface |
ZipImporter
Assignable type capable of importing ZIP content. |
Uses of Assignable in org.jboss.shrinkwrap.api.serialization |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.api.serialization | |
---|---|
interface |
SerializableView
Serializable view of an Archive . |
interface |
ZipSerializableView
Serializable view of an Archive where
contents are encoded in ZIP format during
Serialization. |
Uses of Assignable in org.jboss.shrinkwrap.api.spec |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.api.spec | |
---|---|
interface |
EnterpriseArchive
Traditional EAR (Java Enterprise Archive) structure. |
interface |
JavaArchive
Traditional JAR (Java Archive) structure. |
interface |
ResourceAdapterArchive
Traditional RAR (Resource Adapter Archive) structure. |
interface |
WebArchive
Traditional WAR (Java Web Archive) structure. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base |
---|
Classes in org.jboss.shrinkwrap.impl.base that implement Assignable | |
---|---|
class |
ArchiveBase<T extends Archive<T>>
ArchiveBase Base implementation of Archive . |
class |
AssignableBase<T extends Archive<?>>
A generic implementation of Assignable that delegates down to the Archive
extensions inner archive. |
class |
ConfigurableArchiveImpl
Assignable implementation view of an ConfigurableArchive . |
class |
GenericArchiveImpl
Implementation of a GenericArchive |
class |
MemoryMapArchiveBase<T extends Archive<T>>
MemoryMapArchiveBase A base implementation for all MemoryMap archives. |
class |
MemoryMapArchiveImpl
MemoryMapArchiveImpl A default implementation for all MemoryMap archives. |
Methods in org.jboss.shrinkwrap.impl.base with type parameters of type Assignable | ||
---|---|---|
|
ServiceExtensionLoader.addOverride(Class<T> extensionClass,
Class<? extends T> extensionImplClass)
Add a Override to the normal Extension loading. |
|
|
AssignableBase.as(Class<TYPE> clazz)
Wraps an Archive in a different 'view'. |
|
|
ArchiveBase.as(Class<TYPE> clazz)
Wraps an Archive in a different 'view'. |
|
|
ServiceExtensionLoader.getExtensionFromExtensionMapping(Class<T> type)
Gets the extension for the given type from the extensionMapping |
|
|
ServiceExtensionLoader.load(Class<T> extensionClass,
Archive<?> baseArchive)
Load a Extension. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.container |
---|
Classes in org.jboss.shrinkwrap.impl.base.container that implement Assignable | |
---|---|
class |
ContainerBase<T extends Archive<T>>
ContainerBase Abstract class that helps implement the Archive, ManifestContainer, ResourceContainer, ClassContainer and LibraryContainer. |
class |
EnterpriseContainerBase<T extends Archive<T>>
EnterpriseContainerSupport Abstract class that helps implement the EnterpriseContainer. |
class |
ResourceAdapterContainerBase<T extends Archive<T>>
ResourceAdapterContainerBase Abstract class that helps implement the ResourceAdapter. |
class |
WebContainerBase<T extends Archive<T>>
WebContainerBase Abstract class that helps implement the WebContainer. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.exporter |
---|
Classes in org.jboss.shrinkwrap.impl.base.exporter that implement Assignable | |
---|---|
class |
AbstractStreamExporterImpl
Base support for I/O Stream-based exporters |
class |
ExplodedExporterImpl
ExplodedExporterImpl Implementation of ExplodedExporter used to export an Archive as an exploded directory structure. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.exporter.tar |
---|
Classes in org.jboss.shrinkwrap.impl.base.exporter.tar that implement Assignable | |
---|---|
class |
TarExporterImpl
Implementation of TarGzExporter used to export an Archive as a TAR format |
class |
TarGzExporterImpl
Implementation of TarGzExporter used to export an Archive as a TAR format
encoded in GZIP. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.exporter.zip |
---|
Classes in org.jboss.shrinkwrap.impl.base.exporter.zip that implement Assignable | |
---|---|
class |
ZipExporterImpl
Implementation of ZipExporter used to export an Archive as a Zip format. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.importer |
---|
Classes in org.jboss.shrinkwrap.impl.base.importer that implement Assignable | |
---|---|
class |
ExplodedImporterImpl
ExplodedImporterImpl Importer used to import Exploded directory structures into a Archive |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.importer.tar |
---|
Classes in org.jboss.shrinkwrap.impl.base.importer.tar that implement Assignable | |
---|---|
class |
TarGzImporterImpl
Used to import existing TAR.GZ files/streams into the given Archive |
class |
TarImporterImpl
Used to import existing TAR files/streams into the given Archive |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.importer.zip |
---|
Classes in org.jboss.shrinkwrap.impl.base.importer.zip that implement Assignable | |
---|---|
class |
ZipImporterImpl
Used to import existing Zip files/streams into the given Archive |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.serialization |
---|
Classes in org.jboss.shrinkwrap.impl.base.serialization that implement Assignable | |
---|---|
class |
ZipSerializableViewImpl
Implementation of a Serializable view of Archive s,
backed by ZIP en/decoding the contents during serialization/deserialization. |
Methods in org.jboss.shrinkwrap.impl.base.serialization with type parameters of type Assignable | ||
---|---|---|
|
ZipSerializableViewImpl.as(Class<TYPE> clazz)
Wraps an Archive in a different 'view'. |
Uses of Assignable in org.jboss.shrinkwrap.impl.base.spec |
---|
Classes in org.jboss.shrinkwrap.impl.base.spec that implement Assignable | |
---|---|
class |
EnterpriseArchiveImpl
EnterpriseArchiveImpl |
class |
JavaArchiveImpl
JavaArchiveImpl Implementation of an archive with JAR-specific support. |
class |
ResourceAdapterArchiveImpl
ResourceAdapterArchiveImpl |
class |
WebArchiveImpl
WebArchiveImpl |
Uses of Assignable in org.jboss.shrinkwrap.spi |
---|
Subinterfaces of Assignable in org.jboss.shrinkwrap.spi | |
---|---|
interface |
Configurable
Assignable view representing an entity backed by
Configuration . |
interface |
MemoryMapArchive
MemoryMapArchive A pure in memory Archive backed by a Map. |
|
ShrinkWrap Aggregator and Build Parent 1.0.0-cr-1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |