* relation="external"
* type="java.util.Collection"
*/
public java.util.Collection getShippingAddresses() {
try {
AddressLocalHome home = (AddressLocalHome) new InitialContext().lookup("java:comp/env/ejb/bank/Address");
return home.findByOwner((Customer) ctx.getEJBObject());
}
catch (Exception e) {
throw new EJBException(e);
}
}