public final class PackageNamesScanner extends AbstractResourceFinderAdapter
The URIs for a package name are obtained, by default, by invoking
ClassLoader.getResources(java.lang.String) with the parameter that
is the package name with "." replaced by "/".
Each URI is then scanned using a registered UriSchemeResourceFinderFactory that
supports the URI scheme.
The following are registered by default.
The FileSchemeResourceFinderFactory for "file" URI schemes.
The JarZipSchemeResourceFinderFactory for "jar" or "zip" URI schemes to jar
resources.
The VfsSchemeResourceFinderFactory for the JBoss-based "vfsfile" and "vfszip"
URI schemes.
Further schemes may be registered by registering an implementation of
UriSchemeResourceFinderFactory in the META-INF/services file whose name is the
the fully qualified class name of UriSchemeResourceFinderFactory.
If a URI scheme is not supported a ResourceFinderException will be thrown
and package scanning deployment will fail.
| Modifier and Type | Class and Description |
|---|---|
static class |
PackageNamesScanner.ResourcesProvider
Find resources with a given name and class loader.
|
| Constructor and Description |
|---|
PackageNamesScanner(ClassLoader classLoader,
String[] packages,
boolean recursive)
Scan a set of packages using the provided
ClassLoader. |
PackageNamesScanner(String[] packages,
boolean recursive)
Scan a set of packages using a context
ClassLoader. |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Default implementation of
#close() which does nothing. |
ClassLoader |
getClassloader() |
boolean |
hasNext() |
String |
next() |
InputStream |
open()
Open current resource.
|
void |
reset()
Reset the
ResourceFinder instance. |
static void |
setResourcesProvider(PackageNamesScanner.ResourcesProvider provider)
Set the
PackageNamesScanner.ResourcesProvider implementation to find resources. |
removeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingpublic PackageNamesScanner(String[] packages, boolean recursive)
ClassLoader.
The recursive flag determines whether the packages will be scanned recursively
together with their nested packages (true) or if only the specified packages
shall be scanned (false).packages - an array of package names.recursive - if (true the packages will be scanned recursively together with
any nested packages, if false only the explicitly listed packages
will be scanned.public PackageNamesScanner(ClassLoader classLoader, String[] packages, boolean recursive)
ClassLoader.
The recursive flag determines whether the packages will be scanned recursively
together with their nested packages (true) or if only the specified packages
shall be scanned (false).classLoader - the ClassLoader to load classes from.packages - an array of package names.recursive - if (true the packages will be scanned recursively together with
any nested packages, if false only the explicitly listed packages
will be scanned.public boolean hasNext()
public String next()
public InputStream open()
ResourceFinderpublic void close()
AbstractResourceFinderAdapter#close() which does nothing.close in interface AutoCloseableclose in interface ResourceFinderclose in class AbstractResourceFinderAdapterpublic void reset()
ResourceFinderResourceFinder instance.
Upon calling this method the implementing class MUST reset its internal state to the initial state.public ClassLoader getClassloader()
public static void setResourcesProvider(PackageNamesScanner.ResourcesProvider provider) throws SecurityException
PackageNamesScanner.ResourcesProvider implementation to find resources.
This method should be invoked before any package scanning is performed otherwise the functionality method will be utilized.
provider - the resources provider.SecurityException - if the resources provider cannot be set.Copyright © 2007-2024,Oracleand/or its affiliates.All Rights Reserved. Use is subject to license terms.