throws CreateException, MissingPrimaryKeyException {
Debug.print("CustomerBean ejbCreate");
if ((customerId == null) || (customerId.trim().length() == 0)) {
throw new MissingPrimaryKeyException
("ejbCreate: customerId arg is null or empty");
}
this.customerId = customerId;
this.lastName = lastName;