blob: 10c096a4a6ef2fa6e02dbdff3595d7b4b57c4478 [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_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_POLICY = "policy"; //$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$
}