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 getId();11 }12