]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ui.admin/src/org/argeo/security/ui/admin/commands/DeleteRole.java
Work on user and group editors. Comment out legacy code that use old userAdminService
[lgpl/argeo-commons.git] / org.argeo.security.ui.admin / src / org / argeo / security / ui / admin / commands / DeleteRole.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.security.ui.admin.commands;
17
18 import org.argeo.security.UserAdminService;
19 import org.eclipse.core.commands.AbstractHandler;
20 import org.eclipse.core.commands.ExecutionEvent;
21 import org.eclipse.core.commands.ExecutionException;
22
23 /** Deletes the selected roles */
24 public class DeleteRole extends AbstractHandler {
25 private UserAdminService userAdminService;
26
27 @SuppressWarnings("unchecked")
28 public Object execute(ExecutionEvent event) throws ExecutionException {
29 return null;
30 }
31
32 public void setUserAdminService(UserAdminService userAdminService) {
33 this.userAdminService = userAdminService;
34 }
35 }
36 // ISelection selection = HandlerUtil.getCurrentSelection(event);
37 // if (selection.isEmpty())
38 // return null;
39 //
40 // List<String> toDelete = new ArrayList<String>();
41 // Iterator<String> it = ((IStructuredSelection) selection).iterator();
42 // while (it.hasNext()) {
43 // toDelete.add(it.next());
44 // }
45 //
46 // if (!MessageDialog
47 // .openQuestion(
48 // HandlerUtil.getActiveShell(event),
49 // "Delete Role",
50 // "Are you sure that you want to delete "
51 // + toDelete
52 // + "?\n"
53 // + "This may lead to inconsistencies in the application."))
54 // return null;
55 //
56 // for (String role : toDelete) {
57 // userAdminService.deleteRole(role);
58 // }
59 //
60 // JcrRolesView view = (JcrRolesView) HandlerUtil
61 // .getActiveWorkbenchWindow(event).getActivePage()
62 // .findView(JcrRolesView.ID);
63 // view.refresh();
64 // return null;
65 // }
66 //
67 // public void setUserAdminService(UserAdminService userAdminService) {
68 // this.userAdminService = userAdminService;
69 // }
70 // }