01: package org.wings.portlet;
02:
03: /**
04: *
05: * Constants for the WingS-Portlet-Bridge
06: *
07: * @author <a href="mailto:marc.musch@mercatis.com">Marc Musch</a>
08: */
09: public class Const {
10:
11: private Const() {
12:
13: }
14:
15: /*
16: * Session Attributes
17: */
18: public static final String SESSION_ATTR_PARAMETERS = "org.wings.portlet.parameters";
19:
20: /*
21: * Request Attributes
22: */
23:
24: public static final String REQUEST_ATTR_PARAMETERS_FROM_ACTION_MAP = "org.wings.portlet.parameterMap";
25:
26: public static final String REQUEST_ATTR_RENDER_REQUEST = "org.wings.portlet.renderRequest";
27:
28: public static final String REQUEST_ATTR_RENDER_RESPONSE = "org.wings.portlet.renderResponse";
29:
30: public static final String REQUEST_ATTR_WINGS_SERVLET_URL = "org.wings.portlet.wingSServletURL";
31:
32: public static final String REQUEST_ATTR_WINGS_CLASS = "org.wings.portlet.actualWingSClass";
33:
34: /*
35: * Request Parameters
36: */
37:
38: public static final String REQUEST_PARAM_RESOURCE_AS_PARAM = "org.wings.portlet.resourceAsParam";
39:
40: /*
41: * Wings Session Properties
42: */
43:
44: public static final String WINGS_SESSION_PROPERTY_RENDER_RESPONSE = "org.wings.portlet.render.response";
45:
46: public static final String WINGS_SESSION_PROPERTY_PORTLET_PARAMETER_MAP = "org.wings.portlet.parameter.map";
47:
48: public static final String WINGS_SESSION_PROPERTY_RENDER_REQUEST = "org.wings.portlet.render.request";
49:
50: public static final String WINGS_SESSION_PROPERTY_WINDOW_STATE_PROVIDER = "org.wings.portlet.window.state.provider";
51:
52: public static final String WINGS_SESSION_PROPERTY_PORTLET_PARAMETER_PROVIDER = "org.wings.portlet.parameter.provider";
53:
54: /*
55: * Code/Decode String for Parameters set with the PortletURL
56: */
57:
58: public static final String WINGS_PORTLET_URL_CODE_STRING = "portparam.";
59: }
|