01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork;
06:
07: /**
08: * This class provides a central location for framework constants related to
09: * webwork configurations.
10: *
11: * @author Onyeje Bose (digi9ten@yahoo.com)
12: * @author tmjee
13: * @version $Date: 2007-06-11 16:53:47 +0200 (Mon, 11 Jun 2007) $ $Id: WebWorkConstants.java 2920 2007-06-11 14:53:47Z tm_jee $
14: */
15: public final class WebWorkConstants {
16:
17: public static final String WEBWORK_DEVMODE = "webwork.devMode";
18:
19: public static final String WEBWORK_I18N_RELOAD = "webwork.i18n.reload";
20: public static final String WEBWORK_I18N_ENCODING = "webwork.i18n.encoding";
21:
22: public static final String WEBWORK_CONFIGURATION_XML_RELOAD = "webwork.configuration.xml.reload";
23:
24: public static final String WEBWORK_ACTION_EXTENSION = "webwork.action.extension";
25:
26: public static final String WEBWORK_TAG_ALTSYNTAX = "webwork.tag.altSyntax";
27:
28: public static final String WEBWORK_URL_HTTP_PORT = "webwork.url.http.port";
29: public static final String WEBWORK_URL_HTTPS_PORT = "webwork.url.https.port";
30: public static final String WEBWORK_URL_INCLUDEPARAMS = "webwork.url.includeParams";
31:
32: public static final String WEBWORK_OBJECTFACTORY = "webwork.objectFactory";
33: public static final String WEBWORK_OBJECTTYPEDETERMINER = "webwork.objectTypeDeterminer";
34:
35: public static final String WEBWORK_CONTINUATIONS_PACKAGE = "webwork.continuations.package";
36:
37: public static final String WEBWORK_CONFIGURATION = "webwork.configuration";
38:
39: public static final String WEBWORK_LOCALE = "webwork.locale";
40:
41: public static final String WEBWORK_DISPATCHER_PARAMETERSWORKAROUND = "webwork.dispatcher.parametersWorkaround";
42:
43: public static final String WEBWORK_FREEMARKER_MANAGER_CLASSNAME = "webwork.freemarker.manager.classname";
44:
45: public static final String WEBWORK_VELOCITY_MANAGER_CLASSNAME = "webwork.velocity.manager.classname";
46: public static final String WEBWORK_VELOCITY_CONFIGFILE = "webwork.velocity.configfile";
47: public static final String WEBWORK_VELOCITY_TOOLBOXLOCATION = "webwork.velocity.toolboxlocation";
48: public static final String WEBWORK_VELOCITY_CONTEXTS = "webwork.velocity.contexts";
49:
50: public static final String WEBWORK_UI_TEMPLATEDIR = "webwork.ui.templateDir";
51: public static final String WEBWORK_UI_THEME = "webwork.ui.theme";
52:
53: public static final String WEBWORK_MULTIPART_MAXSIZE = "webwork.multipart.maxSize";
54: public static final String WEBWORK_MULTIPART_SAVEDIR = "webwork.multipart.saveDir";
55: public static final String WEBWORK_MULTIPART_PARSER = "webwork.multipart.parser";
56:
57: public static final String WEBWORK_OBJECTFACTORY_SPRING_AUTOWIRE = "webwork.objectFactory.spring.autoWire";
58: public static final String WEBWORK_OBJECTFACTORY_SPRING_USE_CLASS_CACHE = "webwork.objectFactory.spring.useClassCache";
59:
60: public static final String WEBWORK_XSLT_NOCACHE = "webwork.xslt.nocache";
61:
62: public static final String WEBWORK_CUSTOM_PROPERTIES = "webwork.custom.properties";
63: public static final String WEBWORK_CUSTOM_I18N_RESOURCES = "webwork.custom.i18n.resources";
64: public static final String WEBWORK_MAPPER_CLASS = "webwork.mapper.class";
65:
66: public static final String WEBWORK_PORTLET_CONTEXT = "webwork.portlet.context";
67: public static final String WEBWORK_SERVE_STATIC_CONTENT = "webwork.serve.static";
68:
69: public static final String WEBWORK_FREEMARKER_SITEMESH_APPLY_DECORATOR_TRANSFORM = "webwork.freemarker.sitemesh.applyDecoratorTransform";
70:
71: public static final String WEBWORK_DISPATCHER_START_UP_LISTENER = "webwork.dispatcher.startUpListener";
72: public static final String WEBWORK_DISPATCHER_SHUTDOWN_LISTENER = "webwork.dispatcher.shutDownListener";
73: }
|