01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.ows;
06:
07: import org.geoserver.ows.KvpParser;
08:
09: public class MessageKvpParser extends KvpParser {
10: public MessageKvpParser() {
11: super ("message", Message.class);
12: }
13:
14: public Object parse(String value) throws Exception {
15: return new Message(value);
16: }
17: }
|