KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dataregistry > VendorLocalHome


1 /*
2  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. U.S.
3  * Government Rights - Commercial software. Government users are subject
4  * to the Sun Microsystems, Inc. standard license agreement and
5  * applicable provisions of the FAR and its supplements. Use is subject
6  * to license terms.
7  *
8  * This distribution may include materials developed by third parties.
9  * Sun, Sun Microsystems, the Sun logo, Java and J2EE are trademarks
10  * or registered trademarks of Sun Microsystems, Inc. in the U.S. and
11  * other countries.
12  *
13  * Copyright (c) 2005 Sun Microsystems, Inc. Tous droits reserves.
14  *
15  * Droits du gouvernement americain, utilisateurs gouvernementaux - logiciel
16  * commercial. Les utilisateurs gouvernementaux sont soumis au contrat de
17  * licence standard de Sun Microsystems, Inc., ainsi qu'aux dispositions
18  * en vigueur de la FAR (Federal Acquisition Regulations) et des
19  * supplements a celles-ci. Distribue par des licences qui en
20  * restreignent l'utilisation.
21  *
22  * Cette distribution peut comprendre des composants developpes par des
23  * tierces parties. Sun, Sun Microsystems, le logo Sun, Java et J2EE
24  * sont des marques de fabrique ou des marques deposees de Sun
25  * Microsystems, Inc. aux Etats-Unis et dans d'autres pays.
26  */

27
28 package dataregistry;
29
30 import java.util.Collection JavaDoc;
31 import javax.ejb.CreateException JavaDoc;
32 import javax.ejb.EJBLocalHome JavaDoc;
33 import javax.ejb.FinderException JavaDoc;
34
35
36 /**
37  * This is the local-home interface for Vendor enterprise bean.
38  */

39 public interface VendorLocalHome extends EJBLocalHome JavaDoc {
40
41     VendorLocal findByPrimaryKey(VendorKey key) throws FinderException JavaDoc;
42
43     public VendorLocal create(int vendorId, String JavaDoc name, String JavaDoc address, String JavaDoc contact, String JavaDoc phone) throws CreateException JavaDoc;
44
45     Collection JavaDoc findByVendorId(Integer JavaDoc vendorId) throws FinderException JavaDoc;
46
47     Collection JavaDoc findByName(String JavaDoc name) throws FinderException JavaDoc;
48
49     Collection JavaDoc findByAddress(String JavaDoc address) throws FinderException JavaDoc;
50
51     Collection JavaDoc findByContact(String JavaDoc contact) throws FinderException JavaDoc;
52
53     Collection JavaDoc findByPhone(String JavaDoc phone) throws FinderException JavaDoc;
54
55     Collection JavaDoc findByPartialName(String JavaDoc name) throws FinderException JavaDoc;
56
57     Collection JavaDoc findByOrder(Integer JavaDoc orderId) throws FinderException JavaDoc;
58     
59     
60 }
61
Popular Tags