1 package org.openejb.alt.containers.castor_cmp11;2 3 import org.exolab.castor.persist.spi.Complex;4 5 public interface KeyGenerator {6 7 8 public Object getPrimaryKey(javax.ejb.EntityBean bean);9 public Complex getJdoComplex(Object primaryKey);10 public boolean isKeyComplex();11 12 13 }