01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: ReservedParameters.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine;
09:
10: import java.util.ArrayList;
11: import java.util.Arrays;
12: import java.util.List;
13:
14: public abstract class ReservedParameters {
15: public final static String SUBMISSION = "submission";
16: public final static String SUBMISSIONCONTEXT = "submissioncontext";
17: public final static String INPUTS = "inputs";
18: public final static String CTXT = "ctxt";
19: public final static String CHILDREQUEST = "childrequest";
20: public final static String TRIGGERLIST = "triggerlist";
21: public final static String CONTID = "contid";
22: public final static String STATEID = "stateid";
23: public final static String JSESSIONID = "jsessionid";
24:
25: static final String[] RESERVED_NAMES = new String[] {
26: ReservedParameters.SUBMISSION,
27: ReservedParameters.SUBMISSIONCONTEXT,
28: ReservedParameters.INPUTS, ReservedParameters.CTXT,
29: ReservedParameters.CHILDREQUEST,
30: ReservedParameters.TRIGGERLIST, ReservedParameters.CONTID,
31: ReservedParameters.STATEID, ReservedParameters.JSESSIONID };
32: static final List<String> RESERVED_NAMES_LIST = new ArrayList<String>(
33: Arrays.asList(RESERVED_NAMES));
34:
35: }
|