Package org.hoteia.qalingo.web.mvc.form

Examples of org.hoteia.qalingo.web.mvc.form.FollowUsForm


    try {
      String email = request.getParameter(RequestConstants.REQUEST_PARAMETER_NEWSLETTER_EMAIL);
      webManagementService.saveNewsletterSubscriptionAndSendEmail(requestUtil.getRequestData(request), email);
         
        } catch (Exception e) {
          displayFollowUs(request, model, new FollowUsForm());
        }
   
        return modelAndView;
  }
View Full Code Here


    try {
      webManagementService.saveNewsletterSubscriptionAndSendEmail(requestUtil.getRequestData(request), newsletterQuickRegistrationForm.getEmail());
         
        } catch (Exception e) {
          displayFollowUs(request, model, new FollowUsForm());
        }
   
        return modelAndView;
  }
View Full Code Here

      requestData.setMarketArea(marketService.getMarketAreaByCode(marketAreaCode));
     
      webManagementService.saveNewsletterUnsubscriptionAndSendEmail(requestData, email);
         
        } catch (Exception e) {
          displayFollowUs(request, model, new FollowUsForm());
        }
   
        return modelAndView;
  }
View Full Code Here

    final QuickSearchForm quickSearchForm = new QuickSearchForm();
    return quickSearchForm;
  }
 
  public FollowUsForm buildFollowUsForm(final RequestData requestData) throws Exception {
    final FollowUsForm followUsForm = new FollowUsForm();
    return followUsForm;
  }
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.web.mvc.form.FollowUsForm

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.