View Javadoc

1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * Created on 29-Nov-2004
6    */
7   package ca.uhn.cache.internal.hibernate;
8   
9   import ca.uhn.cache.CacheReasonEnum;
10  
11  /***
12   * Persistent class that allows <b>Hibernate</b> to persist <code>CacheReasonEnum</code> instances. 
13   * 
14   * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
15   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:55 $ by $Author: bryan_tripp $
16   */
17  public class HibernateCacheReasonEnum extends HibernateEnum {
18  
19      /***
20       */
21      public HibernateCacheReasonEnum() {
22          super( CacheReasonEnum.class );
23      }
24      
25  }