Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9B19118876 for ; Wed, 27 May 2015 13:25:19 +0000 (UTC) Received: (qmail 75635 invoked by uid 500); 27 May 2015 13:25:19 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 75547 invoked by uid 500); 27 May 2015 13:25:19 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 75537 invoked by uid 99); 27 May 2015 13:25:19 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2015 13:25:19 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 149F0AC06F9 for ; Wed, 27 May 2015 13:25:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1682012 - /tomcat/trunk/java/org/apache/tomcat/JarScannerCallback.java Date: Wed, 27 May 2015 13:25:19 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150527132519.149F0AC06F9@hades.apache.org> 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 false 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 false 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