1 4 package com.opensymphony.webwork.example.ajax.actions; 5 6 import com.opensymphony.webwork.example.ajax.cart.ShoppingCart; 7 8 13 public class UpdateQuantityInCart extends AbstractModifyCartAction { 14 public String execute() throws Exception { 15 ShoppingCart cart = getCart(); 16 if (cart != null) { 17 cart.setQuantity(quantity, product); 18 } 19 return SUCCESS; 20 } 21 } 22 | Popular Tags |