Skip to main content
summaryrefslogtreecommitdiffstats
blob: fbe50e9d3549b7c804328c1bc6d6b9543dfe19a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2007, 2012 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Landmark Graphics Corporation - bug 397183
 *******************************************************************************/
package org.eclipse.equinox.p2.engine.spi;

import java.util.Map;
import org.eclipse.core.runtime.IStatus;

/**
 * @since 2.0
 */
public abstract class ProvisioningAction {

	private Memento memento = new Memento();
	private Touchpoint touchpoint;

	protected Memento getMemento() {
		return memento;
	}

	public abstract IStatus execute(Map<String, Object> parameters);

	public abstract IStatus undo(Map<String, Object> parameters);

	/**
	 * This method is meant for provisioning actions that need to communicate the result of their execution  
	 * to subsequent actions.
	 * This method is only invoked by p2 once execute() has been executed.  
	 * @return the result of the action execution. 
	 */
	public Value<?> getResult() {
		return Value.NO_VALUE;
	}

	// TODO: these probably should not be visible
	public void setTouchpoint(Touchpoint touchpoint) {
		this.touchpoint = touchpoint;
	}

	public Touchpoint getTouchpoint() {
		return touchpoint;
	}
}

Back to the top