1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import java.util.Collection ; 4 import java.util.Date ; 5 6 import javax.ejb.FinderException ; 7 8 public interface CreditCardHomeRemote extends javax.ejb.EJBHome { 10 11 public CreditCardLocal create(Date exp, String numb, String name, String org) 12 throws javax.ejb.CreateException ; 13 14 public CreditCardLocal findByPrimaryKey(Object primaryKey) 15 throws javax.ejb.FinderException ; 16 17 public Collection findAllCreditCards() throws FinderException ; 18 19 } 20 21 22 | Popular Tags |