Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 52b32c93ad02bc750d2c67b3f2c740f9c0fa8684 (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
/*******************************************************************************
 * Copyright (c) 2015 Red Hat.
 * 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:
 *     Red Hat - Initial Contribution
 *******************************************************************************/

package org.eclipse.linuxtools.internal.docker.ui.launch;

import org.eclipse.debug.core.ILaunchConfiguration;

/**
 * Constants used to pass values in the {@link ILaunchConfiguration} to build
 * Docker Images.
 * 
 */
public interface IBuildDockerImageLaunchConfigurationConstants {

	/**
	 * the launch id
	 */
	public final static String CONFIG_TYPE_ID = "org.eclipse.linuxtools.docker.ui.buildDockerImageLaunchConfigurationType"; //$NON-NLS-1$

	/** the source path to build the Docker Image. */
	public final static String SOURCE_PATH_LOCATION = "sourcePathLocation"; //$NON-NLS-1$

	/**
	 * marker to indicate if the location above is a workspace-relative
	 * location.
	 */
	public final static String SOURCE_PATH_WORKSPACE_RELATIVE_LOCATION = "sourcePathWorkspaceRelativeLocation"; //$NON-NLS-1$

	/** name of the connection to use to build the Image. */
	public final static String DOCKER_CONNECTION = "dockerConnection"; //$NON-NLS-1$

}

Back to the top