1 package org.jadetower.dao.test.daos.impl;
2
3 /*
4 Copyright (c) 2003, J Aaron Farr
5 All rights reserved.
6
7 This software is published under the terms of the JadeTower Software License,
8 a BSD derived license, a copy of which has been included with this
9 distribution in the LICENSE file. <http://www.jadetower.org>
10 */
11
12 import org.jadetower.dao.test.daos.SimpleDAO;
13
14 /***
15 * simplest DAO HelloWorld Implementation
16 * @author farra
17 * @version $Id: HelloWorldDaoImpl.java,v 1.1 2003/12/27 20:10:08 jaaron_farr Exp $
18 */
19 public class HelloWorldDaoImpl implements SimpleDAO
20 {
21 public HelloWorldDaoImpl() {
22 }
23
24 public String getName() {
25 return "Hello World!";
26 }
27 }
This page was automatically generated by Maven