1 22 package org.jboss.test.cmp2.idxandusersql.ejb; 23 24 import java.util.Collection ; 25 import javax.ejb.EntityBean ; 26 27 47 public abstract class CMR2Bean implements EntityBean 48 { 49 50 55 public String ejbCreate() throws javax.ejb.CreateException 56 { 57 return null; 58 } 59 60 public void ejbPostCreate() 61 { 62 63 } 64 65 69 public abstract void setPKey2(String pKey2); 70 71 75 public abstract String getPKey2(); 76 77 85 public abstract String getFoo2(); 86 87 92 public abstract String getBar2(); 93 94 100 public abstract Collection getIdxs(); 101 102 105 public abstract void setIdxs(Collection Idxs); 106 107 } 108 | Popular Tags |