Rename GCR to ACR.
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / cms / CmsConstants.java
diff --git a/org.argeo.api/src/org/argeo/api/cms/CmsConstants.java b/org.argeo.api/src/org/argeo/api/cms/CmsConstants.java
deleted file mode 100644 (file)
index 8fe9846..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-package org.argeo.api.cms;
-
-public interface CmsConstants {
-       /*
-        * DN ATTRIBUTES (RFC 4514)
-        */
-       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";
-
-       /*
-        * STANDARD ATTRIBUTES
-        */
-       String LABELED_URI = "labeledUri";
-
-       /*
-        * COMMON NAMES
-        */
-       String NODE = "node";
-
-       /*
-        * JCR CONVENTIONS
-        */
-       String NODE_REPOSITORY = NODE;
-       String EGO_REPOSITORY = "ego";
-       String SYS_WORKSPACE = "sys";
-       String HOME_WORKSPACE = "home";
-       String SRV_WORKSPACE = "srv";
-       String GUESTS_WORKSPACE = "guests";
-       String PUBLIC_WORKSPACE = "public";
-       String SECURITY_WORKSPACE = "security";
-
-       /*
-        * BASE DNs
-        */
-       String DEPLOY_BASEDN = "ou=deploy,ou=node";
-
-       /*
-        * STANDARD VALUES
-        */
-       String DEFAULT = "default";
-
-       /*
-        * 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;
-       // 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;
-       // Account lifecycle
-       String ROLE_REGISTERING = "cn=registering," + ROLES_BASEDN;
-
-       /*
-        * 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;
-
-       /*
-        * 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.";
-       /** Additional standalone repositories, related to data models. */
-       String NODE_REPOS_PROP_PREFIX = "argeo.node.repos.";
-       // 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
-        */
-       String NODE_STATE_PID = "org.argeo.api.state";
-       String NODE_DEPLOYMENT_PID = "org.argeo.api.deployment";
-       String NODE_INSTANCE_PID = "org.argeo.api.instance";
-
-       String NODE_KEYRING_PID = "org.argeo.api.keyring";
-       String NODE_FS_PROVIDER_PID = "org.argeo.api.fsProvider";
-
-       /*
-        * FACTORY PIDs
-        */
-       String NODE_REPOS_FACTORY_PID = "org.argeo.api.repos";
-       String NODE_USER_ADMIN_PID = "org.argeo.api.userAdmin";
-}