Uses of Interface
org.jboss.shrinkwrap.api.ArchivePath

Packages that use ArchivePath
org.jboss.shrinkwrap.api   
org.jboss.shrinkwrap.api.container   
 

Uses of ArchivePath in org.jboss.shrinkwrap.api
 

Methods in org.jboss.shrinkwrap.api that return ArchivePath
static ArchivePath ArchivePaths.create(ArchivePath basePath, ArchivePath context)
          Creates a new ArchivePath using the specified base and specified relative context.
static ArchivePath ArchivePaths.create(ArchivePath basePath, String context)
          Creates a new ArchivePath using the specified base and specified relative context.
static ArchivePath ArchivePaths.create(String context)
          Creates a new ArchivePath with the specified context
static ArchivePath ArchivePaths.create(String basePath, String context)
          Creates a new ArchivePath using the specified base and specified relative context.
static ArchivePath ArchivePaths.root()
          Creates a new ArchivePath representing the root path (/).
 

Methods in org.jboss.shrinkwrap.api that return types with arguments of type ArchivePath
static Filter<ArchivePath> Filters.exclude(String regexp)
          Filter that exclude all ArchivePaths that match a given Regular Expression Pattern.
 Map<ArchivePath,Asset> Archive.getContent()
          Obtains all assets in this archive, along with its respective Path.
 Map<ArchivePath,Asset> Archive.getContent(Filter<ArchivePath> filter)
          Obtains all assets matching given filter in this archive, along with its respective Path.
static Filter<ArchivePath> Filters.include(String regexp)
          Filer that include all ArchivePaths that match the given Regular Expression Pattern.
static Filter<ArchivePath> Filters.includeAll()
          Filter that includes all ArchivePaths.
 

Methods in org.jboss.shrinkwrap.api with parameters of type ArchivePath
 T Archive.add(Archive<?> archive, ArchivePath path)
          Add an archive under a specific context and maintain the archive name as context path.
 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.
 boolean Archive.contains(ArchivePath path)
          Denotes whether this archive contains a resource at the specified path
static ArchivePath ArchivePaths.create(ArchivePath basePath, ArchivePath context)
          Creates a new ArchivePath using the specified base and specified relative context.
static ArchivePath ArchivePaths.create(ArchivePath basePath, String context)
          Creates a new ArchivePath using the specified base and specified relative context.
 boolean Archive.delete(ArchivePath path)
          Removes the asset in the archive at the specified Path.
 Asset Archive.get(ArchivePath path)
          Obtains the asset located at the specified 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.
 

Method parameters in org.jboss.shrinkwrap.api with type arguments of type ArchivePath
 Map<ArchivePath,Asset> Archive.getContent(Filter<ArchivePath> filter)
          Obtains all assets matching given filter in this archive, along with its respective 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.
 

Uses of ArchivePath in org.jboss.shrinkwrap.api.container
 

Methods in org.jboss.shrinkwrap.api.container with parameters of type ArchivePath
 T EnterpriseContainer.addApplicationResource(Asset resource, ArchivePath target)
          Adds a Asset to this Archives application context.
 T EnterpriseContainer.addApplicationResource(File resource, ArchivePath target)
          Adds a File to this Archives application context.
 T EnterpriseContainer.addApplicationResource(String resourceName, ArchivePath target)
          Adds a resource to this Archives application context.
 T EnterpriseContainer.addApplicationResource(URL resource, ArchivePath target)
          Adds a URL to this Archives application context.
 T DirectoryContainer.addDirectories(ArchivePath... paths)
          Adds the specified directory to the Archive.
 T DirectoryContainer.addDirectory(ArchivePath path)
          Adds the specified directory to the Archive.
 T LibraryContainer.addLibrary(Asset resource, ArchivePath target)
          Adds the Asset as a library to the container, returning the container itself.
 T LibraryContainer.addLibrary(File resource, ArchivePath target)
          Adds the File as a library to the container, returning the container itself.
 T LibraryContainer.addLibrary(String resourceName, ArchivePath target)
          Adds the resource as a library to the container, returning the container itself.
 T LibraryContainer.addLibrary(URL resource, ArchivePath target)
          Adds the URL as a library to the container, returning the container itself.
 T ManifestContainer.addManifestResource(Asset resource, ArchivePath target)
          Adds the Asset as a Manifest resource to the container, returning the container itself.
 T ManifestContainer.addManifestResource(File resource, ArchivePath target)
          Adds the File as a Manifest resource to the container, returning the container itself.
 T ManifestContainer.addManifestResource(String resourceName, ArchivePath target)
          Adds the resource as a Manifest resource to the container, returning the container itself.
 T ManifestContainer.addManifestResource(URL resource, ArchivePath target)
          Adds the URL as a Manifest resource to the container, returning the container itself.
 T EnterpriseContainer.addModule(Asset resource, ArchivePath targetPath)
          Adds a Asset to this Archives module context.
 T EnterpriseContainer.addModule(File resource, ArchivePath targetPath)
          Adds a File to this Archives module context.
 T EnterpriseContainer.addModule(String resourceName, ArchivePath targetPath)
          Adds a resource to this Archives module context.
 T EnterpriseContainer.addModule(URL resource, ArchivePath targetPath)
          Adds a URL to this Archives module context.
 T ResourceContainer.addResource(Asset resource, ArchivePath target)
          Adds the Asset as a resource to the container, returning the container itself.
 T ResourceContainer.addResource(File resource, ArchivePath target)
          Adds the File as a resource to the container, returning the container itself.
 T ResourceContainer.addResource(String resourceName, ArchivePath target)
          Adds the resource with the specified name to the container, returning the container itself.
 T ResourceContainer.addResource(String resourceName, ArchivePath target, ClassLoader classLoader)
          Adds the resource as a resource to the container, returning the container itself.
 T ResourceContainer.addResource(URL resource, ArchivePath target)
          Adds the URL as a resource to the container, returning the container itself.
 T WebContainer.addWebResource(Asset resource, ArchivePath target)
          Adds the Asset as a Web resource to the container, returning the container itself.
 T WebContainer.addWebResource(File resource, ArchivePath target)
          Adds the File as a Web resource to the container, returning the container itself.
 T WebContainer.addWebResource(String resourceName, ArchivePath target)
          Adds the resource as a Web resource to the container, returning the container itself.
 T WebContainer.addWebResource(URL resource, ArchivePath target)
          Adds the URL as a Web resource to the container, returning the container itself.
 



Copyright © 2010 JBoss, a division of Red Hat, Inc.. All Rights Reserved.