View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/community/server/src/java/org/astrogrid/community/server/database/configuration/DatabaseConfigurationTestData.java,v $</cvs:source>
3    * <cvs:author>$Author: dave $</cvs:author>
4    * <cvs:date>$Date: 2004/09/16 23:18:08 $</cvs:date>
5    * <cvs:version>$Revision: 1.4 $</cvs:version>
6    *
7    * <cvs:log>
8    *   $Log: DatabaseConfigurationTestData.java,v $
9    *   Revision 1.4  2004/09/16 23:18:08  dave
10   *   Replaced debug logging in Community.
11   *   Added stream close() to FileStore.
12   *
13   *   Revision 1.3.82.1  2004/09/16 09:58:48  dave
14   *   Replaced debug with commons logging ....
15   *
16   *   Revision 1.3  2004/06/18 13:45:20  dave
17   *   Merged development branch, dave-dev-200406081614, into HEAD
18   *
19   *   Revision 1.2.54.1  2004/06/17 13:38:59  dave
20   *   Tidied up old CVS log entries
21   *
22   * </cvs:log>
23   *
24   */
25  package org.astrogrid.community.server.database.configuration ;
26  
27  /***
28   * A dummy class to test the Castor database configuration.
29   * We need to have something to try to load to see if the database connection is healthy.
30   *
31   */
32  public class DatabaseConfigurationTestData
33      {
34      private String ident ;
35  
36      public void setIdent(String value)
37          {
38          this.ident = value ;
39          }
40  
41      public String getIdent()
42          {
43          return this.ident ;
44          }
45      }