]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.init/src/org/argeo/api/init/InitConstants.java
Fix IPA initialisation
[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
9 String PROP_OSGI_USE_SYSTEM_PROPERTIES = "osgi.framework.useSystemProperties";
10
11 String PROP_OSGI_INSTANCE_AREA = "osgi.instance.area";
12 String PROP_OSGI_CONFIGURATION_AREA = "osgi.configuration.area";
13 String PROP_OSGI_SHARED_CONFIGURATION_AREA = "osgi.sharedConfiguration.area";
14 String PROP_OSGI_SHARED_CONFIGURATION_AREA_RO = "osgi.sharedConfiguration.area.readOnly";
15 String PROP_ARGEO_OSGI_MAX_START_LEVEL = "argeo.osgi.maxStartLevel";
16 String PROP_OSGI_BUNDLES_DEFAULTSTARTLEVEL = "osgi.bundles.defaultStartLevel";
17 String PROP_OSGI_STARTLEVEL = "osgi.startLevel";
18
19 // System properties
20 /** Read-only configuration area */
21 String PROP_ARGEO_CONFIG_AREA = "argeo.configArea";
22 /** Read-write persistent data area */
23 String PROP_ARGEO_STATE_AREA = "argeo.stateArea";
24 /** Read-write cache area */
25 String PROP_ARGEO_CACHE_AREA = "argeo.cacheArea";
26
27 // FOREIGN RUNTIME PROPERTIES
28 /**
29 * UUID of the parent framework. It is set by the parent runtime and marks a
30 * nested runtime.
31 */
32 String PROP_ARGEO_OSGI_PARENT_UUID = "argeo.osgi.parent.uuid";
33 // @Deprecated
34 // String PROP_ARGEO_OSGI_PARENT_CATEGORIES = "argeo.osgi.parent.categories";
35 /** The A2 categories to export from the parent. */
36 String PROP_ARGEO_OSGI_EXPORT_CATEGORIES = "argeo.osgi.export.categories";
37 String PROP_ARGEO_OSGI_EXPORT_ENABLED = "argeo.osgi.export.enabled";
38
39 // BUndle symbolic names
40 String SYMBOLIC_NAME_INIT = "org.argeo.init";
41 String SYMBOLIC_NAME_EQUINOX = "org.eclipse.osgi";
42
43 }