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:[email protected]">Bogdan Stefanescu</a> 023 */ 024public interface LoaderConstants { 025 026 static final String HOST_NAME = "org.nuxeo.app.host.name"; 027 028 static final String HOST_VERSION = "org.nuxeo.app.host.version"; 029 030 static final String HOME_DIR = "org.nuxeo.app.home"; 031 032 static final String LOG_DIR = "org.nuxeo.app.log"; 033 034 static final String DATA_DIR = "org.nuxeo.app.data"; 035 036 static final String TMP_DIR = "org.nuxeo.app.tmp"; 037 038 static final String WEB_DIR = "org.nuxeo.app.web"; 039 040 static final String CONFIG_DIR = "org.nuxeo.app.config"; 041 042 static final String LIBS = "org.nuxeo.app.libs"; // class path 043 044 static final String BUNDLES = "org.nuxeo.app.bundles"; // class path 045 046 static final String DEVMODE = "org.nuxeo.app.devmode"; 047 048 static final String PREPROCESSING = "org.nuxeo.app.preprocessing"; 049 050 static final String SCAN_FOR_NESTED_JARS = "org.nuxeo.app.scanForNestedJars"; 051 052 static final String INSTALL_RELOAD_TIMER = "org.nuxeo.app.installReloadTimer"; 053 054 static final String FLUSH_CACHE = "org.nuxeo.app.flushCache"; 055 056 static final String ARGS = "org.nuxeo.app.args"; 057 058}