/* * 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: * bstefanescu */ package org.eclipse.ecr.application; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public interface Constants { public static final String ECR_APP_ID = "ecr.app.id"; public static final String ECR_APP_CONFIG = "ecr.app.config"; public static final String ECR_DATABASE = "ecr.database"; public static final String ECR_CONFIG_URI = "ecr.config.uri"; public static final String ECR_CONFIG_PROVIDER = "ecr.config.provider"; public static final String ECR_HOME_DIR = "ecr.home.dir"; public static final String ECR_DATA_DIR = "ecr.data.dir"; public static final String ECR_LOG_DIR = "ecr.log.dir"; public static final String ECR_APPLICATION_LISTENER = "ECR-ApplicationListener"; }