|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.jersey.core.spi.scanning.PackageNamesScanner
public class PackageNamesScanner
A scanner that recursively scans URI-based resources present in a set of package names, and sub-package names of that set.
The URIs for a package name are obtained 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 UriSchemeScanner
that
supports the URI scheme.
The following are registered.
The FileSchemeScanner
for "file" URI schemes.
The JarZipSchemeScanner
for "jar" or "zip" URI schemes to jar
resources.
The VfsSchemeScanner
for the JBoss-based "vfsfile" and "vfszip"
URI schemes.
If a URI scheme is not supported a ScannerException
will be thrown
and package scanning deployment will fail.
Constructor Summary | |
---|---|
PackageNamesScanner(java.lang.ClassLoader classloader,
java.lang.String[] packages)
Scan from a set of packages using declared class loader. |
|
PackageNamesScanner(java.lang.String[] packages)
Scan from a set of packages using the context class loader. |
Method Summary | |
---|---|
void |
scan(ScannerListener cfl)
Perform a scan and report resources to a scanning listener. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PackageNamesScanner(java.lang.String[] packages)
packages
- an array of package names.public PackageNamesScanner(java.lang.ClassLoader classloader, java.lang.String[] packages)
classloader
- the class loader to load classes from.packages
- an array of package names.Method Detail |
---|
public void scan(ScannerListener cfl)
Scanner
scan
in interface Scanner
cfl
- the scanning listener to report entries.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |