Class PickupLocationCheckoutStepController

All Implemented Interfaces:
CheckoutStepController

@Controller @RequestMapping("/checkout/multi/pickup-location") public class PickupLocationCheckoutStepController extends AbstractCheckoutStepController
  • Constructor Details

    • PickupLocationCheckoutStepController

      public PickupLocationCheckoutStepController()
  • Method Details

    • enterStep

      @RequestMapping(value="/choose", method=GET) public String enterStep(org.springframework.ui.Model model, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) throws CMSItemNotFoundException
      Description copied from interface: CheckoutStepController
      Swapping the parameter order might break the validation aspect from working.
      Returns:
      returns the result for entering the checkout step
      Throws:
      CMSItemNotFoundException
    • doSelectDeliveryLocation

      @RequestMapping(value="/choose", method=POST) public String doSelectDeliveryLocation(@RequestParam("posName") String posName, org.springframework.ui.Model model, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) throws CMSItemNotFoundException, CommerceCartModificationException
      Throws:
      CMSItemNotFoundException
      CommerceCartModificationException
    • back

      @RequestMapping(value="/back", method=GET) public String back(org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes)
      Returns:
      checkoutstep link for navigating back
    • next

      @RequestMapping(value="/next", method=GET) public String next(org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes)
      Returns:
      checkoutstep link for navigating next
    • getCheckoutStep

      protected CheckoutStep getCheckoutStep()