Return-Path: Delivered-To: apmail-forrest-svn-archive@www.apache.org Received: (qmail 65789 invoked from network); 30 Sep 2008 13:12:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Sep 2008 13:12:51 -0000 Received: (qmail 10160 invoked by uid 500); 30 Sep 2008 13:12:49 -0000 Delivered-To: apmail-forrest-svn-archive@forrest.apache.org Received: (qmail 10121 invoked by uid 500); 30 Sep 2008 13:12:49 -0000 Mailing-List: contact svn-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Forrest Developers List" List-Id: Delivered-To: mailing list svn@forrest.apache.org Received: (qmail 10112 invoked by uid 99); 30 Sep 2008 13:12:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Sep 2008 06:12:49 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Sep 2008 13:11:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A57332388886; Tue, 30 Sep 2008 06:12:29 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r700448 - /forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java Date: Tue, 30 Sep 2008 13:12:29 -0000 To: svn@forrest.apache.org From: thorsten@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080930131229.A57332388886@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: thorsten Date: Tue Sep 30 06:12:29 2008 New Revision: 700448 URL: http://svn.apache.org/viewvc?rev=700448&view=rev Log: Resolver can throw exceptions Modified: forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java Modified: forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java URL: http://svn.apache.org/viewvc/forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java?rev=700448&r1=700447&r2=700448&view=diff ============================================================================== --- forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java (original) +++ forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java Tue Sep 30 06:12:29 2008 @@ -18,6 +18,8 @@ import java.io.InputStream; +import org.apache.forrest.dispatcher.exception.DispatcherException; + /** * Wrapper interface to enable multible resolver implementation this makes it * possible to use the dispatcher outside of cocoon as standalone application @@ -34,7 +36,8 @@ * * @param uri the uri that we want * @return the stream representation of the uri. + * @throws DispatcherException */ - InputStream resolve(String uri); + InputStream resolve(String uri) throws DispatcherException; }