com.elasticpath.sfweb.controller.impl
Class CreditCardFormControllerImpl

java.lang.Object
  extended by org.springframework.context.support.ApplicationObjectSupport
      extended by org.springframework.web.context.support.WebApplicationObjectSupport
          extended by org.springframework.web.servlet.support.WebContentGenerator
              extended by org.springframework.web.servlet.mvc.AbstractController
                  extended by org.springframework.web.servlet.mvc.BaseCommandController
                      extended by org.springframework.web.servlet.mvc.AbstractFormController
                          extended by org.springframework.web.servlet.mvc.SimpleFormController
                              extended by com.elasticpath.sfweb.controller.impl.AbstractEpFormController
                                  extended by com.elasticpath.sfweb.controller.impl.CreditCardFormControllerImpl
All Implemented Interfaces:
EpController, org.springframework.context.ApplicationContextAware, org.springframework.web.context.ServletContextAware, org.springframework.web.servlet.mvc.Controller

public class CreditCardFormControllerImpl
extends AbstractEpFormController

The Spring MVC controller for credit card editing page.


Field Summary
 
Fields inherited from class org.springframework.web.servlet.mvc.BaseCommandController
DEFAULT_COMMAND_NAME
 
Fields inherited from class org.springframework.web.servlet.support.WebContentGenerator
METHOD_GET, METHOD_HEAD, METHOD_POST
 
Constructor Summary
CreditCardFormControllerImpl()
           
 
Method Summary
 java.lang.Object formBackingObject(javax.servlet.http.HttpServletRequest request)
          Prepare the command object for the credit card add form.
 org.springframework.web.servlet.ModelAndView onSubmit(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, org.springframework.validation.BindException errors)
          Handle the create-credit-card form submit.
 void setCheckoutView(java.lang.String checkoutView)
          Set the view to be redirected to when editing a credit card from the checkout page.
 void setCustomerService(CustomerService customerService)
          Set the customer service used to associate the credit card with a customer.
 void setUtility(Utility utility)
          Set the utility object.
 
Methods inherited from class com.elasticpath.sfweb.controller.impl.AbstractEpFormController
getElasticPath, getRequestHelper, setElasticPath, setRequestHelper
 
Methods inherited from class org.springframework.web.servlet.mvc.SimpleFormController
getFormView, getSuccessView, setFormView, setSuccessView
 
Methods inherited from class org.springframework.web.servlet.mvc.AbstractFormController
isBindOnNewForm, isSessionForm, setBindOnNewForm, setSessionForm
 
Methods inherited from class org.springframework.web.servlet.mvc.BaseCommandController
getBindingErrorProcessor, getCommandClass, getCommandName, getMessageCodesResolver, getPropertyEditorRegistrars, getValidator, getValidators, isValidateOnBinding, setBindingErrorProcessor, setCommandClass, setCommandName, setMessageCodesResolver, setPropertyEditorRegistrar, setPropertyEditorRegistrars, setValidateOnBinding, setValidator, setValidators
 
Methods inherited from class org.springframework.web.servlet.mvc.AbstractController
handleRequest, isSynchronizeOnSession, setSynchronizeOnSession
 
Methods inherited from class org.springframework.web.servlet.support.WebContentGenerator
getCacheSeconds, getSupportedMethods, isRequireSession, isUseCacheControlHeader, isUseExpiresHeader, setCacheSeconds, setRequireSession, setSupportedMethods, setUseCacheControlHeader, setUseExpiresHeader
 
Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport
setServletContext
 
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, setApplicationContext
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.springframework.web.servlet.mvc.Controller
handleRequest
 

Constructor Detail

CreditCardFormControllerImpl

public CreditCardFormControllerImpl()
Method Detail

formBackingObject

public java.lang.Object formBackingObject(javax.servlet.http.HttpServletRequest request)
Prepare the command object for the credit card add form.

Overrides:
formBackingObject in class org.springframework.web.servlet.mvc.AbstractFormController
Parameters:
request - -the request
Returns:
the command object

onSubmit

public org.springframework.web.servlet.ModelAndView onSubmit(javax.servlet.http.HttpServletRequest request,
                                                             javax.servlet.http.HttpServletResponse response,
                                                             java.lang.Object command,
                                                             org.springframework.validation.BindException errors)
Handle the create-credit-card form submit.

Overrides:
onSubmit in class org.springframework.web.servlet.mvc.SimpleFormController
Parameters:
request - -the request
response - -the response
command - -the command object
errors - - will be written back in case of any business error happens
Returns:
return the view

setCheckoutView

public void setCheckoutView(java.lang.String checkoutView)
Set the view to be redirected to when editing a credit card from the checkout page.

Parameters:
checkoutView - the view name

setCustomerService

public void setCustomerService(CustomerService customerService)
Set the customer service used to associate the credit card with a customer.

Parameters:
customerService - the customer service.

setUtility

public void setUtility(Utility utility)
Set the utility object.

Parameters:
utility - the utility object.