1 22 package org.jboss.test.testbeancluster.interfaces; 23 24 import javax.ejb.EJBLocalObject ; 25 26 import org.jboss.test.testbean.interfaces.AComplexPK; 27 28 public interface EntityPK extends EJBLocalObject  29 { 30 public AComplexPK readAllValues(); 31 public void updateAllValues(AComplexPK aComplexPK); 32 33 public int getOtherField(); 34 public void setOtherField(int newValue); 35 } 36 | Popular Tags |