|
ShrinkWrap Aggregator and Build Parent 1.0.0-cr-1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Archive in org.jboss.shrinkwrap.api |
---|
Classes in org.jboss.shrinkwrap.api with type parameters of type Archive | |
---|---|
interface |
Archive<T extends Archive<T>>
Represents a collection of resources which may be constructed programmatically. |
Subinterfaces of Archive in org.jboss.shrinkwrap.api | |
---|---|
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 Archive | ||
---|---|---|
|
ExtensionLoader.getArchiveFormatFromExtensionMapping(Class<T> extensionClass)
Gets the ArchiveFormat for the given type from the extensionMapping |
|
|
Archive.getAsType(Class<X> type,
ArchivePath path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
Archive.getAsType(Class<X> type,
ArchivePath path,
ArchiveFormat archiveFormat)
Get a nested Archive located in a ArchivePath as a specific type using the specify ArchiveFormat |
|
|
Archive.getAsType(Class<X> type,
Filter<ArchivePath> filter)
Get all nested Archive matching the filter as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
Archive.getAsType(Class<X> type,
Filter<ArchivePath> filter,
ArchiveFormat archiveFormat)
Get all nested Archive matching the filter as a specific type using the specify ArchiveFormat . |
|
|
Archive.getAsType(Class<X> type,
String path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
Archive.getAsType(Class<X> type,
String path,
ArchiveFormat archiveFormat)
Get a nested Archive as a specific type using the specify ArchiveFormat |
Methods in org.jboss.shrinkwrap.api with parameters of type Archive | ||
---|---|---|
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. |
|
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. |
|
|
ExtensionLoader.load(Class<T> extensionClass,
Archive<?> baseArchive)
Load a Extension. |
|
T |
Archive.merge(Archive<?> source)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
|
T |
Archive.merge(Archive<?> source,
ArchivePath path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
Archive.merge(Archive<?> source,
ArchivePath path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
Archive.merge(Archive<?> source,
Filter<ArchivePath> filter)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
|
T |
Archive.merge(Archive<?> source,
String path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
Archive.merge(Archive<?> source,
String path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
Uses of Archive in org.jboss.shrinkwrap.api.asset |
---|
Methods in org.jboss.shrinkwrap.api.asset that return Archive | |
---|---|
Archive<?> |
ArchiveAsset.getArchive()
Returns the archive this asset represents |
Constructors in org.jboss.shrinkwrap.api.asset with parameters of type Archive | |
---|---|
ArchiveAsset(Archive<?> archive,
Class<? extends StreamExporter> exporter)
Creates a new instance wrapping the specified Archive , which
will use the specified StreamExporter to represent the archive as
an InputStream in Asset.openStream() . |
Uses of Archive in org.jboss.shrinkwrap.api.classloader |
---|
Constructors in org.jboss.shrinkwrap.api.classloader with parameters of type Archive | |
---|---|
ShrinkWrapClassLoader(Archive<?>... archives)
Constructs a new ShrinkWrapClassLoader for the specified Archive s using the
default delegation parent ClassLoader . |
|
ShrinkWrapClassLoader(ClassLoader parent,
Archive<?>... archives)
Constructs a new ShrinkWrapClassLoader for the given Archive s. |
Uses of Archive in org.jboss.shrinkwrap.api.container |
---|
Classes in org.jboss.shrinkwrap.api.container with type parameters of type Archive | |
---|---|
interface |
ClassContainer<T extends Archive<T>>
Defines the contract for a component capable of storing Java Classes. |
interface |
EnterpriseContainer<T extends Archive<T>>
Defines the contract for a component capable of storing Enterprise related resources. |
interface |
LibraryContainer<T extends Archive<T>>
Defines the contract for a component capable of storing Libraries. |
interface |
ManifestContainer<T extends Archive<T>>
Defines the contract for a component capable of storing Manifest related resources. |
interface |
ResourceAdapterContainer<T extends Archive<T>>
Defines the contract for a component capable of storing Resource adapter resources. |
interface |
ResourceContainer<T extends Archive<T>>
Defines the contract for a component capable of storing a series of ClassLoader , File , and URL -based
Assets as resources within an archive. |
interface |
ServiceProviderContainer<T extends Archive<T>>
Defines the contract for a component capable of storing service provider related resources. |
interface |
WebContainer<T extends Archive<T>>
Defines the contract for a component capable of storing web-related resources. |
Methods in org.jboss.shrinkwrap.api.container with parameters of type Archive | |
---|---|
T |
LibraryContainer.addAsLibraries(Archive<?>... archives)
Add multiple Archive s to this Archive as libraries to the container, returning the container itself. |
T |
LibraryContainer.addAsLibraries(Archive<?>[]... archives)
Add multiple Archive s to this Archive as libraries to the container, returning the container itself. |
T |
LibraryContainer.addAsLibrary(Archive<?> archive)
Add another Archive to this Archive as a library to the container, returning the container itself. |
T |
EnterpriseContainer.addAsModule(Archive<?> archive)
Adds a archive to this Archive s module context. |
T |
EnterpriseContainer.addAsModules(Archive<?>... archives)
Adds the specified archives to this Archive s module context. |
Method parameters in org.jboss.shrinkwrap.api.container with type arguments of type Archive | |
---|---|
T |
LibraryContainer.addAsLibraries(Collection<? extends Archive<?>> archives)
Add multiple Archive s to this Archive as libraries to the container, returning the container itself. |
Uses of Archive in org.jboss.shrinkwrap.api.formatter |
---|
Methods in org.jboss.shrinkwrap.api.formatter with parameters of type Archive | |
---|---|
String |
Formatter.format(Archive<?> archive)
Returns a formatted view of the specified archive |
String |
Formatters.format(Archive<?> archive)
Returns a formatted view of the specified archive |
Uses of Archive in org.jboss.shrinkwrap.api.spec |
---|
Subinterfaces of Archive 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 Archive in org.jboss.shrinkwrap.impl.base |
---|
Classes in org.jboss.shrinkwrap.impl.base with type parameters of type Archive | |
---|---|
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 |
MemoryMapArchiveBase<T extends Archive<T>>
MemoryMapArchiveBase A base implementation for all MemoryMap archives. |
Classes in org.jboss.shrinkwrap.impl.base that implement Archive | |
---|---|
class |
ArchiveBase<T extends Archive<T>>
ArchiveBase Base implementation of Archive . |
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 Archive | ||
---|---|---|
|
ServiceExtensionLoader.getArchiveFormatFromExtensionMapping(Class<T> type)
Gets the ArchiveFormat for the given type from the extensionMapping |
|
|
ArchiveBase.getAsType(Class<X> type,
ArchivePath path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ArchiveBase.getAsType(Class<X> type,
ArchivePath path,
ArchiveFormat archiveFormat)
Get a nested Archive located in a ArchivePath as a specific type using the specify ArchiveFormat |
|
|
ArchiveBase.getAsType(Class<X> type,
Filter<ArchivePath> filter)
Get all nested Archive matching the filter as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ArchiveBase.getAsType(Class<X> type,
Filter<ArchivePath> filter,
ArchiveFormat archiveFormat)
Get all nested Archive matching the filter as a specific type using the specify ArchiveFormat . |
|
|
ArchiveBase.getAsType(Class<X> type,
String path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ArchiveBase.getAsType(Class<X> type,
String path,
ArchiveFormat archiveFormat)
Get a nested Archive as a specific type using the specify ArchiveFormat |
Methods in org.jboss.shrinkwrap.impl.base with parameters of type Archive | ||
---|---|---|
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. |
|
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. |
|
|
ServiceExtensionLoader.load(Class<T> extensionClass,
Archive<?> baseArchive)
Load a Extension. |
|
T |
ArchiveBase.merge(Archive<?> source)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
|
T |
ArchiveBase.merge(Archive<?> source,
ArchivePath path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
ArchiveBase.merge(Archive<?> source,
ArchivePath path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
ArchiveBase.merge(Archive<?> source,
Filter<ArchivePath> filter)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
|
T |
ArchiveBase.merge(Archive<?> source,
String path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
|
T |
ArchiveBase.merge(Archive<?> source,
String path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
Constructors in org.jboss.shrinkwrap.impl.base with parameters of type Archive | |
---|---|
GenericArchiveImpl(Archive<?> delegate)
Creates a new instance |
Uses of Archive in org.jboss.shrinkwrap.impl.base.container |
---|
Classes in org.jboss.shrinkwrap.impl.base.container with type parameters of type Archive | |
---|---|
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. |
Classes in org.jboss.shrinkwrap.impl.base.container that implement Archive | |
---|---|
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. |
Methods in org.jboss.shrinkwrap.impl.base.container with type parameters of type Archive | ||
---|---|---|
|
ContainerBase.getAsType(Class<X> type,
ArchivePath path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ContainerBase.getAsType(Class<X> type,
ArchivePath path,
ArchiveFormat archiveCompression)
Get a nested Archive located in a ArchivePath as a specific type using the specify ArchiveFormat |
|
|
ContainerBase.getAsType(Class<X> type,
Filter<ArchivePath> filter)
Get all nested Archive matching the filter as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ContainerBase.getAsType(Class<X> type,
Filter<ArchivePath> filter,
ArchiveFormat archiveCompression)
Get all nested Archive matching the filter as a specific type using the specify ArchiveFormat . |
|
|
ContainerBase.getAsType(Class<X> type,
String path)
Get a nested Archive as a specific type.The found Archives must have been added as a Archive, no import is performed. |
|
|
ContainerBase.getAsType(Class<X> type,
String path,
ArchiveFormat archiveCompression)
Get a nested Archive as a specific type using the specify ArchiveFormat |
Methods in org.jboss.shrinkwrap.impl.base.container with parameters of type Archive | |
---|---|
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. |
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.addAsLibraries(Archive<?>... archives)
|
T |
ContainerBase.addAsLibraries(Archive<?>[]... archives)
Add multiple Archive s to this Archive as libraries to the container, returning the container itself. |
T |
ContainerBase.addAsLibrary(Archive<?> archive)
Add another Archive to this Archive as a library to the container, returning the container itself. |
T |
EnterpriseContainerBase.addAsModule(Archive<?> archive)
Adds a archive to this Archive s module context. |
T |
EnterpriseContainerBase.addAsModules(Archive<?>... archives)
Adds the specified archives to this Archive s module context. |
T |
ContainerBase.merge(Archive<?> source)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
T |
ContainerBase.merge(Archive<?> source,
ArchivePath path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
T |
ContainerBase.merge(Archive<?> source,
ArchivePath path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
T |
ContainerBase.merge(Archive<?> source,
Filter<ArchivePath> filter)
Merge the contents from an existing archive without maintaining the archive name in the context path. |
T |
ContainerBase.merge(Archive<?> source,
String path)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
T |
ContainerBase.merge(Archive<?> source,
String path,
Filter<ArchivePath> filter)
Merge the contents from an existing archive in a specific path without maintaining the archive name in the context path. |
Method parameters in org.jboss.shrinkwrap.impl.base.container with type arguments of type Archive | |
---|---|
T |
ContainerBase.addAsLibraries(Collection<? extends Archive<?>> archives)
Add multiple Archive s to this Archive as libraries to the container, returning the container itself. |
Constructors in org.jboss.shrinkwrap.impl.base.container with parameters of type Archive | |
---|---|
ContainerBase(Class<T> actualType,
Archive<?> archive)
|
|
EnterpriseContainerBase(Class<T> actualType,
Archive<?> archive)
|
|
ResourceAdapterContainerBase(Class<T> actualType,
Archive<?> archive)
|
|
WebContainerBase(Class<T> actualType,
Archive<?> archive)
|
Uses of Archive in org.jboss.shrinkwrap.impl.base.exporter |
---|
Methods in org.jboss.shrinkwrap.impl.base.exporter that return Archive | |
---|---|
protected Archive<?> |
AbstractExporterDelegate.getArchive()
Return the archive being exported |
Constructors in org.jboss.shrinkwrap.impl.base.exporter with parameters of type Archive | |
---|---|
AbstractExporterDelegate(Archive<?> archive)
Creates a new abstract exporter delegate for the provided Archive |
|
AbstractStreamExporterImpl(Archive<?> archive)
|
|
ExplodedExporterDelegate(Archive<?> archive,
File baseDirectory,
String directoryName)
Creates a new exploded exporter delegate for the provided Archive |
|
ExplodedExporterImpl(Archive<?> archive)
|
|
StreamExporterDelegateBase(Archive<?> archive)
Creates a new exporter delegate for exporting archives |
Uses of Archive in org.jboss.shrinkwrap.impl.base.exporter.tar |
---|
Constructors in org.jboss.shrinkwrap.impl.base.exporter.tar with parameters of type Archive | |
---|---|
TarExporterDelegate(Archive<?> archive)
Creates a new exporter delegate for exporting archives as TAR |
|
TarExporterDelegateBase(Archive<?> archive)
Creates a new exporter delegate for exporting archives |
|
TarExporterImpl(Archive<?> archive)
Creates a new exporter for the specified archive |
|
TarGzExporterDelegate(Archive<?> archive)
Creates a new exporter delegate for exporting archives as TAR/GZ |
|
TarGzExporterImpl(Archive<?> archive)
Creates a new exporter for the specified archive |
Uses of Archive in org.jboss.shrinkwrap.impl.base.exporter.zip |
---|
Constructors in org.jboss.shrinkwrap.impl.base.exporter.zip with parameters of type Archive | |
---|---|
JdkZipExporterDelegate(Archive<?> archive)
Creates a new exporter delegate for exporting archives as ZIP |
|
ZipExporterImpl(Archive<?> archive)
|
Uses of Archive in org.jboss.shrinkwrap.impl.base.importer |
---|
Constructors in org.jboss.shrinkwrap.impl.base.importer with parameters of type Archive | |
---|---|
ExplodedImporterImpl(Archive<?> archive)
|
Uses of Archive in org.jboss.shrinkwrap.impl.base.importer.tar |
---|
Constructors in org.jboss.shrinkwrap.impl.base.importer.tar with parameters of type Archive | |
---|---|
TarGzImporterImpl(Archive<?> archive)
|
|
TarImporterImpl(Archive<?> archive)
|
Uses of Archive in org.jboss.shrinkwrap.impl.base.importer.zip |
---|
Constructors in org.jboss.shrinkwrap.impl.base.importer.zip with parameters of type Archive | |
---|---|
ZipImporterImpl(Archive<?> archive)
|
Uses of Archive in org.jboss.shrinkwrap.impl.base.serialization |
---|
Constructors in org.jboss.shrinkwrap.impl.base.serialization with parameters of type Archive | |
---|---|
ZipSerializableViewImpl(Archive<?> archive)
Creates a new instance, wrapping the specified Archive |
Uses of Archive in org.jboss.shrinkwrap.impl.base.spec |
---|
Classes in org.jboss.shrinkwrap.impl.base.spec that implement Archive | |
---|---|
class |
EnterpriseArchiveImpl
EnterpriseArchiveImpl |
class |
JavaArchiveImpl
JavaArchiveImpl Implementation of an archive with JAR-specific support. |
class |
ResourceAdapterArchiveImpl
ResourceAdapterArchiveImpl |
class |
WebArchiveImpl
WebArchiveImpl |
Constructors in org.jboss.shrinkwrap.impl.base.spec with parameters of type Archive | |
---|---|
EnterpriseArchiveImpl(Archive<?> delegate)
Create a new EnterpriseArchive with any type storage engine as backing. |
|
JavaArchiveImpl(Archive<?> delegate)
Create a new JavaArchive with any type storage engine as backing. |
|
ResourceAdapterArchiveImpl(Archive<?> delegate)
Create a new ResourceAdapterArchive with any type storage engine as backing. |
|
WebArchiveImpl(Archive<?> delegate)
Create a new WebArchive with any type storage engine as backing. |
Uses of Archive in org.jboss.shrinkwrap.spi |
---|
Subinterfaces of Archive in org.jboss.shrinkwrap.spi | |
---|---|
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 |