View Javadoc
1   /**
2    * 
3    */
4   package org.melati.servlet.test;
5   
6   
7   import org.melati.Melati;
8   import org.melati.PoemContext;
9   import org.melati.servlet.PathInfoException;
10  import org.melati.test.HttpAuthenticationPoemServletTest;
11  
12  /**
13   * Test setting of database by method. 
14   * 
15   * @author timp
16   * @since 04/12/2006
17   */
18  public class LDBPoemServlet extends HttpAuthenticationPoemServletTest {
19  
20    /**
21     * Shut Eclipse up.
22     */
23    private static final long serialVersionUID = 1L;
24  
25    /**
26     * 
27     */
28    public LDBPoemServlet() {
29      super();
30    }
31  
32    
33    protected PoemContext poemContext(Melati melati) throws PathInfoException { 
34      return poemContextWithLDB(melati, "melatijunit"); 
35    } 
36  
37  }