ref #7849: harmonize admin and local preferences for distribution editor and use...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / handler / e4 / OpenPasswordWizzardHandlerE4.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.handler.e4;
11
12 import javax.inject.Named;
13
14 import org.eclipse.e4.core.di.annotations.Execute;
15 import org.eclipse.e4.ui.services.IServiceConstants;
16 import org.eclipse.jface.wizard.WizardDialog;
17 import org.eclipse.swt.widgets.Shell;
18
19 import eu.etaxonomy.cdm.model.common.User;
20 import eu.etaxonomy.taxeditor.model.MessagingUtils;
21 import eu.etaxonomy.taxeditor.store.CdmStore;
22 import eu.etaxonomy.taxeditor.ui.password.PasswordWizard;
23
24 /**
25 *
26 * @author pplitzner
27 * @date 10.10.2017
28 *
29 */
30 public class OpenPasswordWizzardHandlerE4 {
31
32 @Execute
33 public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
34
35 Object principal = CdmStore.getCurrentAuthentiation().getPrincipal();
36
37 if(principal instanceof User){
38
39 PasswordWizard wizard = new PasswordWizard((User)principal, null);
40 WizardDialog dialog = new WizardDialog(shell, wizard);
41
42 dialog.open();
43
44 } else {
45 // should never happen, log an error
46 MessagingUtils.error(OpenPasswordWizzardHandlerE4.class, "The principal currently authenticated is not a eu.etaxonomy.cdm.model.common.User", null);
47 }
48 }
49 }