1 package org.apache.turbine.util;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 /***
20 * ValueParser is a base interface for classes that need to parse
21 * name/value Parameters, for example GET/POST data or Cookies
22 * (ParameterParser and CookieParser)
23 *
24 * <p>NOTE: The name= portion of a name=value pair may be converted
25 * to lowercase or uppercase when the object is initialized and when
26 * new data is added. This behaviour is determined by the url.case.folding
27 * property in TurbineResources.properties. Adding a name/value pair may
28 * overwrite existing name=value pairs if the names match:
29 *
30 * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
31 * @author <a href="mailto:jon@clearink.com">Jon S. Stevens</a>
32 * @author <a href="mailto:sean@informage.net">Sean Legassick</a>
33 * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
34 * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
35 * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
36 * @version $Id: ValueParser.java 264148 2005-08-29 14:21:04Z henning $
37 * @deprecated Use org.apache.turbine.util.parser.ValueParser instead.
38 */
39 public interface ValueParser
40 extends org.apache.turbine.util.parser.ValueParser
41 {
42 }