KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ashkelon > pages > NoopPage


1 package org.ashkelon.pages;
2
3 import java.sql.*;
4
5 /**
6  * jsp's with no or empty associated java class can refer to
7  * this one in the config.xml file
8  *
9  * @author Eitan Suez
10  */

11 public class NoopPage extends Page
12 {
13    public NoopPage() throws SQLException
14    {
15       super();
16    }
17    
18    public String JavaDoc handleRequest() throws SQLException
19    {
20        return null;
21    }
22 }
23
Popular Tags