001/*
002 * (C) Copyright 2006-2008 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     bstefanescu
018 */
019package org.nuxeo.osgi.application;
020
021/**
022 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
023 */
024public interface LoaderConstants {
025
026    String HOST_NAME = "org.nuxeo.app.host.name";
027
028    String HOST_VERSION = "org.nuxeo.app.host.version";
029
030    String HOME_DIR = "org.nuxeo.app.home";
031
032    String LOG_DIR = "org.nuxeo.app.log";
033
034    String DATA_DIR = "org.nuxeo.app.data";
035
036    String TMP_DIR = "org.nuxeo.app.tmp";
037
038    String WEB_DIR = "org.nuxeo.app.web";
039
040    String CONFIG_DIR = "org.nuxeo.app.config";
041
042    String LIBS = "org.nuxeo.app.libs"; // class path
043
044    String BUNDLES = "org.nuxeo.app.bundles"; // class path
045
046    String DEVMODE = "org.nuxeo.app.devmode";
047
048    String PREPROCESSING = "org.nuxeo.app.preprocessing";
049
050    String SCAN_FOR_NESTED_JARS = "org.nuxeo.app.scanForNestedJars";
051
052    String INSTALL_RELOAD_TIMER = "org.nuxeo.app.installReloadTimer";
053
054    String FLUSH_CACHE = "org.nuxeo.app.flushCache";
055
056    String ARGS = "org.nuxeo.app.args";
057
058}