Remove node data model, home areas based on workspaces instead.
[lgpl/argeo-commons.git] / org.argeo.node.api / src / org / argeo / node / NodeConstants.java
index 75b7826c999e032fdeef1f5ef00af84c0c81082c..067d8c3174af7fc4d5c962f11e6a0d0824f782c1 100644 (file)
@@ -24,6 +24,9 @@ public interface NodeConstants {
         */
        String NODE = "node";
        String HOME = "home";
+       String GROUPS = "groups";
+       String GUESTS = "guests";
+       String PUBLIC = "public";
 
        /*
         * BASE DNs
@@ -39,6 +42,7 @@ public interface NodeConstants {
         * RESERVED ROLES
         */
        String ROLES_BASEDN = "ou=roles,ou=node";
+       String TOKENS_BASEDN = "ou=tokens,ou=node";
        String ROLE_ADMIN = "cn=admin," + ROLES_BASEDN;
        String ROLE_USER_ADMIN = "cn=userAdmin," + ROLES_BASEDN;
        String ROLE_DATA_ADMIN = "cn=dataAdmin," + ROLES_BASEDN;
@@ -78,15 +82,20 @@ public interface NodeConstants {
        String NODE_SERVICE = NODE;
 
        /*
-        * FIRST INIT FRAMEWORK PROPERTIES
+        * INIT FRAMEWORK PROPERTIES
         */
        String NODE_INIT = "argeo.node.init";
        String I18N_DEFAULT_LOCALE = "argeo.i18n.defaultLocale";
        String I18N_LOCALES = "argeo.i18n.locales";
        // Node Security
        String ROLES_URI = "argeo.node.roles.uri";
+       String TOKENS_URI = "argeo.node.tokens.uri";
        /** URI to an LDIF file or LDAP server used as initialization or backend */
        String USERADMIN_URIS = "argeo.node.useradmin.uris";
+       // Transaction manager
+       String TRANSACTION_MANAGER = "argeo.node.transaction.manager";
+       String TRANSACTION_MANAGER_SIMPLE = "simple";
+       String TRANSACTION_MANAGER_BITRONIX = "bitronix";
        // Node
        /** Properties configuring the node repository */
        String NODE_REPO_PROP_PREFIX = "argeo.node.repo.";
@@ -95,6 +104,11 @@ public interface NodeConstants {
        // HTTP
        String HTTP_PORT = "org.osgi.service.http.port";
        String HTTP_PORT_SECURE = "org.osgi.service.http.port.secure";
+       /**
+        * The HTTP header used to convey the DN of a client verified by a reverse
+        * proxy. Typically SSL_CLIENT_S_DN for Apache.
+        */
+       String HTTP_PROXY_SSL_DN = "argeo.http.proxy.ssl.dn";
 
        /*
         * PIDs