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.vfny.geoserver.sld.responses;
06:
07: import org.vfny.geoserver.Request;
08: import org.vfny.geoserver.Response;
09: import org.vfny.geoserver.ServiceException;
10: import org.vfny.geoserver.global.GeoServer;
11: import org.vfny.geoserver.global.Service;
12: import java.io.IOException;
13: import java.io.OutputStream;
14: import java.util.HashMap;
15:
16: public class PutStylesResponse implements Response {
17: public void execute(Request request) throws ServiceException {
18: // TODO Auto-generated method stub
19: }
20:
21: public String getContentType(GeoServer gs)
22: throws IllegalStateException {
23: // TODO Auto-generated method stub
24: return null;
25: }
26:
27: public String getContentEncoding() {
28: // TODO Auto-generated method stub
29: return null;
30: }
31:
32: public void writeTo(OutputStream out) throws ServiceException,
33: IOException {
34: // TODO Auto-generated method stub
35: }
36:
37: public void abort(Service gs) {
38: // TODO Auto-generated method stub
39: }
40:
41: public HashMap getResponseHeaders() {
42: // TODO Auto-generated method stub
43: return null;
44: }
45:
46: public String getContentDisposition() {
47: // TODO Auto-generated method stub
48: return null;
49: }
50: }
|