]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/ArgeoNames.java
Make RAP Apps more extensible by entroducing multiple entry points.
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / ArgeoNames.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.cms;
17
18 /** JCR names in the http://www.argeo.org/argeo namespace */
19 public interface ArgeoNames {
20 public final static String ARGEO_NAMESPACE = "http://www.argeo.org/ns/argeo";
21 // public final static String ARGEO = "argeo";
22
23 public final static String ARGEO_URI = "argeo:uri";
24 public final static String ARGEO_USER_ID = "argeo:userID";
25 // public final static String ARGEO_PREFERENCES = "argeo:preferences";
26 // public final static String ARGEO_DATA_MODEL_VERSION = "argeo:dataModelVersion";
27
28 public final static String ARGEO_REMOTE = "argeo:remote";
29 public final static String ARGEO_PASSWORD = "argeo:password";
30 // public final static String ARGEO_REMOTE_ROLES = "argeo:remoteRoles";
31
32 // user profile
33 // public final static String ARGEO_PROFILE = "argeo:profile";
34
35 // spring security
36 // @Deprecated
37 // public final static String ARGEO_ENABLED = "argeo:enabled";
38 //
39 // // personal details
40 // /** @deprecated Use org.argeo.naming.LdapAttrs */
41 // @Deprecated
42 // public final static String ARGEO_FIRST_NAME = "argeo:firstName";
43 // /** @deprecated Use org.argeo.naming.LdapAttrs */
44 // @Deprecated
45 // public final static String ARGEO_LAST_NAME = "argeo:lastName";
46 // /** @deprecated Use org.argeo.naming.LdapAttrs */
47 // @Deprecated
48 // public final static String ARGEO_PRIMARY_EMAIL = "argeo:primaryEmail";
49 // /** @deprecated Use org.argeo.naming.LdapAttrs */
50 // @Deprecated
51 // public final static String ARGEO_PRIMARY_ORGANIZATION = "argeo:primaryOrganization";
52
53 // tabular
54 public final static String ARGEO_IS_KEY = "argeo:isKey";
55
56 // crypto
57 public final static String ARGEO_IV = "argeo:iv";
58 public final static String ARGEO_SECRET_KEY_FACTORY = "argeo:secretKeyFactory";
59 public final static String ARGEO_SALT = "argeo:salt";
60 public final static String ARGEO_ITERATION_COUNT = "argeo:iterationCount";
61 public final static String ARGEO_KEY_LENGTH = "argeo:keyLength";
62 public final static String ARGEO_SECRET_KEY_ENCRYPTION = "argeo:secretKeyEncryption";
63 public final static String ARGEO_CIPHER = "argeo:cipher";
64 public final static String ARGEO_KEYRING = "argeo:keyring";
65 }