-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathConsoleManager.xml
More file actions
executable file
·47 lines (42 loc) · 2.46 KB
/
ConsoleManager.xml
File metadata and controls
executable file
·47 lines (42 loc) · 2.46 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<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"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:zstack="http://zstack.org/schema/zstack"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://zstack.org/schema/zstack
http://zstack.org/schema/zstack/plugin.xsd"
default-init-method="init" default-destroy-method="destroy">
<bean id="ConsoleManager" class="org.zstack.console.ConsoleManagerImpl">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.Component" />
<zstack:extension interface="org.zstack.header.Service" />
<zstack:extension interface="org.zstack.header.vm.VmInstanceMigrateExtensionPoint" />
<zstack:extension interface="org.zstack.header.vm.VmReleaseResourceExtensionPoint" />
<zstack:extension interface="org.zstack.header.managementnode.ManagementNodeChangeListener" />
<zstack:extension interface="org.zstack.header.identity.SessionLogoutExtensionPoint" />
</zstack:plugin>
<property name="useBackend" value="ManagementServerConsoleProxyBackend" />
</bean>
<bean id="ConsoleApiInterceptor" class="org.zstack.console.ConsoleApiInterceptor">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.apimediator.ApiMessageInterceptor" />
</zstack:plugin>
</bean>
<bean id="ConsoleProxyAgentTracker" class="org.zstack.console.ConsoleProxyAgentTracker">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.Component" />
</zstack:plugin>
</bean>
<bean id="ManagementServerConsoleProxyBackend" class="org.zstack.console.ManagementServerConsoleProxyBackend">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.Component" />
<zstack:extension interface="org.zstack.header.console.ConsoleBackend" />
<zstack:extension interface="org.zstack.header.managementnode.ManagementNodeReadyExtensionPoint" />
</zstack:plugin>
</bean>
</beans>