You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2018/04/22 19:46:43 UTC

[3/8] guacamole-client git commit: GUACAMOLE-220: Correct documentation of getUserGroups() behavior.

GUACAMOLE-220: Correct documentation of getUserGroups() behavior.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/b43aa599
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/b43aa599
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/b43aa599

Branch: refs/heads/master
Commit: b43aa599587f78e7ed5af7692a74b7523ed51f53
Parents: 393e1ab
Author: Michael Jumper <mj...@apache.org>
Authored: Sat Apr 21 14:11:18 2018 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Sat Apr 21 14:11:18 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/guacamole/net/auth/UserGroup.java  | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/b43aa599/guacamole-ext/src/main/java/org/apache/guacamole/net/auth/UserGroup.java
----------------------------------------------------------------------
diff --git a/guacamole-ext/src/main/java/org/apache/guacamole/net/auth/UserGroup.java b/guacamole-ext/src/main/java/org/apache/guacamole/net/auth/UserGroup.java
index 6c59a20..4dd167d 100644
--- a/guacamole-ext/src/main/java/org/apache/guacamole/net/auth/UserGroup.java
+++ b/guacamole-ext/src/main/java/org/apache/guacamole/net/auth/UserGroup.java
@@ -29,14 +29,15 @@ import org.apache.guacamole.GuacamoleException;
 public interface UserGroup extends Identifiable, Attributes, Permissions {
 
     /**
-     * Returns a set of all readable user groups that are members of this user
-     * group. If permission is granted for the current user to modify the
-     * members of this group, then the returned set will be mutable, and any
-     * such modifications should be made through changes to the returned set.
+     * Returns a set of all readable user groups of which this user group is a
+     * member. If permission is granted for the current user to modify the
+     * membership of this user group, then the returned set will be mutable,
+     * and any such modifications should be made through changes to the
+     * returned set.
      *
      * @return
-     *     The set of all readable user groups that are members of this user
-     *     group, which may be mutable.
+     *     The set of all readable user groups of which this user group is a
+     *     member.
      *
      * @throws GuacamoleException
      *     If an error occurs while retrieving the user groups.