blob: 3ec16f4762aef4c5d49ce548c9abada3bbc45a4c [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.internal.tld;
/**
* Global tag library constants
*
* @author cbateman
*
*/
public interface ITLDConstants {
/**
* The JSF core (f) component URI
*/
public static final String URI_JSF_CORE = "http://java.sun.com/jsf/core"; //$NON-NLS-1$
/**
* The JSF html (h) component URI
*/
public static final String URI_JSF_HTML = "http://java.sun.com/jsf/html"; //$NON-NLS-1$
/**
* The last component of the html uri
*/
public static final String URI_HTML = "html"; //$NON-NLS-1$
/**
* The last component of the core uri
*/
public static final String URI_JSP = "jsp"; //$NON-NLS-1$
}