]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.server.jcr/src/org/argeo/jcr/ArgeoNames.java
Fix XA error codes
[lgpl/argeo-commons.git] / org.argeo.server.jcr / src / org / argeo / jcr / 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.jcr;
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 public final static String ARGEO_ENABLED = "argeo:enabled";
37 public final static String ARGEO_ACCOUNT_NON_EXPIRED = "argeo:accountNonExpired";
38 public final static String ARGEO_ACCOUNT_NON_LOCKED = "argeo:accountNonLocked";
39 public final static String ARGEO_CREDENTIALS_NON_EXPIRED = "argeo:credentialsNonExpired";
40
41 // personal details
42 public final static String ARGEO_FIRST_NAME = "argeo:firstName";
43 public final static String ARGEO_LAST_NAME = "argeo:lastName";
44 public final static String ARGEO_PRIMARY_EMAIL = "argeo:primaryEmail";
45 public final static String ARGEO_PRIMARY_ORGANIZATION = "argeo:primaryOrganization";
46
47 // tabular
48 public final static String ARGEO_IS_KEY = "argeo:isKey";
49
50 // crypto
51 public final static String ARGEO_IV = "argeo:iv";
52 public final static String ARGEO_SECRET_KEY_FACTORY = "argeo:secretKeyFactory";
53 public final static String ARGEO_SALT = "argeo:salt";
54 public final static String ARGEO_ITERATION_COUNT = "argeo:iterationCount";
55 public final static String ARGEO_KEY_LENGTH = "argeo:keyLength";
56 public final static String ARGEO_SECRET_KEY_ENCRYPTION = "argeo:secretKeyEncryption";
57 public final static String ARGEO_CIPHER = "argeo:cipher";
58 public final static String ARGEO_KEYRING = "argeo:keyring";
59 }