You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by su...@apache.org on 2010/12/21 16:18:15 UTC

svn commit: r1051525 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java

Author: supun
Date: Tue Dec 21 15:18:15 2010
New Revision: 1051525

URL: http://svn.apache.org/viewvc?rev=1051525&view=rev
Log:
fixing documentation, AXIS2-4078

Modified:
    axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java

Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java?rev=1051525&r1=1051524&r2=1051525&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java (original)
+++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/SessionUtils.java Tue Dec 21 15:18:15 2010
@@ -28,9 +28,10 @@ import java.util.Iterator;
 public class SessionUtils {
 
     /**
-     * Walk through the list of services and use the minimum of the scopes as the scope for the whole service group
+     * Walk through the list of services and use the maximum of the scopes as the scope
+     * for the whole service group
      *
-     * @param axisServiceGroup
+     * @param axisServiceGroup the service group
      * @return scope for the service group
      */
     public static String calculateMaxScopeForServiceGroup(AxisServiceGroup axisServiceGroup) {
@@ -49,8 +50,8 @@ public class SessionUtils {
     /**
      * convert scope into a numerical value
      *
-     * @param scope
-     * @return integer
+     * @param scope scope as a string
+     * @return integer the scope as a number
      */
     private static int getScopeIntValue(String scope) {
         if (Constants.SCOPE_REQUEST.equals(scope)) {
@@ -69,8 +70,8 @@ public class SessionUtils {
     /**
      * Get the actual scope string given the numerical value
      *
-     * @param scope
-     * @return string
+     * @param scope scope as a number
+     * @return string scope as a string
      */
     private static String getScopeString(int scope) {
         switch (scope) {