Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0818a1ec39f76874af7bc2e003b9bd5b909ce377 (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
/*******************************************************************************
 *  Copyright (c) 2008, 2010 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
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.touchpoint.natives.actions;

public class ActionConstants {

	public static final String PARM_AGENT = "agent"; //$NON-NLS-1$
	public static final String PARM_PATH = "path"; //$NON-NLS-1$
	public static final String PARM_TARGET_FILE = "targetFile"; //$NON-NLS-1$
	public static final String PARM_PERMISSIONS = "permissions"; //$NON-NLS-1$
	public static final String PARM_TARGET_DIR = "targetDir"; //$NON-NLS-1$
	public static final String PARM_TARGET = "target"; //$NON-NLS-1$
	public static final String PARM_SOURCE = "source"; //$NON-NLS-1$
	public static final String PARM_IU = "iu"; //$NON-NLS-1$
	public static final String PIPE = "|"; //$NON-NLS-1$
	public static final String PARM_AT_ARTIFACT = "@artifact"; //$NON-NLS-1$
	public static final String PARM_ARTIFACT_REQUESTS = "artifactRequests"; //$NON-NLS-1$
	public static final String PARM_PROFILE = "profile"; //$NON-NLS-1$
	public static final String PARM_LINK_NAME = "linkName"; //$NON-NLS-1$
	public static final String PARM_LINK_TARGET = "linkTarget"; //$NON-NLS-1$
	public static final String PARM_LINK_FORCE = "force"; //$NON-NLS-1$
	public static final String PARM_COPY_TARGET = "target"; //$NON-NLS-1$
	public static final String PARM_COPY_SOURCE = "source"; //$NON-NLS-1$
	public static final String PARM_COPY_OVERWRITE = "overwrite"; //$NON-NLS-1$
	public static final String PARM_OPTIONS = "options"; //$NON-NLS-1$
}

Back to the top