Package com.chandana.dev.domain

Examples of com.chandana.dev.domain.Customer


  public ActionForward execute(ActionMapping mapping, ActionForm form,
      HttpServletRequest request, HttpServletResponse response)
      throws Exception {   
    CustomerManager customerBo = (CustomerManager) getWebApplicationContext()  .getBean("customerBo");
    CustomerForm customerForm = (CustomerForm) form;
    Customer customer = new Customer();
    BeanUtils.copyProperties(customer, customerForm);
    customerBo.addCustomer(customer);
    return mapping.findForward("success");

  }
View Full Code Here

TOP

Related Classes of com.chandana.dev.domain.Customer

Copyright © 2018 www.massapicom. 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.