blob: cc6c1bdce9200897760fd2e1b578001db22b0289 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache 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.apache.org/licenses/LICENSE-2.0
*
* 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 com.opensymphony.xwork2;
/**
* Constants used across framework
*/
@Deprecated
public final class XWorkConstants {
@Deprecated
public static final String COLLECTION_CONVERTER = "collectionConverter";
@Deprecated
public static final String DATE_CONVERTER = "dateConverter";
@Deprecated
public static final String NUMBER_CONVERTER = "numberConverter";
@Deprecated
public static final String STRING_CONVERTER = "stringConverter";
@Deprecated
public static final String ARRAY_CONVERTER = "arrayConverter";
@Deprecated
public static final String DEV_MODE = "devMode";
@Deprecated
public static final String LOG_MISSING_PROPERTIES = "logMissingProperties";
@Deprecated
public static final String ENABLE_OGNL_EXPRESSION_CACHE = "enableOGNLExpressionCache";
@Deprecated
public static final String ENABLE_OGNL_EVAL_EXPRESSION = "enableOGNLEvalExpression";
@Deprecated
public static final String RELOAD_XML_CONFIGURATION = "reloadXmlConfiguration";
@Deprecated
public static final String ALLOW_STATIC_METHOD_ACCESS = "allowStaticMethodAccess";
@Deprecated
public static final String XWORK_LOGGER_FACTORY = "xwork.loggerFactory";
@Deprecated
public static final String OGNL_EXCLUDED_CLASSES = "ognlExcludedClasses";
@Deprecated
public static final String OGNL_EXCLUDED_PACKAGE_NAME_PATTERNS = "ognlExcludedPackageNamePatterns";
@Deprecated
public static final String OGNL_EXCLUDED_PACKAGE_NAMES = "ognlExcludedPackageNames";
@Deprecated
public static final String ADDITIONAL_EXCLUDED_PATTERNS = "additionalExcludedPatterns";
@Deprecated
public static final String ADDITIONAL_ACCEPTED_PATTERNS = "additionalAcceptedPatterns";
@Deprecated
public static final String OVERRIDE_EXCLUDED_PATTERNS = "overrideExcludedPatterns";
@Deprecated
public static final String OVERRIDE_ACCEPTED_PATTERNS = "overrideAcceptedPatterns";
}