You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2015/05/27 15:25:19 UTC

svn commit: r1682012 - /tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java

Author: markt
Date: Wed May 27 13:25:18 2015
New Revision: 1682012

URL: http://svn.apache.org/r1682012
Log:
Javadoc
(primarily to trigger a CI build to test updated Ant version on build slave)

Modified:
    tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java

Modified: tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java?rev=1682012&r1=1682011&r2=1682012&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java Wed May 27 13:25:18 2015
@@ -35,6 +35,8 @@ public interface JarScannerCallback {
      * @param isWebapp   Indicates if the JAR was found within a web
      *                       application. If <code>false</code> the JAR should
      *                       be treated as being provided by the container
+     *
+     * @throws IOException if an I/O error occurs while scanning the JAR
      */
     public void scan(JarURLConnection urlConn, String webappPath, boolean isWebapp)
             throws IOException;
@@ -50,6 +52,8 @@ public interface JarScannerCallback {
      * @param isWebapp   Indicates if the JAR was found within a web
      *                       application. If <code>false</code> the JAR should
      *                       be treated as being provided by the container
+     *
+     * @throws IOException if an I/O error occurs while scanning the JAR
      */
     public void scan(File file, String webappPath, boolean isWebapp) throws IOException;
 
@@ -58,6 +62,8 @@ public interface JarScannerCallback {
      * /WEB-INF/classes that should be handled as an unpacked JAR. Note that all
      * resource access must be via the ServletContext to ensure that any
      * additional resources are visible.
+     *
+     * @throws IOException if an I/O error occurs while scanning WEB-INF/classes
      */
     public void scanWebInfClasses() throws IOException;
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org