KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dataregistry > PartLocalHome


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.io.Serializable JavaDoc;
31 import java.math.BigDecimal JavaDoc;
32 import java.sql.Timestamp JavaDoc;
33 import java.util.Collection JavaDoc;
34 import javax.ejb.*;
35
36
37 /**
38  * This is the local-home interface for Part enterprise bean.
39  */

40
41 public interface PartLocalHome extends EJBLocalHome {
42
43     PartLocal findByPrimaryKey(PartPK key) throws FinderException;
44
45     public PartLocal create(String JavaDoc partNumber, BigDecimal JavaDoc revision, String JavaDoc description, Timestamp JavaDoc revisionDate, PartLocal partBean) throws CreateException;
46
47     Collection JavaDoc findByPartNumber(String JavaDoc partNumber) throws FinderException;
48
49     Collection JavaDoc findByRevision(BigDecimal JavaDoc revision) throws FinderException;
50
51     Collection JavaDoc findByDescription(String JavaDoc description) throws FinderException;
52
53     PartLocal create(String JavaDoc partNumber, int revision, String JavaDoc description, java.util.Date JavaDoc revisionDate, String JavaDoc specification, Serializable JavaDoc drawing) throws CreateException;
54     
55     
56 }
57
Popular Tags