Remove RPC's for listing all groups and my groups

These RPC's are not needed anymore since there is now a REST API to
retrieve the groups.

Change-Id: I92603f4fdc74da1bd7bcf3e55917bb38264f060a
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-01-07 14:26:05 +01:00
committed by Gerrit Code Review
parent d57c3fd834
commit 2d7561ddab
7 changed files with 1 additions and 118 deletions

View File

@@ -18,7 +18,6 @@ import com.google.gerrit.common.audit.Audit;
import com.google.gerrit.common.auth.SignInRequired;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.reviewdb.client.AccountExternalId;
import com.google.gerrit.reviewdb.client.AccountGroup;
import com.google.gerrit.reviewdb.client.AccountSshKey;
import com.google.gerrit.reviewdb.client.ContactInformation;
import com.google.gwtjsonrpc.common.AsyncCallback;
@@ -61,9 +60,6 @@ public interface AccountSecurity extends RemoteJsonService {
@SignInRequired
void myExternalIds(AsyncCallback<List<AccountExternalId>> callback);
@SignInRequired
void myGroups(AsyncCallback<List<AccountGroup>> callback);
@Audit
@SignInRequired
void deleteExternalIds(Set<AccountExternalId.Key> keys,

View File

@@ -29,10 +29,6 @@ import java.util.Set;
@RpcImpl(version = Version.V2_0)
public interface GroupAdminService extends RemoteJsonService {
@Audit
@SignInRequired
void visibleGroups(AsyncCallback<GroupList> callback);
@Audit
@SignInRequired
void createGroup(String newName, AsyncCallback<AccountGroup.Id> callback);