Fixes an issue with derived unit editing where the editor was using deprecated interf...
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / user / operation / DeleteUserOperation.java
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.user.operation;
12
13 import org.eclipse.core.commands.ExecutionException;
14 import org.eclipse.core.commands.operations.IUndoContext;
15 import org.eclipse.core.runtime.IAdaptable;
16 import org.eclipse.core.runtime.IProgressMonitor;
17 import org.eclipse.core.runtime.IStatus;
18
19 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
20 import eu.etaxonomy.cdm.api.service.IUserService;
21 import eu.etaxonomy.cdm.model.common.User;
22 import eu.etaxonomy.taxeditor.operation.AbstractPersistentPostOperation;
23 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
24 import eu.etaxonomy.taxeditor.store.CdmStore;
25
26 /**
27 * @author n.hoffmann
28 * @created Dec 2, 2010
29 * @version 1.0
30 */
31 public class DeleteUserOperation extends AbstractPersistentPostOperation {
32
33 private User user;
34
35 /**
36 * @param label
37 * @param undoContext
38 * @param postOperationEnabled
39 * @param conversationEnabled
40 */
41 protected DeleteUserOperation(String label, IUndoContext undoContext,
42 IPostOperationEnabled postOperationEnabled, User user,
43 IConversationEnabled conversationEnabled) {
44 super(label, undoContext, postOperationEnabled, conversationEnabled);
45 this.user = user;
46 }
47
48
49 /* (non-Javadoc)
50 * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
51 */
52 @Override
53 public IStatus execute(IProgressMonitor monitor, IAdaptable info)
54 throws ExecutionException {
55 bind();
56 monitor.worked(20);
57 CdmStore.getService(IUserService.class).delete(user);
58 monitor.worked(40);
59
60 return postExecute(null);
61 }
62
63 /* (non-Javadoc)
64 * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
65 */
66 @Override
67 public IStatus redo(IProgressMonitor monitor, IAdaptable info)
68 throws ExecutionException {
69 // TODO Auto-generated method stub
70 return null;
71 }
72
73 /* (non-Javadoc)
74 * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
75 */
76 @Override
77 public IStatus undo(IProgressMonitor monitor, IAdaptable info)
78 throws ExecutionException {
79 // TODO Auto-generated method stub
80 return null;
81 }
82
83 }