-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomerreview-spring.xml
50 lines (38 loc) · 2.27 KB
/
customerreview-spring.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<!--
[y] hybris Platform
Copyright (c) 2000-2014 hybris AG
All rights reserved.
This software is the confidential and proprietary information of hybris
("Confidential Information"). You shall not disclose such Confidential
Information and shall use it only in accordance with the terms of the
license agreement you entered into with hybris.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<alias alias="customerReviewService" name="defaultCustomerReviewService"/>
<bean id="defaultCustomerReviewService" class="de.hybris.platform.customerreview.impl.DefaultCustomerReviewService" parent="abstractBusinessService" scope="tenant">
<property name="customerReviewDao" ref="customerReviewDao"/>
</bean>
<alias alias="customerReviewDao" name="defaultCustomerReviewDao"/>
<bean id="defaultCustomerReviewDao" class="de.hybris.platform.customerreview.dao.impl.DefaultCustomerReviewDao" parent="abstractItemDao" scope="tenant"/>
<!-- system setup bean -->
<alias alias="customerReviewSystemSetup" name="defaultCustomerReviewSystemSetup"/>
<bean id="defaultCustomerReviewSystemSetup" class="de.hybris.platform.customerreview.setup.CustomerReviewSystemSetup" scope="tenant">
<property name="modelService" ref="modelService"/>
<property name="typeService" ref="typeService"/>
<property name="userService" ref="userService"/>
<property name="searchRestrictionService" ref="searchRestrictionService"/>
<property name="configurationService" ref="configurationService"/>
</bean>
<alias alias="customerReviewExcerciseService" name="customerReviewExcerciseService"/>
<bean id="customerReviewExcerciseService" class="de.hybris.platform.customerreview.impl.customerReviewExcerciseServiceImpl" scope="tenant">
<property name="curseWords" value="hell,shit,fuck"></property>
<property name="customerReviewService" ref="customerReviewService"/>
</bean>
</beans>