1 package org.jboss.docs.cmp2.crimeportal; 2 3 import java.util.Collection ; 4 import java.util.Set ; 5 import javax.ejb.CreateException ; 6 import javax.ejb.EJBLocalHome ; 7 import javax.ejb.FinderException ; 8 9 public interface GangsterHome extends EJBLocalHome  10 { 11 Gangster create(Integer id, String name, String nickName) 12 throws CreateException ; 13 14 Gangster findByPrimaryKey(Integer id) throws FinderException ; 15 16 Collection findAll() throws FinderException ; 17 Collection findBadDudes(int badness) throws FinderException ; 18 Set selectBoss(String name) throws FinderException ; 19 } 20 | Popular Tags |