blob: 7e2d9c84bea603ec960c8e9c90ba9ebc40cbc539 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 Oracle 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.core;
/**
* JSF Core framework constants
*
* <p><b>Provisional API - subject to change</b></p>
*
* @author cbateman
*
*/
public final class IJSFCoreConstants
{
/**
* The global id for the JSF facet
* TODO: align with extensioin point through plugin.properties
*/
public static final String JSF_CORE_FACET_ID = "jst.jsf"; //$NON-NLS-1$
/**
* The facet version for a JSF 1.0 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_0 = "1.0"; //$NON-NLS-1$
/**
* The constant id for a JSF 1.0 project
*/
public final static String JSF_VERSION_1_0 = FACET_VERSION_1_0;
/**
* The facet version for a JSF 1.1 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_1 = "1.1"; //$NON-NLS-1$
/**
* The constant id for a JSF 1.1 project
*/
public final static String JSF_VERSION_1_1 = FACET_VERSION_1_1;
/**
* The facet version for a JSF 1.2 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_2 = "1.2";//$NON-NLS-1$
/**
* The constant id for a JSF 1.2 project
*/
public final static String JSF_VERSION_1_2 = FACET_VERSION_1_2;
private IJSFCoreConstants()
{
// no instantiation
}
}