peternameyakj
2024-07-21 25e1d54f2295934446473fe85cf022fa6140b4e0
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
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans         
        http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="onlineChatMessageService" class="project.onlinechat.internal.OnlineChatMessageServiceImpl"/>
    <bean id="adminSystemUserService" class="systemuser.internal.AdminSystemUserServiceImpl">
        <property name="logService" ref="logService" />
        <property name="roleService" ref="roleService" />
        <property name="secUserService" ref="secUserService" />
        <property name="passwordEncoder" ref="passwordEncoder" />
        <property name="googleAuthService" ref="googleAuthService" />
    </bean>
 
    <bean id="adminRoleAuthorityService" class="systemuser.internal.AdminRoleAuthorityServiceImpl">
        <property name="roleService" ref="roleService" />
        <property name="resourceService" ref="resourceService" />
        <property name="resourceMappingService" ref="resourceMappingService" />
        <property name="passwordEncoder" ref="passwordEncoder" />
        <property name="secUserService" ref="secUserService" />
        <property name="googleAuthService" ref="googleAuthService" />
    </bean>
    
    <bean id="resourceMappingService" class="systemuser.internal.ResourceMappingServiceImpl"/>
        
    <bean id="customerService" class="kernel.web.RmiProxyFactoryBean" factory-method="getProxyBean">
        <constructor-arg name="remoteBeanName" value="customerService"/>
        <constructor-arg name="remoteInterface" value="systemuser.CustomerService"/>
    </bean>
        
    <bean id="adminCustomerService" class="systemuser.internal.AdminCustomerServiceImpl">
        <property name="logService" ref="logService"/>
        <property name="secUserService" ref="secUserService"/>
        <property name="passwordEncoder" ref="passwordEncoder"/>
        <property name="customerService" ref="customerService"/>
        <property name="adminSystemUserService" ref="adminSystemUserService"/>
        <property name="onlineChatMessageService" ref="onlineChatMessageService"/>
    </bean>
</beans>