]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/plugins/org.argeo.security.ui/src/main/java/org/argeo/security/ui/commands/OpenChangePasswordDialog.java
Merge fix of regression introduced by https://www.argeo.org/bugzilla/show_bug.cgi...
[lgpl/argeo-commons.git] / security / plugins / org.argeo.security.ui / src / main / java / org / argeo / security / ui / commands / OpenChangePasswordDialog.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.commands;
17
18 import org.argeo.security.ui.dialogs.ChangePasswordDialog;
19 import org.eclipse.core.commands.AbstractHandler;
20 import org.eclipse.core.commands.ExecutionEvent;
21 import org.eclipse.core.commands.ExecutionException;
22 import org.eclipse.jface.dialogs.Dialog;
23 import org.eclipse.jface.dialogs.MessageDialog;
24 import org.eclipse.ui.handlers.HandlerUtil;
25 import org.springframework.security.userdetails.UserDetailsManager;
26
27 /** Opens the change password dialog. */
28 public class OpenChangePasswordDialog extends AbstractHandler {
29 private UserDetailsManager userDetailsManager;
30
31 public Object execute(ExecutionEvent event) throws ExecutionException {
32 ChangePasswordDialog dialog = new ChangePasswordDialog(
33 HandlerUtil.getActiveShell(event), userDetailsManager);
34 if (dialog.open() == Dialog.OK) {
35 MessageDialog.openInformation(HandlerUtil.getActiveShell(event),
36 "Password changed", "Password changed.");
37 }
38 return null;
39 }
40
41 public void setUserDetailsManager(UserDetailsManager userDetailsManager) {
42 this.userDetailsManager = userDetailsManager;
43 }
44
45 }