Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:util="http://www.springframework.org/schema/util"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  6. http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
  7.  
  8. <bean id="managerFactory" class="com.thehut.elysium.manager.ManagerFactory" factory-method="getManagerFactory"
  9. scope="singleton"/>
  10.  
  11.  
  12.  
  13. <bean name="bannerManager" class="com.thehut.elysium.manager.banners.BannerManager_Impl" init-method="init"
  14. scope="singleton">
  15. <property name="bannerService" ref="bannerService"/>
  16. <property name="cacheManager" ref="cacheManager"/>
  17. </bean>
  18.  
  19. <bean name="discountManager" class="com.thehut.elysium.manager.DiscountManager_Impl" scope="singleton">
  20. <property name="discountService" ref="discountService"/>
  21. </bean>
  22.  
  23. <bean name="voucherManager" class="com.thehut.elysium.manager.VoucherManager_Impl" scope="singleton">
  24. <property name="productService" ref="productService"/>
  25. </bean>
  26.  
  27. <bean name="discountClubManager" class="com.thehut.elysium.manager.DiscountClubManager_Impl" scope="singleton">
  28. <property name="discountClubService" ref="discountClubService"/>
  29. </bean>
  30.  
  31. <bean name="competitionManager" class="com.thehut.elysium.manager.CompetitionManager_Impl" init-method="init"
  32. scope="singleton">
  33. <property name="competitionService" ref="competitionService"/>
  34. <property name="cacheManager" ref="cacheManager"/>
  35. </bean>
  36.  
  37. <bean name="promotionManager" class="com.thehut.elysium.manager.PromotionManager_Impl" scope="singleton">
  38. <property name="promotionService" ref="promotionService"/>
  39. </bean>
  40.  
  41. <bean name="rewardPointsManager" class="com.thehut.elysium.manager.RewardPointsManager_Impl" scope="singleton">
  42. <property name="rewardPointsService" ref="rewardPointsService"/>
  43. </bean>
  44.  
  45. <bean name="affiliateManager" class="com.thehut.elysium.manager.AffiliateManager_Impl" scope="singleton">
  46. <property name="affiliateService" ref="affiliateService"/>
  47. </bean>
  48.  
  49. <bean name="affiliateNetworkManager" class="com.thehut.elysium.manager.AffiliateNetworkManager_Impl"
  50. scope="singleton">
  51. <property name="affiliateNetworkService" ref="affiliateNetworkService"/>
  52. </bean>
  53.  
  54. <bean name="persistentBasketManager" class="com.thehut.elysium.manager.basket.PersistentBasketManager"
  55. scope="singleton">
  56. <property name="persistentBasketService" ref="persistentBasketService"/>
  57. </bean>
  58.  
  59. <bean name="templateManager" class="com.thehut.elysium.manager.template.TemplateManager_Impl" init-method="init"
  60. scope="singleton">
  61. <property name="cacheManager" ref="cacheManager"/>
  62. </bean>
  63.  
  64. <bean name="thirdPartyDiscountManager" class="com.thehut.elysium.manager.ThirdPartyDiscountManager_Impl"
  65. scope="singleton">
  66.  
  67. <property name="service" ref="thirdPartyDiscountService"/>
  68. </bean>
  69.  
  70. <bean name="miamiAuditManager" class="com.thehut.elysium.manager.MiamiAuditManager_Impl"
  71. scope="singleton">
  72. <property name="miamiAuditService" ref="miamiAuditService"/>
  73. </bean>
  74.  
  75.  
  76.  
  77.  
  78. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement