1 /* 2 * joey and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/06/03 5:52:47 6 */ 7 package org.asyrinx.joey.om; 8 9 import java.io.Serializable; 10 11 /*** 12 * @author akima 13 */ 14 public interface Entity { 15 public Serializable getPrimaryKey(); 16 17 }