001/*
002 * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Bogdan Stefanescu
011 *     Florent Guillaume
012 */
013
014package org.nuxeo.ecm.core.schema;
015
016/**
017 * The available registries of type-like information.
018 */
019public final class SchemaNames {
020
021    /** A builtin data type. */
022    public static final String BUILTIN = "@builtin";
023
024    /** A registered schema. */
025    public static final String SCHEMAS = "@schemas";
026
027    /** A registered document type. */
028    public static final String DOCTYPES = "@doctypes";
029
030    /** A registered facet. */
031    public static final String FACETS = "@facets";
032
033    // Constant utility class.
034    private SchemaNames() {
035    }
036
037}