]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/dbObjects/SupportedUser.java
add: nucleus assurance
[gigi.git] / src / org / cacert / gigi / dbObjects / SupportedUser.java
index e957aa082faef1a5b1af048e8dea69cb0d73ad50..044f712b45f0a0ea8988a7f019d24097688824fb 100644 (file)
@@ -82,4 +82,12 @@ public class SupportedUser {
         target.rawUpdateUserData();
     }
 
+    public void grant(Group toMod) {
+        target.grantGroup(supporter, toMod);
+    }
+
+    public void revoke(Group toMod) {
+        target.revokeGroup(supporter, toMod);
+    }
+
 }