|
ShrinkWrap Aggregator and Build Parent 1.0.0-cr-1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Asset in org.jboss.shrinkwrap.api |
---|
Methods in org.jboss.shrinkwrap.api that return Asset | |
---|---|
Asset |
Node.getAsset()
|
Methods in org.jboss.shrinkwrap.api with parameters of type Asset | |
---|---|
T |
Archive.add(Asset asset,
ArchivePath target)
Adds the specified asset under the specified path into the target context |
T |
Archive.add(Asset asset,
ArchivePath target,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
T |
Archive.add(Asset asset,
String target)
Adds the specified resource under the context denoted by the specified target |
T |
Archive.add(Asset asset,
String target,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
Uses of Asset in org.jboss.shrinkwrap.api.asset |
---|
Subinterfaces of Asset in org.jboss.shrinkwrap.api.asset | |
---|---|
interface |
NamedAsset
Pluggable separation between an Asset and a default name used to add Assets into an archive without having to explicitly supply the name ( ArchivePath ) each time. |
Classes in org.jboss.shrinkwrap.api.asset that implement Asset | |
---|---|
class |
ArchiveAsset
An Asset representing an Archive ; a
specified StreamExporter type will be used to
fulfill the openStream() contract. |
class |
ByteArrayAsset
Implementation of an Asset backed by a byte array |
class |
ClassAsset
ClassAsset Implementation of a Asset backed by a loaded Class |
class |
ClassLoaderAsset
ClassloaderAsset Implementation of a Asset backed by a
resource located in the Classloader. |
class |
EmptyAsset
Implementation of a Asset having empty content. |
class |
FileAsset
Implementation of an Asset backed by a File |
class |
StringAsset
Implementation of an Asset backed by a String |
class |
UrlAsset
Implementation of an Asset backed by a URL . |
Uses of Asset in org.jboss.shrinkwrap.api.container |
---|
Methods in org.jboss.shrinkwrap.api.container with parameters of type Asset | |
---|---|
T |
EnterpriseContainer.addAsApplicationResource(Asset resource,
ArchivePath target)
Adds a Asset to this Archive s application context. |
T |
EnterpriseContainer.addAsApplicationResource(Asset resource,
String target)
Adds a Asset to this Archive s application context. |
T |
LibraryContainer.addAsLibrary(Asset resource,
ArchivePath target)
Adds the Asset as a library to the container, returning the container itself. |
T |
LibraryContainer.addAsLibrary(Asset resource,
String target)
Adds the Asset as a library to the container, returning the container itself. |
T |
ManifestContainer.addAsManifestResource(Asset resource,
ArchivePath target)
Adds the Asset as a Manifest resource to the container, returning the container itself. |
T |
ManifestContainer.addAsManifestResource(Asset resource,
String target)
Adds the Asset as a Manifest resource to the container, returning the container itself. |
T |
EnterpriseContainer.addAsModule(Asset resource,
ArchivePath targetPath)
Adds a Asset to this Archive s module context. |
T |
EnterpriseContainer.addAsModule(Asset resource,
String targetPath)
Adds a Asset to this Archive s module context. |
T |
ResourceContainer.addAsResource(Asset resource,
ArchivePath target)
Adds the Asset as a resource to the container, returning the container itself. |
T |
ResourceContainer.addAsResource(Asset resource,
String target)
Adds the Asset as a resource to the container, returning the container itself. |
T |
WebContainer.addAsWebInfResource(Asset resource,
ArchivePath target)
Adds the Asset as a WEB-INF resource to the container, returning the container itself. |
T |
WebContainer.addAsWebInfResource(Asset resource,
String target)
Adds the Asset as a WEB-INF resource to the container, returning the container itself. |
T |
WebContainer.addAsWebResource(Asset resource,
ArchivePath target)
Adds the Asset as a Web resource to the container, returning the container itself. |
T |
WebContainer.addAsWebResource(Asset resource,
String target)
Adds the Asset as a Web resource to the container, returning the container itself. |
T |
EnterpriseContainer.setApplicationXML(Asset resource)
Adds a Asset to this Archive as application.xml. |
T |
ManifestContainer.setManifest(Asset resource)
Adds the Asset as MANIFEST.FM to the container, returning the container itself. |
T |
ResourceAdapterContainer.setResourceAdapterXML(Asset resource)
Adds the Asset as ra.xml to the container, returning the container itself. |
T |
WebContainer.setWebXML(Asset resource)
Adds the Asset as web.xml to the container, returning the container itself. |
Uses of Asset in org.jboss.shrinkwrap.impl.base |
---|
Methods in org.jboss.shrinkwrap.impl.base that return Asset | |
---|---|
Asset |
NodeImpl.getAsset()
|
Methods in org.jboss.shrinkwrap.impl.base with parameters of type Asset | |
---|---|
T |
MemoryMapArchiveBase.add(Asset asset,
ArchivePath path)
Adds the specified asset under the specified path into the target context |
T |
ArchiveBase.add(Asset asset,
ArchivePath path,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
T |
ArchiveBase.add(Asset asset,
String target)
Adds the specified resource under the context denoted by the specified target |
T |
ArchiveBase.add(Asset asset,
String target,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
Constructors in org.jboss.shrinkwrap.impl.base with parameters of type Asset | |
---|---|
NodeImpl(ArchivePath path,
Asset asset)
Constructor This constructor will create an asset Node with the specified path. |
Uses of Asset in org.jboss.shrinkwrap.impl.base.asset |
---|
Classes in org.jboss.shrinkwrap.impl.base.asset that implement Asset | |
---|---|
class |
ServiceProviderAsset
ServiceProviderAsset |
class |
ZipFileEntryAsset
Holds a reference to the ZipFile and the ZipEntry this Asset represents for lazy loading. |
Uses of Asset in org.jboss.shrinkwrap.impl.base.container |
---|
Methods in org.jboss.shrinkwrap.impl.base.container with parameters of type Asset | |
---|---|
T |
ContainerBase.add(Asset asset,
ArchivePath target)
Adds the specified asset under the specified path into the target context |
T |
ContainerBase.add(Asset asset,
ArchivePath path,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
T |
ContainerBase.add(Asset asset,
String name)
Adds the specified resource under the context denoted by the specified target |
T |
ContainerBase.add(Asset asset,
String target,
String name)
Adds the specified asset under the specified target (directory) using the specified name. |
T |
EnterpriseContainerBase.addAsApplicationResource(Asset resource,
ArchivePath target)
|
T |
EnterpriseContainerBase.addAsApplicationResource(Asset resource,
String target)
|
T |
ContainerBase.addAsLibrary(Asset resource,
ArchivePath target)
|
T |
ContainerBase.addAsLibrary(Asset resource,
String target)
|
T |
ContainerBase.addAsManifestResource(Asset resource,
ArchivePath target)
|
T |
ContainerBase.addAsManifestResource(Asset resource,
String target)
|
T |
EnterpriseContainerBase.addAsModule(Asset resource,
ArchivePath targetPath)
|
T |
EnterpriseContainerBase.addAsModule(Asset resource,
String targetPath)
|
T |
ContainerBase.addAsResource(Asset resource,
ArchivePath target)
|
T |
ContainerBase.addAsResource(Asset resource,
String target)
|
T |
WebContainerBase.addAsWebInfResource(Asset resource,
ArchivePath target)
Adds the Asset as a WEB-INF resource to the container, returning the container itself. |
T |
WebContainerBase.addAsWebInfResource(Asset resource,
String target)
Adds the Asset as a WEB-INF resource to the container, returning the container itself. |
T |
WebContainerBase.addAsWebResource(Asset resource,
ArchivePath target)
Adds the Asset as a Web resource to the container, returning the container itself. |
T |
WebContainerBase.addAsWebResource(Asset resource,
String target)
|
T |
EnterpriseContainerBase.setApplicationXML(Asset resource)
|
T |
ContainerBase.setManifest(Asset resource)
|
T |
ResourceAdapterContainerBase.setResourceAdapterXML(Asset resource)
|
T |
WebContainerBase.setWebXML(Asset resource)
|
|
ShrinkWrap Aggregator and Build Parent 1.0.0-cr-1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |