/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) 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: * Nuxeo - initial API and implementation * * $Id$ */ package org.eclipse.ecr.core.schema; /** * Defines base facet names used in the core. * * @author <a href="mailto:dm@nuxeo.com">Dragos Mihalache</a> */ public final class FacetNames { public static final String IMMUTABLE = "Immutable"; public static final String FOLDERISH = "Folderish"; public static final String VERSIONABLE = "Versionable"; public static final String ORDERABLE = "Orderable"; public static final String DOWNLOADABLE = "Downloadable"; public static final String PUBLISHABLE = "Publishable"; public static final String COMMENTABLE = "Commentable"; public static final String HIDDEN_IN_NAVIGATION = "HiddenInNavigation"; public static final String BROWSE_VIA_SEARCH = "BrowseViaSearch"; public static final String HAS_RELATED_TEXT = "HasRelatedText"; private FacetNames() { } }