X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.init%2Fsrc%2Forg%2Fargeo%2Fapi%2Finit%2FInitConstants.java;fp=org.argeo.init%2Fsrc%2Forg%2Fargeo%2Fapi%2Finit%2FInitConstants.java;h=fae934638dfce241233dda078e356f38b1017be4;hb=2067f02c749114ea49d23a443ff4fa8cd3e6d30f;hp=864749f600cc38b4dea835ea1a4566ad6b8789d2;hpb=abdc99e0f4dbde9df4db1e15af08ed062c87a04a;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.init/src/org/argeo/api/init/InitConstants.java b/org.argeo.init/src/org/argeo/api/init/InitConstants.java index 864749f60..fae934638 100644 --- a/org.argeo.init/src/org/argeo/api/init/InitConstants.java +++ b/org.argeo.init/src/org/argeo/api/init/InitConstants.java @@ -2,6 +2,12 @@ package org.argeo.api.init; /** Supported init constants. */ public interface InitConstants { + /** Read-only configuration area */ + String PROP_ARGEO_CONFIG_AREA = "argeo.configArea"; + /** Read-write persistent data area */ + String PROP_ARGEO_STATE_AREA = "argeo.stateArea"; + /** Read-write cache area */ + String PROP_ARGEO_CACHE_AREA = "argeo.cacheArea"; String PROP_ARGEO_OSGI_SOURCES = "argeo.osgi.sources"; String PROP_ARGEO_OSGI_START = "argeo.osgi.start"; @@ -22,12 +28,9 @@ public interface InitConstants { * nested runtime. */ String PROP_ARGEO_OSGI_PARENT_UUID = "argeo.osgi.parent.uuid"; - /** - * The A2 categories to load from the parent. If not specified, nested runtimes - * won't be used. - */ - @Deprecated - String PROP_ARGEO_OSGI_PARENT_CATEGORIES = "argeo.osgi.parent.categories"; +// @Deprecated +// String PROP_ARGEO_OSGI_PARENT_CATEGORIES = "argeo.osgi.parent.categories"; + /** The A2 categories to export from the parent. */ String PROP_ARGEO_OSGI_EXPORT_CATEGORIES = "argeo.osgi.export.categories"; String PROP_ARGEO_OSGI_EXPORT_ENABLED = "argeo.osgi.export.enabled";