01: /*
02: * Copyright 2005 Joe Walker
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.directwebremoting.servlet;
17:
18: import java.io.IOException;
19: import java.io.PrintWriter;
20:
21: import javax.servlet.http.HttpServletRequest;
22: import javax.servlet.http.HttpServletResponse;
23:
24: import org.directwebremoting.extend.Handler;
25: import org.directwebremoting.util.MimeConstants;
26:
27: /**
28: * A handler for requests to create a debug index page
29: * @author Joe Walker [joe at getahead dot ltd dot uk]
30: */
31: public class AboutHandler implements Handler {
32: /* (non-Javadoc)
33: * @see org.directwebremoting.Handler#handle(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
34: */
35: public void handle(HttpServletRequest request,
36: HttpServletResponse response) throws IOException {
37: response.setContentType(MimeConstants.MIME_HTML);
38: PrintWriter out = response.getWriter();
39: out
40: .print("<html><head><title>DWR - Easy Ajax for Java</title></head><body>");
41: out
42: .print("<p><a href='http://getahead.org/dwr/'>DWR - Easy Ajax for Java</a></p>");
43: out.print("</body></html>");
44: }
45: }
|