]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.init/src/org/argeo/api/init/InitConstants.java
Improve init launch
[lgpl/argeo-commons.git] / org.argeo.init / src / org / argeo / api / init / InitConstants.java
1 package org.argeo.api.init;
2
3 /** Supported init constants. */
4 public interface InitConstants {
5
6 String PROP_ARGEO_OSGI_SOURCES = "argeo.osgi.sources";
7 String PROP_ARGEO_OSGI_START = "argeo.osgi.start";
8 String PROP_OSGI_INSTANCE_AREA = "osgi.instance.area";
9 String PROP_OSGI_CONFIGURATION_AREA = "osgi.configuration.area";
10 String PROP_OSGI_SHARED_CONFIGURATION_AREA = "osgi.sharedConfiguration.area";
11 String PROP_ARGEO_OSGI_MAX_START_LEVEL = "argeo.osgi.maxStartLevel";
12 /** UUID of the parent framework. Marks a nested runtime. */
13 String PROP_ARGEO_OSGI_PARENT_UUID = "argeo.osgi.parent.uuid";
14
15 // OSGi standard properties
16 String PROP_OSGI_BUNDLES_DEFAULTSTARTLEVEL = "osgi.bundles.defaultStartLevel";
17 String PROP_OSGI_STARTLEVEL = "osgi.startLevel";
18 String PROP_OSGI_USE_SYSTEM_PROPERTIES = "osgi.framework.useSystemProperties";
19
20 // Symbolic names
21 String SYMBOLIC_NAME_INIT = "org.argeo.init";
22 String SYMBOLIC_NAME_EQUINOX = "org.eclipse.osgi";
23
24 }