Uses of Interface
org.jboss.shrinkwrap.api.asset.Asset

Packages that use Asset
org.jboss.shrinkwrap.api   
org.jboss.shrinkwrap.api.asset   
org.jboss.shrinkwrap.api.container   
 

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 Archives application context.
 T EnterpriseContainer.addAsApplicationResource(Asset resource, String target)
          Adds a Asset to this Archives 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 Archives module context.
 T EnterpriseContainer.addAsModule(Asset resource, String targetPath)
          Adds a Asset to this Archives 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.
 



Copyright © 2012 JBoss by Red Hat. All Rights Reserved.