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.io.Serializable;
31: import java.math.BigDecimal;
32:
33: /**
34: * This is the bean class for the PartBean enterprise bean.
35: */
36: public final class PartPK implements Serializable {
37:
38: public String partNumber;
39: public BigDecimal revision;
40:
41: /**
42: * @see Object#equals(Object)
43: */
44: public boolean equals(Object otherOb) {
45:
46: if (this == otherOb) {
47: return true;
48: }
49: if (!(otherOb instanceof PartPK)) {
50: return false;
51: }
52: PartPK other = (PartPK) otherOb;
53: return (
54:
55: (partNumber == null ? other.partNumber == null : partNumber
56: .equals(other.partNumber)) && (revision == null ? other.revision == null
57: : revision.equals(other.revision))
58:
59: );
60: }
61:
62: /**
63: * @see Object#hashCode()
64: */
65: public int hashCode() {
66: return (
67:
68: (partNumber == null ? 0 : partNumber.hashCode()) ^ (revision == null ? 0
69: : revision.hashCode())
70:
71: );
72: }
73:
74: }
|