1 /* 2 * Shark Hibernate persistent layer - Open Wide 3 */ 4 5 package org.enhydra.shark.utilities.hibernate; 6 7 /** 8 * Generic Hibernate class, for convinience in the use of the buffer mechanism 9 * All Hibernate Object classes will implements this class 10 * @author Vladislav Pernin 11 */ 12 public interface HibernateGeneric { 13 14 public int getDbId(); 15 16 public void setDbId(int dbId); 17 18 } 19