View Javadoc

1   /**
2    * Copyright 2010-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.common.util.property;
17  
18  import org.kuali.common.util.Mode;
19  import org.kuali.common.util.property.processor.NoOpProcessor;
20  import org.kuali.common.util.property.processor.PropertyProcessor;
21  import org.springframework.util.PropertyPlaceholderHelper;
22  
23  public final class Constants {
24  
25  	public static final String DEFAULT_PLACEHOLDER_PREFIX = "${";
26  	public static final String DEFAULT_PLACEHOLDER_SUFFIX = "}";
27  	public static final String DEFAULT_VALUE_SEPARATOR = ":";
28  	public static final String DEFAULT_ESCAPE_STRING = "\\";
29  	public static final boolean DEFAULT_IGNORE_UNRESOLVABLE_PLACEHOLDERS = true;
30  	public static final boolean DEFAULT_RESOLVE_PLACEHOLDERS = true;
31  	public static final String DEFAULT_ENCRYPTED_SUFFIX = ".encrypted";
32  	public static final String DEFAULT_PATH_SUFFIX = "path";
33  	public static final String DEFAULT_MAJOR_VERSION_SUFFIX = "major";
34  	public static final String DEFAULT_MINOR_VERSION_SUFFIX = "minor";
35  	public static final String DEFAULT_INCREMENTAL_VERSION_SUFFIX = "incremental";
36  	public static final String DEFAULT_QUALIFIER_VERSION_SUFFIX = "qualifier";
37  	public static final String DEFAULT_TRIMMED_VERSION_SUFFIX = "trimmed";
38  	public static final String DEFAULT_SNAPSHOT_VERSION_SUFFIX = "snapshot";
39  	public static final String DEFAULT_CODE_SUFFIX = "code";
40  	public static final String DEFAULT_HOME_SUFFIX = "home";
41  	public static final String DEFAULT_GROUP_ID_PROPERTY = "project.groupId";
42  	public static final String DEFAULT_ARTIFACT_ID_PROPERTY = "project.artifactId";
43  	public static final String DEFAULT_USER_HOME_PROPERTY = "user.home";
44  	public static final String DEFAULT_VERSION_PROPERTY = "project.version";
45  	public static final Mode DEFAULT_PROPERTY_OVERWRITE_MODE = Mode.INFORM;
46  	public static final GlobalPropertiesMode DEFAULT_GLOBAL_PROPERTIES_MODE = GlobalPropertiesMode.BOTH;
47  	public static final PropertyPlaceholderHelper DEFAULT_PROPERTY_PLACEHOLDER_HELPER = getDefaultHelper();
48  	public static final PropertyProcessor NO_OP_PROCESSOR = new NoOpProcessor();
49  	public static final String GROUP_ID = "groupId";
50  	public static final String GROUP = "group";
51  	public static final String NONE = "NONE";
52  	public static final String NULL = "NULL";
53  	public static final String WILDCARD = "*";
54  
55  	private static final PropertyPlaceholderHelper getDefaultHelper() {
56  		return new PropertyPlaceholderHelper(DEFAULT_PLACEHOLDER_PREFIX, DEFAULT_PLACEHOLDER_SUFFIX, DEFAULT_VALUE_SEPARATOR, DEFAULT_IGNORE_UNRESOLVABLE_PLACEHOLDERS);
57  	}
58  
59  }