KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > ce > auction > model > Auditable


1 package org.hibernate.ce.auction.model;
2
3 /**
4  * A marker interface for auditable persistent domain classes.
5  *
6  * @author Christian Bauer <christian@hibernate.org>
7  */

8 public interface Auditable {
9
10     public Long JavaDoc getId();
11 }
12
Popular Tags