Examples of containsItemId()


Examples of org.apache.beehive.samples.petstore.model.Cart.containsItemId()

    @Jpf.Action
    public Forward removeItemFromCart() {
        String itemId = lookupCurrentItemId();
       
        Cart cart = lookupCart();
        if(cart.containsItemId(itemId))
            cart.removeItemById(itemId);

        Forward forward = setupCartForward();
        forward.addActionOutput("product", _currentProduct);
        return forward;
View Full Code Here

Examples of org.springframework.samples.jpetstore.domain.Cart.containsItemId()

  }

  public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
    Cart cart = (Cart) WebUtils.getOrCreateSessionAttribute(request.getSession(), "sessionCart", Cart.class);
    String workingItemId = request.getParameter("workingItemId");
    if (cart.containsItemId(workingItemId)) {
      cart.incrementQuantityByItemId(workingItemId);
    }
    else {
      // isInStock is a "real-time" property that must be updated
      // every time an item is added to the cart, even if other
View Full Code Here

Examples of org.springframework.samples.jpetstore.domain.Cart.containsItemId()

  public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
    CartActionForm cartForm = (CartActionForm) form;
    Cart cart = cartForm.getCart();
    String workingItemId = cartForm.getWorkingItemId();
    if (cart.containsItemId(workingItemId)) {
      cart.incrementQuantityByItemId(workingItemId);
    }
    else {
      // isInStock is a "real-time" property that must be updated
      // every time an item is added to the cart, even if other
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.