|
| |
"The Delegation-Managed Persistence Entity Bean"
Vol. 9, Issue 2, p. 31
Listing 1
public void ejbLoad() {
ItemKey myKey =
(ItemKey) getEntityContext().getPrimaryKey();
Integer newKey1 = myKey.getData1Key();
Integer newKey2 = myKey.getData2Key();
if (!(itemData1Key.equals(newKey1))) {
itemData1 = null;
itemData1Key = newKey1;
}
if (!(itemData2Key.equals(newKey2))) {
itemData2 = null;
itemData2Key = newKey2;
}
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|