KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > turbine > util > ValueParser


1 package org.apache.turbine.util;
2
3 /*
4  * Copyright 2001-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License")
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
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,v 1.13.2.2 2004/05/20 03:16:38 seade Exp $
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 }
43
Popular Tags