You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by re...@apache.org on 2015/04/30 13:00:34 UTC

[2/2] stratos git commit: Updating the java doc comment

Updating the java doc comment


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/87cb7630
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/87cb7630
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/87cb7630

Branch: refs/heads/master
Commit: 87cb7630ddc52b33eb44ddf4d466952344ac11f0
Parents: f8f9f71
Author: Vishanth <vi...@gmail.com>
Authored: Thu Apr 30 16:21:34 2015 +0530
Committer: Vishanth <vi...@gmail.com>
Committed: Thu Apr 30 16:21:34 2015 +0530

----------------------------------------------------------------------
 .../apache/stratos/rest/endpoint/api/StratosApiV41Utils.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/87cb7630/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41Utils.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41Utils.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41Utils.java
index 3ce4ab7..1755178 100644
--- a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41Utils.java
+++ b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41Utils.java
@@ -1229,8 +1229,8 @@ public class StratosApiV41Utils {
     /**
      * This method is to validate the application definition to have unique aliases among its groups
      *
-     * @param applicationDefinition
-     * @return
+     * @param applicationDefinition - the application definition
+     * @throws RestAPIException
      */
     private static void validateGroupAliasesInApplicationDefinition(ApplicationBean applicationDefinition) throws RestAPIException {
 
@@ -1261,7 +1261,9 @@ public class StratosApiV41Utils {
      *
      * @param groupsSet - the group collection in which the groups are added to
      * @param groups - the group collection in which it traverses through
+     * @throws RestAPIException
      */
+
     private static void validateGroupsRecursively(ConcurrentHashMap<String, GroupReferenceBean> groupsSet,
                                                   Collection<GroupReferenceBean> groups) throws RestAPIException{
         for (GroupReferenceBean group : groups) {