Deactivate IPA when unnecessary.
[lgpl/argeo-commons.git] / org.argeo.node.api / src / org / argeo / node / NodeConstants.java
index 9f472ef0a9964f63dafdcd41031a8f5b655c5a62..72083e8e72354c39f945065b5a8e865836237d7c 100644 (file)
@@ -1,7 +1,5 @@
 package org.argeo.node;
 
-import javax.jcr.Repository;
-
 public interface NodeConstants {
        /*
         * PIDs
@@ -10,62 +8,101 @@ public interface NodeConstants {
        String NODE_DEPLOYMENT_PID = "org.argeo.node.deployment";
        String NODE_INSTANCE_PID = "org.argeo.node.instance";
 
-       String NODE_USER_ADMIN_PID = "org.argeo.node.userAdmin";
        String NODE_KEYRING_PID = "org.argeo.node.keyring";
+       String NODE_FS_PROVIDER_PID = "org.argeo.node.fsProvider";
 
        /*
         * FACTORY PIDs
         */
        String NODE_REPOS_FACTORY_PID = "org.argeo.node.repos";
-       String NODE_USER_DIRECTORIES_FACTORY_PID = "org.argeo.node.userDirectories";
+       String NODE_USER_ADMIN_PID = "org.argeo.node.userAdmin";
 
        /*
-        * DEPLOY
+        * DN ATTRIBUTES (RFC 4514)
         */
-       String DEPLOY_BASEDN = "ou=deploy,ou=node";
+       String CN = "cn";
+       String L = "l";
+       String ST = "st";
+       String O = "o";
+       String OU = "ou";
+       String C = "c";
+       String STREET = "street";
+       String DC = "dc";
+       String UID = "uid";
 
        /*
-        * FRAMEWORK PROPERTIES
+        * STANDARD ATTRIBUTES
         */
-       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";
-       /** URI to an LDIF file or LDAP server used as initialization or backend */
-       String USERADMIN_URIS = "argeo.node.useradmin.uris";
-       // Node
-       /** Properties configuring the node repository */
-       String NODE_REPO_PROP_PREFIX = "argeo.node.repo.";
+       String LABELED_URI = "labeledUri";
 
        /*
-        * STANDARD ATTRIBUTES
+        * COMMON NAMES
         */
-       String CN = "cn";
-       String OU = "ou";
-       String LABELED_URI = "labeledUri";
+       String NODE = "node";
+       String HOME = "home";
+
+       /*
+        * BASE DNs
+        */
+       String DEPLOY_BASEDN = "ou=deploy,ou=node";
 
        /*
         * STANDARD VALUES
         */
        String DEFAULT = "default";
+
        /*
-        * LEGACY
+        * RESERVED ROLES
         */
-       String ARGEO_BASE_PATH = "/argeo:system";
-       String PEOPLE_BASE_PATH = NodeConstants.ARGEO_BASE_PATH + "/argeo:people";
-       String DATA_MODELS_BASE_PATH = NodeConstants.ARGEO_BASE_PATH
-                       + "/argeo:dataModels";
-       String ALIAS_HOME = "home";
-       // standard aliases
-       /**
-        * Reserved alias for the "node" {@link Repository}, that is, the default
-        * JCR repository.
+       String ROLES_BASEDN = "ou=roles,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;
+       // Special system groups that cannot be edited:
+       // user U anonymous = everyone
+       String ROLE_USER = "cn=user," + ROLES_BASEDN;
+       String ROLE_ANONYMOUS = "cn=anonymous," + ROLES_BASEDN;
+
+       /*
+        * LOGIN CONTEXTS
         */
-       String ALIAS_NODE = "node";
-       /** Key for a JCR repository URI */
-       String JCR_REPOSITORY_URI = "argeo.jcr.repository.uri";
-       // parameters (typically for call to a RepositoryFactory)
-       /** Key for a JCR repository alias */
-       String JCR_REPOSITORY_ALIAS = "argeo.jcr.repository.alias";
+       String LOGIN_CONTEXT_NODE = "NODE";
+       String LOGIN_CONTEXT_USER = "USER";
+       String LOGIN_CONTEXT_DATA_ADMIN = "DATA_ADMIN";
+       String LOGIN_CONTEXT_SINGLE_USER = "SINGLE_USER";
+
+       /*
+        * PATHS
+        */
+       String PATH_DATA = "/data";
+       String PATH_JCR = "/jcr";
+       String PATH_FILES = "/files";
+       // String PATH_JCR_PUB = "/pub";
+
+       /*
+        * FILE SYSTEMS
+        */
+       String SCHEME_NODE = NODE;
+
+       /*
+        * KERBEROS
+        */
+       String NODE_SERVICE = NODE;
+
+       /*
+        * FIRST 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";
+       /** URI to an LDIF file or LDAP server used as initialization or backend */
+       String USERADMIN_URIS = "argeo.node.useradmin.uris";
+       // Node
+       /** Properties configuring the node repository */
+       String NODE_REPO_PROP_PREFIX = "argeo.node.repo.";
+       // HTTP
+       String HTTP_PORT = "org.osgi.service.http.port";
+       String HTTP_PORT_SECURE = "org.osgi.service.http.port.secure";
 }