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    * HibernateVolatilityEnum.java
6    *
7    * Created on 16-Dec-2004 at 11:34:45 AM
8    */
9   package ca.uhn.cache.internal.hibernate;
10  
11  import ca.uhn.cache.VolatilityEnum;
12  
13  
14  /***
15   * Persistent class that allows <b>Hibernate</b> to persist <code>VolatilityEnum</code> instances. 
16   * 
17   * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:58 $ by $Author: bryan_tripp $
19   */
20  public class HibernateVolatilityEnum extends HibernateEnum {
21  
22      /***
23       */
24      public HibernateVolatilityEnum() {
25          super( VolatilityEnum.class );
26      }
27  
28  }