Uses of Interface
org.jboss.shrinkwrap.api.ArchivePath
-
-
Uses of ArchivePath in org.jboss.shrinkwrap.api
Methods in org.jboss.shrinkwrap.api that return ArchivePath Modifier and Type Method Description static ArchivePathArchivePaths. create(String context)Creates a newArchivePathwith the specified contextstatic ArchivePathArchivePaths. create(String basePath, String context)Creates a newArchivePathusing the specified base and specified relative context.static ArchivePathArchivePaths. create(String basePath, ArchivePath context)Creates a newArchivePathusing the specified base and specified relative context.static ArchivePathArchivePaths. create(ArchivePath basePath, String context)Creates a newArchivePathusing the specified base and specified relative context.static ArchivePathArchivePaths. create(ArchivePath basePath, ArchivePath context)Creates a newArchivePathusing the specified base and specified relative context.ArchivePathArchivePath. getParent()Obtains the parent of this Path, if exists, else null.ArchivePathArchiveEvent. getPath()ArchivePathNode. getPath()static ArchivePathArchivePaths. root()Creates a newArchivePathrepresenting the root path (/).Methods in org.jboss.shrinkwrap.api that return types with arguments of type ArchivePath Modifier and Type Method Description static Filter<ArchivePath>Filters. exclude(Class<?>... classes)static Filter<ArchivePath>Filters. exclude(Package... packages)static Filter<ArchivePath>Filters. exclude(String regexp)static Filter<ArchivePath>Filters. excludePaths(String... paths)Filterthat exclude allArchivePaths that match the given List of paths.static Filter<ArchivePath>Filters. excludePaths(Collection<String> paths)Filterthat exclude allArchivePaths that match the given List of paths.Map<ArchivePath,Node>Archive. getContent()Obtains all assets in this archive, along with their respective paths.Map<ArchivePath,Node>Archive. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.static Filter<ArchivePath>Filters. include(Class<?>... classes)static Filter<ArchivePath>Filters. include(Package... packages)static Filter<ArchivePath>Filters. include(String regexp)static Filter<ArchivePath>Filters. includeAll()Filterthat includes allArchivePaths.static Filter<ArchivePath>Filters. includePaths(String... paths)Filerthat include allArchivePaths that match the given List of paths..static Filter<ArchivePath>Filters. includePaths(Collection<String> paths)Filerthat include allArchivePaths that match the given List of paths..Methods in org.jboss.shrinkwrap.api with parameters of type ArchivePath Modifier and Type Method Description TArchive. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)Add an archive under a specific context and maintain the archive name as context path.TArchive. add(Asset asset, ArchivePath target)Adds the specified asset under the specified path into the target contextTArchive. add(Asset asset, ArchivePath target, String name)Adds the specified asset under the specified target (directory) using the specified name.TArchive. addAsDirectories(ArchivePath... paths)Adds the specified directories.TArchive. addAsDirectory(ArchivePath path)Adds the specified directory.booleanArchive. contains(ArchivePath path)Denotes whether this archive contains a resource at the specified pathstatic ArchivePathArchivePaths. create(String basePath, ArchivePath context)Creates a newArchivePathusing the specified base and specified relative context.static ArchivePathArchivePaths. create(ArchivePath basePath, String context)Creates a newArchivePathusing the specified base and specified relative context.static ArchivePathArchivePaths. create(ArchivePath basePath, ArchivePath context)Creates a newArchivePathusing the specified base and specified relative context.NodeArchive. delete(ArchivePath path)NodeArchive. get(ArchivePath path)Obtains theNodelocated at the specified path<X extends Archive<X>>
XArchive. getAsType(Class<X> type, ArchivePath path)Get a nestedArchiveas a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
XArchive. getAsType(Class<X> type, ArchivePath path, ArchiveFormat archiveFormat)TArchive. 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.TArchive. 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.TArchive. move(ArchivePath source, ArchivePath target)Moves the asset under the source path to the target path.Method parameters in org.jboss.shrinkwrap.api with type arguments of type ArchivePath Modifier and Type Method Description TArchive. filter(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive as a new Archive.
This is an alias for shallowCopy(Filter).<X extends Archive<X>>
Collection<X>Archive. getAsType(Class<X> type, Filter<ArchivePath> filter)Get all nestedArchivematching the filter as a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
Collection<X>Archive. getAsType(Class<X> type, Filter<ArchivePath> filter, ArchiveFormat archiveFormat)Get all nestedArchivematching the filter as a specific type using the specifyArchiveFormat.Map<ArchivePath,Node>Archive. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.TArchive. 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.TArchive. 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.TArchive. merge(Archive<?> source, Filter<ArchivePath> filter)Merge the contents from an existing archive without maintaining the archive name in the context path.Archive<T>Archive. shallowCopy(Filter<ArchivePath> filter)Creates a shallow copy of thisArchivebased on given filter.Assets from this archive are made available under the same paths.Constructors in org.jboss.shrinkwrap.api with parameters of type ArchivePath Constructor Description ArchiveEvent(ArchivePath path, Asset asset) -
Uses of ArchivePath in org.jboss.shrinkwrap.api.container
Methods in org.jboss.shrinkwrap.api.container with parameters of type ArchivePath Modifier and Type Method Description TEnterpriseContainer. addAsApplicationResource(File resource, ArchivePath target)TEnterpriseContainer. addAsApplicationResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a resource to a specific path inside the container, returning the container itself.TEnterpriseContainer. addAsApplicationResource(String resourceName, ArchivePath target)Adds a resource to thisArchives application context.TEnterpriseContainer. addAsApplicationResource(URL resource, ArchivePath target)TEnterpriseContainer. addAsApplicationResource(Asset resource, ArchivePath target)TLibraryContainer. addAsLibrary(File resource, ArchivePath target)Adds theFileas a library to the container, returning the container itself.TLibraryContainer. addAsLibrary(String resourceName, ArchivePath target)Adds the resource as a library to the container, returning the container itself.TLibraryContainer. addAsLibrary(URL resource, ArchivePath target)Adds theURLas a library to the container, returning the container itself.TLibraryContainer. addAsLibrary(Asset resource, ArchivePath target)Adds theAssetas a library to the container, returning the container itself.TManifestContainer. addAsManifestResource(File resource, ArchivePath target)Adds theFileas a Manifest resource to the container, returning the container itself.TManifestContainer. addAsManifestResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a resource to a specific path inside the container, returning the container itself.TManifestContainer. addAsManifestResource(String resourceName, ArchivePath target)Adds the resource as a Manifest resource to the container, returning the container itself.TManifestContainer. addAsManifestResource(URL resource, ArchivePath target)Adds theURLas a Manifest resource to the container, returning the container itself.TManifestContainer. addAsManifestResource(Asset resource, ArchivePath target)Adds theAssetas a Manifest resource to the container, returning the container itself.TEnterpriseContainer. addAsModule(File resource, ArchivePath targetPath)TEnterpriseContainer. addAsModule(String resourceName, ArchivePath targetPath)Adds a resource to thisArchives module context.TEnterpriseContainer. addAsModule(URL resource, ArchivePath targetPath)TEnterpriseContainer. addAsModule(Asset resource, ArchivePath targetPath)TResourceContainer. addAsResource(File resource, ArchivePath target)Adds theFileas a resource to the container, returning the container itself.TResourceContainer. addAsResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a resource to a specific path inside the container, returning the container itself.TResourceContainer. addAsResource(String resourceName, ArchivePath target)Adds the resource with the specified name to the container, returning the container itself.TResourceContainer. addAsResource(String resourceName, ArchivePath target, ClassLoader classLoader)Adds the resource as a resource to the container, returning the container itself.TResourceContainer. addAsResource(URL resource, ArchivePath target)Adds theURLas a resource to the container, returning the container itself.TResourceContainer. addAsResource(Asset resource, ArchivePath target)Adds theAssetas a resource to the container, returning the container itself.TWebContainer. addAsWebInfResource(File resource, ArchivePath target)Adds theFileas a WEB-INF resource to the container, returning the container itself.TWebContainer. addAsWebInfResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a WEB-INF resource to a specific path inside the container, returning the container itself.TWebContainer. addAsWebInfResource(String resourceName, ArchivePath target)Adds the resource as a WEB-INF resource to the container, returning the container itself.TWebContainer. addAsWebInfResource(URL resource, ArchivePath target)Adds theURLas a WEB-INF resource to the container, returning the container itself.TWebContainer. addAsWebInfResource(Asset resource, ArchivePath target)Adds theAssetas a WEB-INF resource to the container, returning the container itself.TWebContainer. addAsWebResource(File resource, ArchivePath target)Adds theFileas a Web resource to the container, returning the container itself.TWebContainer. addAsWebResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a resource to a specific path inside the container, returning the container itself.TWebContainer. addAsWebResource(String resourceName, ArchivePath target)Adds the resource as a Web resource to the container, returning the container itself.TWebContainer. addAsWebResource(URL resource, ArchivePath target)Adds theURLas a Web resource to the container, returning the container itself.TWebContainer. addAsWebResource(Asset resource, ArchivePath target)Adds theAssetas a Web resource to the container, returning the container itself.Method parameters in org.jboss.shrinkwrap.api.container with type arguments of type ArchivePath Modifier and Type Method Description TClassContainer. addPackages(boolean recursive, Filter<ArchivePath> filter, Package... packages)TClassContainer. addPackages(boolean recursive, Filter<ArchivePath> filter, String... packages)TClassContainer. deletePackages(boolean recursive, Filter<ArchivePath> filter, Package... packages)TClassContainer. deletePackages(boolean recursive, Filter<ArchivePath> filter, String... packages) -
Uses of ArchivePath in org.jboss.shrinkwrap.api.importer
Method parameters in org.jboss.shrinkwrap.api.importer with type arguments of type ArchivePath Modifier and Type Method Description ExplodedImporterExplodedImporter. importDirectory(File file, Filter<ArchivePath> filter)Import a directory structure as a archive.ExplodedImporterExplodedImporter. importDirectory(String fileName, Filter<ArchivePath> filter)Import a directory structure as a archive.IStreamImporter. importFrom(File file, Filter<ArchivePath> filter)Imports provided File as aArchive.IStreamImporter. importFrom(InputStream stream, Filter<ArchivePath> filter)Imports provided stream as aArchive. -
Uses of ArchivePath in org.jboss.shrinkwrap.api.nio.file
Constructors in org.jboss.shrinkwrap.api.nio.file with parameters of type ArchivePath Constructor Description MemoryNamedAsset(ArchivePath path) -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base
Methods in org.jboss.shrinkwrap.impl.base that return ArchivePath Modifier and Type Method Description protected ArchivePathGenericArchiveImpl. getClassesPath()Should be implemented to set the path for Class related resources.protected ArchivePathGenericArchiveImpl. getLibraryPath()Should be implemented to set the path for Library related resources.protected ArchivePathGenericArchiveImpl. getManifestPath()Should be implemented to set the path for Manifest related resources.ArchivePathNodeImpl. getPath()protected ArchivePathGenericArchiveImpl. getResourcePath()Should be implemented to set the path for Resource related resources.Methods in org.jboss.shrinkwrap.impl.base that return types with arguments of type ArchivePath Modifier and Type Method Description Map<ArchivePath,Node>MemoryMapArchiveBase. getContent()Obtains all assets in this archive, along with their respective paths.Map<ArchivePath,Node>MemoryMapArchiveBase. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.Methods in org.jboss.shrinkwrap.impl.base with parameters of type ArchivePath Modifier and Type Method Description TArchiveBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)Add an archive under a specific context and maintain the archive name as context path.TArchiveBase. add(Asset asset, ArchivePath path, String name)Adds the specified asset under the specified target (directory) using the specified name.TMemoryMapArchiveBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)Add an archive under a specific context and maintain the archive name as context path.TMemoryMapArchiveBase. add(Asset asset, ArchivePath path)Adds the specified asset under the specified path into the target contextTArchiveBase. addAsDirectories(ArchivePath... paths)Adds the specified directories.TMemoryMapArchiveBase. addAsDirectory(ArchivePath path)Adds the specified directory.booleanMemoryMapArchiveBase. contains(ArchivePath path)Denotes whether this archive contains a resource at the specified pathNodeMemoryMapArchiveBase. delete(ArchivePath path)NodeMemoryMapArchiveBase. get(ArchivePath path)Obtains theNodelocated at the specified path<X extends Archive<X>>
XArchiveBase. getAsType(Class<X> type, ArchivePath path)Get a nestedArchiveas a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
XArchiveBase. getAsType(Class<X> type, ArchivePath path, ArchiveFormat archiveFormat)TArchiveBase. 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.TArchiveBase. 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.TArchiveBase. move(ArchivePath source, ArchivePath target)Moves the asset under the source path to the target path.Method parameters in org.jboss.shrinkwrap.impl.base with type arguments of type ArchivePath Modifier and Type Method Description TArchiveBase. filter(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive as a new Archive.
This is an alias for shallowCopy(Filter).<X extends Archive<X>>
Collection<X>ArchiveBase. getAsType(Class<X> type, Filter<ArchivePath> filter)Get all nestedArchivematching the filter as a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
Collection<X>ArchiveBase. getAsType(Class<X> type, Filter<ArchivePath> filter, ArchiveFormat archiveFormat)Get all nestedArchivematching the filter as a specific type using the specifyArchiveFormat.Map<ArchivePath,Node>MemoryMapArchiveBase. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.TArchiveBase. 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.TArchiveBase. 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.TArchiveBase. merge(Archive<?> source, Filter<ArchivePath> filter)Merge the contents from an existing archive without maintaining the archive name in the context path.Archive<T>ArchiveBase. shallowCopy(Filter<ArchivePath> filter)Creates a shallow copy of thisArchivebased on given filter.Assets from this archive are made available under the same paths.Constructors in org.jboss.shrinkwrap.impl.base with parameters of type ArchivePath Constructor Description NodeImpl(ArchivePath path)Constructor This constructor will create a directory Node with the specified path.NodeImpl(ArchivePath path, Asset asset)Constructor This constructor will create an asset Node with the specified path. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.asset
Methods in org.jboss.shrinkwrap.impl.base.asset that return ArchivePath Modifier and Type Method Description static ArchivePathAssetUtil. getFullPathForClassResource(Class<?> clazz)Helper to extract a ClassResources full path.static ArchivePathAssetUtil. getFullPathForClassResource(String className)Helper to extract a ClassResources full path.static ArchivePathAssetUtil. getPathForClassloaderResource(String resourceName)Helper to extract a ClassloaderResources path information. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.container
Methods in org.jboss.shrinkwrap.impl.base.container that return ArchivePath Modifier and Type Method Description protected abstract ArchivePathEnterpriseContainerBase. getApplicationPath()Should be implemented to set the path for Application related resources.protected abstract ArchivePathContainerBase. getClassesPath()Should be implemented to set the path for Class related resources.protected abstract ArchivePathContainerBase. getLibraryPath()Should be implemented to set the path for Library related resources.protected abstract ArchivePathContainerBase. getManifestPath()Should be implemented to set the path for Manifest related resources.protected abstract ArchivePathEnterpriseContainerBase. getModulePath()Should be implemented to set the path for Module related resources.protected abstract ArchivePathContainerBase. getResourcePath()Should be implemented to set the path for Resource related resources.protected abstract ArchivePathWebContainerBase. getServiceProvidersPath()Returns the path to web container service providersprotected abstract ArchivePathWebContainerBase. getWebInfPath()Returns the path to WEB-INFprotected abstract ArchivePathWebContainerBase. getWebPath()Returns the path to web resourcesMethods in org.jboss.shrinkwrap.impl.base.container that return types with arguments of type ArchivePath Modifier and Type Method Description Map<ArchivePath,Node>ContainerBase. getContent()Obtains all assets in this archive, along with their respective paths.Map<ArchivePath,Node>ContainerBase. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.Methods in org.jboss.shrinkwrap.impl.base.container with parameters of type ArchivePath Modifier and Type Method Description TContainerBase. add(Archive<?> archive, ArchivePath path, Class<? extends StreamExporter> exporter)Add an archive under a specific context and maintain the archive name as context path.TContainerBase. add(Asset asset, ArchivePath target)Adds the specified asset under the specified path into the target contextTContainerBase. add(Asset asset, ArchivePath path, String name)Adds the specified asset under the specified target (directory) using the specified name.TEnterpriseContainerBase. addAsApplicationResource(File resource, ArchivePath target)TEnterpriseContainerBase. addAsApplicationResource(Package resourcePackage, String resourceName, ArchivePath target)TEnterpriseContainerBase. addAsApplicationResource(String resourceName, ArchivePath target)TEnterpriseContainerBase. addAsApplicationResource(URL resource, ArchivePath target)TEnterpriseContainerBase. addAsApplicationResource(Asset resource, ArchivePath target)TContainerBase. addAsDirectories(ArchivePath... paths)Adds the specified directories.TContainerBase. addAsDirectory(ArchivePath path)Adds the specified directory.TContainerBase. addAsLibrary(File resource, ArchivePath target)TContainerBase. addAsLibrary(String resourceName, ArchivePath target)TContainerBase. addAsLibrary(URL resource, ArchivePath target)TContainerBase. addAsLibrary(Asset resource, ArchivePath target)TContainerBase. addAsManifestResource(File resource, ArchivePath target)TContainerBase. addAsManifestResource(Package resourcePackage, String resourceName, ArchivePath target)TContainerBase. addAsManifestResource(String resourceName, ArchivePath target)TContainerBase. addAsManifestResource(URL resource, ArchivePath target)TContainerBase. addAsManifestResource(Asset resource, ArchivePath target)TEnterpriseContainerBase. addAsModule(File resource, ArchivePath targetPath)TEnterpriseContainerBase. addAsModule(String resourceName, ArchivePath targetPath)TEnterpriseContainerBase. addAsModule(URL resource, ArchivePath targetPath)TEnterpriseContainerBase. addAsModule(Asset resource, ArchivePath targetPath)TContainerBase. addAsResource(File resource, ArchivePath target)TContainerBase. addAsResource(Package resourcePackage, String resourceName, ArchivePath target)TContainerBase. addAsResource(String resourceName, ArchivePath target)TContainerBase. addAsResource(String resourceName, ArchivePath target, ClassLoader classLoader)TContainerBase. addAsResource(URL resource, ArchivePath target)TContainerBase. addAsResource(Asset resource, ArchivePath target)TWebContainerBase. addAsWebInfResource(File resource, ArchivePath target)Adds theFileas a WEB-INF resource to the container, returning the container itself.TWebContainerBase. addAsWebInfResource(Package resourcePackage, String resourceName, ArchivePath target)Adds the resource as a WEB-INF resource to a specific path inside the container, returning the container itself.TWebContainerBase. addAsWebInfResource(String resourceName, ArchivePath target)Adds the resource as a WEB-INF resource to the container, returning the container itself.TWebContainerBase. addAsWebInfResource(URL resource, ArchivePath target)Adds theURLas a WEB-INF resource to the container, returning the container itself.TWebContainerBase. addAsWebInfResource(Asset resource, ArchivePath target)Adds theAssetas a WEB-INF resource to the container, returning the container itself.TWebContainerBase. addAsWebResource(File resource, ArchivePath target)Adds theFileas a Web resource to the container, returning the container itself.TWebContainerBase. addAsWebResource(Package resourcePackage, String resourceName, ArchivePath target)TWebContainerBase. addAsWebResource(String resourceName, ArchivePath target)TWebContainerBase. addAsWebResource(URL resource, ArchivePath target)TWebContainerBase. addAsWebResource(Asset resource, ArchivePath target)Adds theAssetas a Web resource to the container, returning the container itself.booleanContainerBase. contains(ArchivePath path)Denotes whether this archive contains a resource at the specified pathNodeContainerBase. delete(ArchivePath path)NodeContainerBase. get(ArchivePath path)Obtains theNodelocated at the specified path<X extends Archive<X>>
XContainerBase. getAsType(Class<X> type, ArchivePath path)Get a nestedArchiveas a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
XContainerBase. getAsType(Class<X> type, ArchivePath path, ArchiveFormat archiveCompression)TContainerBase. 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.TContainerBase. 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.TContainerBase. move(ArchivePath source, ArchivePath target)Moves the asset under the source path to the target path.Method parameters in org.jboss.shrinkwrap.impl.base.container with type arguments of type ArchivePath Modifier and Type Method Description TContainerBase. addPackages(boolean recursive, Filter<ArchivePath> filter, Package... packages)TContainerBase. addPackages(boolean recursive, Filter<ArchivePath> filter, String... packageNames)TContainerBase. deletePackages(boolean recursive, Filter<ArchivePath> filter, Package... packages)TContainerBase. deletePackages(boolean recursive, Filter<ArchivePath> filter, String... packages)TContainerBase. filter(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive as a new Archive.
This is an alias for shallowCopy(Filter).<X extends Archive<X>>
Collection<X>ContainerBase. getAsType(Class<X> type, Filter<ArchivePath> filter)Get all nestedArchivematching the filter as a specific type.
The found Archives must have been added as a Archive, no import is performed.<X extends Archive<X>>
Collection<X>ContainerBase. getAsType(Class<X> type, Filter<ArchivePath> filter, ArchiveFormat archiveCompression)Get all nestedArchivematching the filter as a specific type using the specifyArchiveFormat.Map<ArchivePath,Node>ContainerBase. getContent(Filter<ArchivePath> filter)Obtains all assets matching given filter in this archive, along with its respective Path.TContainerBase. 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.TContainerBase. 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.TContainerBase. merge(Archive<?> source, Filter<ArchivePath> filter)Merge the contents from an existing archive without maintaining the archive name in the context path.Archive<T>ContainerBase. shallowCopy(Filter<ArchivePath> filter)Creates a shallow copy of thisArchivebased on given filter.Assets from this archive are made available under the same paths. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.exporter
Methods in org.jboss.shrinkwrap.impl.base.exporter with parameters of type ArchivePath Modifier and Type Method Description protected abstract voidAbstractExporterDelegate. processNode(ArchivePath path, Node node)Template method for processing a single node.protected voidExplodedExporterDelegate. processNode(ArchivePath path, Node node)Template method for processing a single node. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.filter
Methods in org.jboss.shrinkwrap.impl.base.filter with parameters of type ArchivePath Modifier and Type Method Description booleanExcludePaths. include(ArchivePath path)booleanExcludeRegExpPaths. include(ArchivePath path)booleanIncludeAllPaths. include(ArchivePath object)booleanIncludePaths. include(ArchivePath path)booleanIncludeRegExpPaths. include(ArchivePath path) -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.importer
Method parameters in org.jboss.shrinkwrap.impl.base.importer with type arguments of type ArchivePath Modifier and Type Method Description ExplodedImporterExplodedImporterImpl. importDirectory(File file, Filter<ArchivePath> filter)Import a directory structure as a archive.ExplodedImporterExplodedImporterImpl. importDirectory(String fileName, Filter<ArchivePath> filter)Import a directory structure as a archive. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.importer.zip
Method parameters in org.jboss.shrinkwrap.impl.base.importer.zip with type arguments of type ArchivePath Modifier and Type Method Description ZipImporterZipImporterImpl. importFrom(File file, Filter<ArchivePath> filter)Imports provided File as aArchive.ZipImporterZipImporterImpl. importFrom(InputStream stream, Filter<ArchivePath> filter)Imports provided stream as aArchive. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.path
Classes in org.jboss.shrinkwrap.impl.base.path that implement ArchivePath Modifier and Type Class Description classBasicPathA Path which may be optionally prefixed with some common namespace context at construction time.Methods in org.jboss.shrinkwrap.impl.base.path that return ArchivePath Modifier and Type Method Description ArchivePathBasicPath. getParent()Obtains the parent of this Path, if exists, else null.Methods in org.jboss.shrinkwrap.impl.base.path with parameters of type ArchivePath Modifier and Type Method Description intBasicPath. compareTo(ArchivePath path)Constructors in org.jboss.shrinkwrap.impl.base.path with parameters of type ArchivePath Constructor Description BasicPath(String basePath, ArchivePath context)Creates a new Path using the specified base and specified relative context.BasicPath(ArchivePath basePath, String context)Creates a new Path using the specified base and specified relative context.BasicPath(ArchivePath basePath, ArchivePath context)Creates a new Path using the specified base and specified relative context. -
Uses of ArchivePath in org.jboss.shrinkwrap.impl.base.spec
Methods in org.jboss.shrinkwrap.impl.base.spec that return ArchivePath Modifier and Type Method Description protected ArchivePathEnterpriseArchiveImpl. getApplicationPath()protected ArchivePathEnterpriseArchiveImpl. getClassesPath()Classes are not supported by EnterpriseArchive.protected ArchivePathJavaArchiveImpl. getClassesPath()protected ArchivePathResourceAdapterArchiveImpl. getClassesPath()Classes are not supported by ResourceAdapterArchive.protected ArchivePathWebArchiveImpl. getClassesPath()Should be implemented to set the path for Class related resources.ArchivePathEnterpriseArchiveImpl. getLibraryPath()ArchivePathJavaArchiveImpl. getLibraryPath()Libraries are not supported by JavaArchive.ArchivePathResourceAdapterArchiveImpl. getLibraryPath()protected ArchivePathWebArchiveImpl. getLibraryPath()Should be implemented to set the path for Library related resources.protected ArchivePathEnterpriseArchiveImpl. getManifestPath()protected ArchivePathJavaArchiveImpl. getManifestPath()protected ArchivePathResourceAdapterArchiveImpl. getManifestPath()protected ArchivePathWebArchiveImpl. getManifestPath()Should be implemented to set the path for Manifest related resources.protected ArchivePathEnterpriseArchiveImpl. getModulePath()protected ArchivePathEnterpriseArchiveImpl. getResourcePath()protected ArchivePathJavaArchiveImpl. getResourcePath()protected ArchivePathResourceAdapterArchiveImpl. getResourcePath()protected ArchivePathWebArchiveImpl. getResourcePath()Should be implemented to set the path for Resource related resources.protected ArchivePathWebArchiveImpl. getServiceProvidersPath()Returns the path to web container service providersprotected ArchivePathWebArchiveImpl. getWebInfPath()Returns the path to WEB-INFprotected ArchivePathWebArchiveImpl. getWebPath()Returns the path to web resources
-