/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.web.mvc.controller.catalog; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.hoteia.qalingo.core.domain.enumtype.BoUrls; import org.hoteia.qalingo.core.service.CatalogCategoryService; import org.hoteia.qalingo.core.service.CatalogService; import org.hoteia.qalingo.core.service.WebBackofficeService; import org.hoteia.qalingo.core.web.servlet.ModelAndViewThemeDevice; import org.hoteia.qalingo.web.mvc.controller.AbstractBusinessBackofficeController; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; /** * */ @Controller("catalogController") public class CatalogController extends AbstractBusinessBackofficeController { private final Logger logger = LoggerFactory.getLogger(getClass()); @Autowired protected CatalogService catalogService; @Autowired protected CatalogCategoryService catalogCategoryService; @Autowired protected WebBackofficeService webBackofficeService; @RequestMapping(value = BoUrls.MASTER_CATALOG_URL, method = RequestMethod.GET) public ModelAndView manageMasterCatalog(final HttpServletRequest request, final HttpServletResponse response) throws Exception { ModelAndViewThemeDevice modelAndView = new ModelAndViewThemeDevice(getCurrentVelocityPath(request), BoUrls.MASTER_CATALOG.getVelocityPage()); modelAndView.addObject("catalogType", "master"); overrideDefaultMainContentTitle(request, modelAndView, BoUrls.MASTER_CATALOG.getKey(), null); return modelAndView; } @RequestMapping(value = BoUrls.VIRTUAL_CATALOG_URL, method = RequestMethod.GET) public ModelAndView manageVirtualCatalog(final HttpServletRequest request, final HttpServletResponse response) throws Exception { ModelAndViewThemeDevice modelAndView = new ModelAndViewThemeDevice(getCurrentVelocityPath(request), BoUrls.VIRTUAL_CATALOG.getVelocityPage()); modelAndView.addObject("catalogType", "virtual"); overrideDefaultMainContentTitle(request, modelAndView, BoUrls.VIRTUAL_CATALOG.getKey(), null); return modelAndView; } }