/* * 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: LifeCycleConstants.java 19491 2007-05-27 13:51:18Z sfermigier $ */ package org.eclipse.ecr.core.lifecycle; /** * Life cycle constants. * * @author <a href="mailto:ja@nuxeo.com">Julien Anguenot</a> */ public final class LifeCycleConstants { public static final String LIFECYCLE_SCHEMA_URI = "http://www.nuxeo.org/ecm/schemas/lifecycle"; public static final String LIFECYCLE_SCHEMA_PREFIX = "lc"; public static final String LIFECYCLE_SCHEMA_NAME = "lifecycle"; // JCR2 names. public static final String LIFECYCLE_POLICY_PROP = "lifecyclePolicy"; public static final String LIFECYCLE_STATE_PROP = "currentLifecycleState"; public static final String INITIAL_LIFECYCLE_STATE_OPTION_NAME = "initialLifecycleState"; // Constant utility class private LifeCycleConstants() { } }