blob: 04fa2b32543852d22844df9d9495c7ddea648c3e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.update;
/**
* @since 1.0
*/
public interface ConfigurationConstants {
final String ELEMENT_CONFIG = "config"; //$NON-NLS-1$
final String ELEMENT_FEATURE = "feature"; //$NON-NLS-1$
final String ELEMENT_SITE = "site"; //$NON-NLS-1$
final String ATTRIBUTE_APPLICATION = "application"; //$NON-NLS-1$
final String ATTRIBUTE_DATE = "date"; //$NON-NLS-1$
final String ATTRIBUTE_ENABLED = "enabled"; //$NON-NLS-1$
final String ATTRIBUTE_ID = "id"; //$NON-NLS-1$
final String ATTRIBUTE_LINKFILE = "linkfile"; //$NON-NLS-1$
final String ATTRIBUTE_LIST = "list"; //$NON-NLS-1$
final String ATTRIBUTE_PLUGIN_IDENTIFIER = "plugin-identifier"; //$NON-NLS-1$
final String ATTRIBUTE_PLUGIN_VERSION = "plugin-version"; //$NON-NLS-1$
final String ATTRIBUTE_PRIMARY = "primary"; //$NON-NLS-1$
final String ATTRIBUTE_POLICY = "policy"; //$NON-NLS-1$
final String ATTRIBUTE_ROOT = "root"; //$NON-NLS-1$
final String ATTRIBUTE_SHARED_UR = "shared_ur"; //$NON-NLS-1$
final String ATTRIBUTE_TRANSIENT = "transient"; //$NON-NLS-1$
final String ATTRIBUTE_UPDATEABLE = "updateable"; //$NON-NLS-1$
final String ATTRIBUTE_URL = "url"; //$NON-NLS-1$
final String ATTRIBUTE_VERSION = "version"; //$NON-NLS-1$
}