View Javadoc
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  
22  	public final static String ARGEO_URI = "argeo:uri";
23  	public final static String ARGEO_USER_ID = "argeo:userID";
24  
25  	public final static String ARGEO_REMOTE = "argeo:remote";
26  	public final static String ARGEO_PASSWORD = "argeo:password";
27  	// tabular
28  	public final static String ARGEO_IS_KEY = "argeo:isKey";
29  
30  	// crypto
31  	public final static String ARGEO_IV = "argeo:iv";
32  	public final static String ARGEO_SECRET_KEY_FACTORY = "argeo:secretKeyFactory";
33  	public final static String ARGEO_SALT = "argeo:salt";
34  	public final static String ARGEO_ITERATION_COUNT = "argeo:iterationCount";
35  	public final static String ARGEO_KEY_LENGTH = "argeo:keyLength";
36  	public final static String ARGEO_SECRET_KEY_ENCRYPTION = "argeo:secretKeyEncryption";
37  	public final static String ARGEO_CIPHER = "argeo:cipher";
38  	public final static String ARGEO_KEYRING = "argeo:keyring";
39  }