org.kuali.common.util.property.Constants Maven / Gradle / Ivy
/**
* Copyright 2010-2012 The Kuali Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ecl2.php
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kuali.common.util.property;
import org.kuali.common.util.Mode;
import org.kuali.common.util.property.processor.NoOpProcessor;
import org.kuali.common.util.property.processor.PropertyProcessor;
import org.springframework.util.PropertyPlaceholderHelper;
public final class Constants {
public static final String DEFAULT_PLACEHOLDER_PREFIX = "${";
public static final String DEFAULT_PLACEHOLDER_SUFFIX = "}";
public static final String DEFAULT_VALUE_SEPARATOR = ":";
public static final String DEFAULT_ESCAPE_STRING = "\\";
public static final boolean DEFAULT_IGNORE_UNRESOLVABLE_PLACEHOLDERS = true;
public static final boolean DEFAULT_RESOLVE_PLACEHOLDERS = true;
public static final String DEFAULT_ENCRYPTED_SUFFIX = ".encrypted";
public static final String DEFAULT_PATH_SUFFIX = "path";
public static final String DEFAULT_MAJOR_VERSION_SUFFIX = "major";
public static final String DEFAULT_MINOR_VERSION_SUFFIX = "minor";
public static final String DEFAULT_INCREMENTAL_VERSION_SUFFIX = "incremental";
public static final String DEFAULT_QUALIFIER_VERSION_SUFFIX = "qualifier";
public static final String DEFAULT_TRIMMED_VERSION_SUFFIX = "trimmed";
public static final String DEFAULT_SNAPSHOT_VERSION_SUFFIX = "snapshot";
public static final String DEFAULT_CODE_SUFFIX = "code";
public static final String DEFAULT_HOME_SUFFIX = "home";
public static final String DEFAULT_GROUP_ID_PROPERTY = "project.groupId";
public static final String DEFAULT_ARTIFACT_ID_PROPERTY = "project.artifactId";
public static final String DEFAULT_USER_HOME_PROPERTY = "user.home";
public static final String DEFAULT_VERSION_PROPERTY = "project.version";
public static final Mode DEFAULT_PROPERTY_OVERWRITE_MODE = Mode.INFORM;
public static final GlobalPropertiesMode DEFAULT_GLOBAL_PROPERTIES_MODE = GlobalPropertiesMode.BOTH;
public static final PropertyPlaceholderHelper DEFAULT_PROPERTY_PLACEHOLDER_HELPER = getDefaultHelper();
public static final PropertyProcessor NO_OP_PROCESSOR = new NoOpProcessor();
public static final String GROUP = "group";
public static final String NONE = "NONE";
public static final String NULL = "NULL";
private static final PropertyPlaceholderHelper getDefaultHelper() {
return new PropertyPlaceholderHelper(DEFAULT_PLACEHOLDER_PREFIX, DEFAULT_PLACEHOLDER_SUFFIX, DEFAULT_VALUE_SEPARATOR, DEFAULT_IGNORE_UNRESOLVABLE_PLACEHOLDERS);
}
}