Adapt to changes in Argeo TP
[lgpl/argeo-commons.git] / org.argeo.node.api / src / org / argeo / node / NodeConstants.java
index 75b7826c999e032fdeef1f5ef00af84c0c81082c..cb87f30b4881e9660ad0d52b147426b1b03e0cfd 100644 (file)
@@ -39,6 +39,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 +79,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.";