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 java.io.IOException;
08: import java.io.OutputStream;
09:
10: public class HelloWorldWithOutput extends HelloWorld {
11: public void hello(Message message, OutputStream output)
12: throws IOException {
13: output.write(message.message.getBytes());
14: }
15: }
|