Project

General

Profile

Download (2.76 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.ui.password;
12

    
13
import org.eclipse.jface.wizard.Wizard;
14
import org.eclipse.swt.widgets.Display;
15

    
16
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
17
import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
18
import eu.etaxonomy.cdm.api.service.IUserService;
19
import eu.etaxonomy.cdm.model.common.User;
20
import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
21
import eu.etaxonomy.taxeditor.store.CdmStore;
22
import eu.etaxonomy.taxeditor.store.StoreUtil;
23
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
24

    
25
/**
26
 * @author n.hoffmann
27
 * @created Mar 10, 2011
28
 * @version 1.0
29
 */
30
public class PasswordWizard extends Wizard implements IConversationEnabled{
31

    
32
	private PasswordWizardPage passwordPage;
33
	private User user;
34
	private ConversationHolder conversation;
35
	
36
	public PasswordWizard(ConversationHolder conversation, User user){
37
		this.conversation = conversation;
38
		this.user = user;
39
	}
40
	
41
	/* (non-Javadoc)
42
	 * @see org.eclipse.jface.wizard.Wizard#addPages()
43
	 */
44
	@Override
45
	public void addPages() {
46
		CdmFormFactory formFactory = new CdmFormFactory(Display.getDefault());
47
		
48
		passwordPage = new PasswordWizardPage(formFactory, getConversationHolder(), user);
49
		addPage(passwordPage);
50
	}
51
	
52
	/* (non-Javadoc)
53
	 * @see org.eclipse.jface.wizard.Wizard#performFinish()
54
	 */
55
	@Override
56
	public boolean performFinish() {
57
		String userName = user.getUsername();
58
		ConversationHolder internalConversation = CdmStore.getLoginManager().getConversationHolder();
59
		internalConversation.bind();
60
		try{
61
			if(CdmStore.getLoginManager().isAdmin()){
62
				CdmStore.getService(IUserService.class).changePasswordForUser(userName, passwordPage.getNewPassword());
63
			}else{
64
				CdmStore.getService(IUserService.class).changePassword(passwordPage.getOldPassword(), passwordPage.getNewPassword());
65
			}
66
			internalConversation.commit();
67
			return true;
68
		}catch(Exception e){
69
			StoreUtil.errorDialog("Error while changing password", getClass(), "There was a problem changing the password.", e);
70
			return false;
71
		}finally{
72
			conversation.bind();
73
		}
74
	}
75

    
76
	/* (non-Javadoc)
77
	 * @see eu.etaxonomy.cdm.persistence.hibernate.ICdmPostDataChangeObserver#update(eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap)
78
	 */
79
	@Override
80
	public void update(CdmDataChangeMap arg0) {
81
		// TODO Auto-generated method stub
82
		
83
	}
84

    
85
	/* (non-Javadoc)
86
	 * @see eu.etaxonomy.cdm.api.conversation.IConversationEnabled#getConversationHolder()
87
	 */
88
	@Override
89
	public ConversationHolder getConversationHolder() {
90
		return conversation;
91
	}
92

    
93
}
(2-2/3)