// copy form-bean values to new Stake objects
InternetProduct product = new InternetProduct();
PropertyUtils.copyProperties(product, productForm);
// get a DAO for the new Stake
dao = new InternetProductDAO();
// store the new Stake
dao.makeTransient(product);
// commit this transaction