KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > league > ejb > entity > PlaceInGroupLocalHome


1
2 package league.ejb.entity;
3
4
5 /**
6  * This is the local-home interface for PlaceInGroup enterprise bean.
7  */

8 public interface PlaceInGroupLocalHome extends javax.ejb.EJBLocalHome JavaDoc {
9     
10     
11     
12     /**
13      *
14      */

15     league.ejb.entity.PlaceInGroupLocal findByPrimaryKey(league.ejb.entity.PlaceInGroupPK key) throws javax.ejb.FinderException JavaDoc;
16
17     public league.ejb.entity.PlaceInGroupLocal create(java.math.BigDecimal JavaDoc place, java.math.BigDecimal JavaDoc groupId, java.math.BigDecimal JavaDoc teamId, league.ejb.entity.GroupsLocal groups, league.ejb.entity.TeamLocal team) throws javax.ejb.CreateException JavaDoc;
18
19     java.util.Collection JavaDoc findByPlace(java.math.BigDecimal JavaDoc place) throws javax.ejb.FinderException JavaDoc;
20
21      java.util.Collection JavaDoc findByGroupId(java.math.BigDecimal JavaDoc groupId) throws javax.ejb.FinderException JavaDoc;
22
23     java.util.Collection JavaDoc findByTeamId(java.math.BigDecimal JavaDoc teamId) throws javax.ejb.FinderException JavaDoc;
24
25     league.ejb.entity.PlaceInGroupLocal create(league.ejb.entity.GroupsLocal gl, league.ejb.entity.TeamLocal tl, java.lang.Integer JavaDoc place) throws javax.ejb.CreateException JavaDoc;
26     
27     
28 }
29
Popular Tags