You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2006/04/25 08:36:32 UTC

svn commit: r396785 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java

Author: chinthaka
Date: Mon Apr 24 23:36:30 2006
New Revision: 396785

URL: http://svn.apache.org/viewcvs?rev=396785&view=rev
Log:
minor fix in to the javadoc

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java?rev=396785&r1=396784&r2=396785&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/modules/Module.java Mon Apr 24 23:36:30 2006
@@ -44,12 +44,13 @@
 
     /**
      * When engaging this module to some service or operation , module will be notify by calling this
-     * method there module autor can validate , add policy and do any thing that he want , and he can
+     * method there module author can validate , add policy and do any thing that he want , and he can
      * refuce the engage as well
      * @param axisDescription
      * @throws AxisFault
      */
     void engageNotify(AxisDescription axisDescription) throws AxisFault;
+    
     // shutdown the module
     public void shutdown(AxisConfiguration axisSystem) throws AxisFault;
 }