Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a67ec9f965130af2b9cfaf7b4a0cce6fa7002223 (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
/*******************************************************************************
 * Copyright (c) 2007 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.simpleconfigurator.utils;

public class SimpleConfiguratorConstants {
	public static final String PARAMETER_BASEURL = "eclipse.simpleConfigurator.baseUrl";
	public static final String PROP_KEY_EXCLUSIVE_INSTALLATION = "org.eclipse.equinox.simpleconfigurator.exclusiveInstallation";

	public static final String LAST_CONFIG_STAMP = "last.config.stamps"; //$NON-NLS-1$
	public static final String CONFIG_LIST = "bundles.txt"; //$NON-NLS-1$
	public static final String CONFIGURATOR_FOLDER = "simpleConfiguration"; //$NON-NLS-1$
	public static final String CONFIG_INI = "config.ini"; //$NON-NLS-1$
	public static final String PROP_KEY_CONFIGURL = "org.eclipse.equinox.simpleconfigurator.configUrl";
	
}

Back to the top