1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.portals.bridges.php;
19
20 import org.apache.portals.bridges.common.ScriptRuntimeData;
21
22 /***
23 * PHPParameters
24 * Class holding information about the PHP scripts to execute.This class is typically attached to a PortletAction (as an attribute).
25 *
26 * @author <a href="mailto:rogerrut@apache.org">Roger Ruttimann</a>
27 * @version $Id: PHPParameters.java 517068 2007-03-12 01:44:37Z ate $
28 */
29 public class PHPParameters extends ScriptRuntimeData {
30
31 /***
32 * Action Parameter for PHP requests
33 */
34 public static final String ACTION_PARAMETER_PHP = "_PHP";
35
36 /***
37 * Session variable for PHP Parameters
38 */
39 public static final String PHP_PARAMETER = "PHPParameter";
40
41 /***
42 *
43 */
44 public PHPParameters() {
45 super();
46
47 setSessionParameterName(PHP_PARAMETER);
48 }
49
50 }