01: /*
02: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. U.S.
03: * Government Rights - Commercial software. Government users are subject
04: * to the Sun Microsystems, Inc. standard license agreement and
05: * applicable provisions of the FAR and its supplements. Use is subject
06: * to license terms.
07: *
08: * This distribution may include materials developed by third parties.
09: * 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.math.BigDecimal;
31: import java.sql.Timestamp;
32: import java.util.Collection;
33: import javax.ejb.CreateException;
34: import javax.ejb.EJBLocalHome;
35: import javax.ejb.FinderException;
36:
37: /**
38: * This is the local-home interface for Orders enterprise bean.
39: */
40: public interface OrderLocalHome extends EJBLocalHome {
41:
42: OrderLocal findByPrimaryKey(Integer key) throws FinderException;
43:
44: public OrderLocal create(Integer orderId, String status,
45: Timestamp lastUpdate, BigDecimal discount,
46: String shipmentInfo) throws CreateException;
47:
48: Collection findByOrderId(Integer orderId) throws FinderException;
49:
50: Collection findByStatus(String status) throws FinderException;
51:
52: Collection findByDiscount(BigDecimal discount)
53: throws FinderException;
54:
55: Collection findByShipmentInfo(String shipmentInfo)
56: throws FinderException;
57:
58: OrderLocal create(Integer orderId, String status,
59: BigDecimal discount, String shipmentInfo)
60: throws CreateException;
61:
62: void adjustDiscount(int adjustment);
63:
64: }
|