Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 44375 invoked from network); 2 Oct 2006 08:30:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Oct 2006 08:30:09 -0000 Received: (qmail 83965 invoked by uid 500); 2 Oct 2006 08:30:08 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 83690 invoked by uid 500); 2 Oct 2006 08:30:07 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 83679 invoked by uid 500); 2 Oct 2006 08:30:07 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 83675 invoked by uid 99); 2 Oct 2006 08:30:07 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Oct 2006 01:30:07 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:59095] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id E9/C1-16499-D0EC0254 for ; Mon, 02 Oct 2006 01:30:05 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9C1CC1A981A; Mon, 2 Oct 2006 01:30:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r451912 - in /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2: engine/Handler.java handlers/AbstractHandler.java Date: Mon, 02 Oct 2006 08:30:03 -0000 To: axis2-cvs@ws.apache.org From: chinthaka@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061002083003.9C1CC1A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: chinthaka Date: Mon Oct 2 01:30:02 2006 New Revision: 451912 URL: http://svn.apache.org/viewvc?view=rev&rev=451912 Log: Adding proper javadoc for Handler.invoke() as it is not implemented yet. Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/engine/Handler.java webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/engine/Handler.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/engine/Handler.java?view=diff&rev=451912&r1=451911&r2=451912 ============================================================================== --- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/engine/Handler.java (original) +++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/engine/Handler.java Mon Oct 2 01:30:02 2006 @@ -28,7 +28,9 @@ public interface Handler { /** - * Method cleanup. + * Since this might change the whole behavior of Axis2 handlers, and since this is still under discussion + * (http://marc.theaimsgroup.com/?l=axis-dev&m=114504084929285&w=2) implementation of this method is deferred. + * Note : This method will not be automatically called, from Axis2 engine, until this is fully implemented. */ public void cleanup(); Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java?view=diff&rev=451912&r1=451911&r2=451912 ============================================================================== --- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java (original) +++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java Mon Oct 2 01:30:02 2006 @@ -45,7 +45,9 @@ } /** - * Method cleanup. + * Since this might change the whole behavior of Axis2 handlers, and since this is still under discussion + * (http://marc.theaimsgroup.com/?l=axis-dev&m=114504084929285&w=2) implementation of this method is deferred. + * Note : This method will not be automatically called, from Axis2 engine, until this is fully implemented. */ public void cleanup() { } --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org