Examples of GatewayCategory


Examples of com.lgx8.gateway.entities.GatewayCategory

    Template temp = getConfiguration().getTemplate("newscreen.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CID_XPTJ);
    if(gatewayCategory != null)
    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
View Full Code Here

Examples of com.lgx8.gateway.entities.GatewayCategory

   
    Template temp = getConfiguration().getTemplate("cityadvise.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CTC_TCTG);
    root.put("gatewayCategory", gatewayCategory);
   
    IPObject iPObject = (IPObject) request.getSession().getAttribute("iPObject");
    //同城推广
    List<ProductVO> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CTC_TCTG,iPObject != null?iPObject.getAreaNode():null);
View Full Code Here

Examples of com.lgx8.gateway.entities.GatewayCategory

    Template temp = getConfiguration().getTemplate("luxuryproduct.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CID_GXSP);
    if(gatewayCategory != null)
    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
View Full Code Here

Examples of com.lgx8.gateway.entities.GatewayCategory

    Template temp = getConfiguration().getTemplate("adviselist.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CYP_YPLB);
    root.put("gatewayCategory", gatewayCategory);
//   
//    String categoryId = request.getParameter("categoryId");
//   
//    if("".equals(categoryId) || categoryId == null || "null".equals(categoryId))
View Full Code Here

Examples of com.lgx8.gateway.entities.GatewayCategory

    Template temp = getConfiguration().getTemplate("adviseproduct.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CTC_TCTH);
    root.put("gatewayCategory", gatewayCategory);
   
    //同城兑换类型
    List<ProductVO> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CTC_TCTHLX);
    root.put("productVOs", productVOs);
View Full Code Here

Examples of com.lgx8.gateway.entities.GatewayCategory

    Template temp = getConfiguration().getTemplate("famousbrand.ftl");
   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CID_GXMP);
    if(gatewayCategory != null)
    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.