Package org.apache.tomcat
Interface JarScanner
- All Known Implementing Classes:
StandardJarScanner
public interface JarScanner
Scans a web application and classloader hierarchy for JAR files. Uses
include TLD scanning and web-fragment.xml scanning. Uses a call-back
mechanism so the caller can process each JAR found.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
scan
(JarScanType scanType, ServletContext context, JarScannerCallback callback) Scan the provided ServletContext and classloader for JAR files.void
setJarScanFilter
(JarScanFilter jarScanFilter)
-
Method Details
-
scan
Scan the provided ServletContext and classloader for JAR files. Each JAR file found will be passed to the callback handler to be processed.- Parameters:
scanType
- The type of JAR scan to perform. This is passed to the filter which uses it to determine how to filter the resultscontext
- The ServletContext - used to locate and access WEB-INF/libcallback
- The handler to process any JARs found
-
getJarScanFilter
JarScanFilter getJarScanFilter() -
setJarScanFilter
-