forked from zstackio/zstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzstack.xml
More file actions
executable file
·126 lines (122 loc) · 6.85 KB
/
zstack.xml
File metadata and controls
executable file
·126 lines (122 loc) · 6.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
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/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
default-init-method="init" default-destroy-method="destory">
<context:annotation-config/>
<context:spring-configured/>
<aop:aspectj-autoproxy proxy-target-class="true"/>
<tx:annotation-driven transaction-manager="transactionManager" mode="aspectj"/>
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
<property name="locations">
<list>
<!-- Properties file name is dynamically determined by app_config.xml -->
<!-- Platform.java sets the system property 'app.properties.file' at startup -->
<value>classpath:${app.properties.file}</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="true"/>
<property name="ignoreUnresolvablePlaceholders" value="true"/>
</bean>
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="i18n/messages"></property>
<property name="defaultEncoding" value="UTF-8"></property>
<property name="alwaysUseMessageFormat" value="true"></property>
</bean>
<import resource="springConfigXml/AccountManager.xml"/>
<import resource="springConfigXml/ansibleFacade.xml"/>
<import resource="springConfigXml/ApiMediator.xml"/>
<import resource="springConfigXml/ApplianceVmFacade.xml"/>
<import resource="springConfigXml/Aspect.xml"/>
<import resource="springConfigXml/BackupStorageManager.xml"/>
<import resource="springConfigXml/CascadeFacade.xml"/>
<import resource="springConfigXml/ceph.xml"/>
<import resource="springConfigXml/vhost.xml"/>
<import resource="springConfigXml/iscsi.xml"/>
<import resource="springConfigXml/expon.xml"/>
<import resource="springConfigXml/zbs.xml"/>
<import resource="springConfigXml/cbd.xml"/>
<import resource="springConfigXml/xinfini.xml"/>
<import resource="springConfigXml/ExternalPrimaryStorage.xml"/>
<import resource="springConfigXml/ExternalBackupStorage.xml"/>
<import resource="springConfigXml/CloudBus.xml"/>
<import resource="springConfigXml/ClusterManager.xml"/>
<import resource="springConfigXml/ConfigurationManager.xml"/>
<import resource="springConfigXml/core.xml"/>
<import resource="springConfigXml/ConsoleManager.xml"/>
<import resource="springConfigXml/DatabaseFacade.xml"/>
<import resource="springConfigXml/debug.xml"/>
<import resource="springConfigXml/eip.xml"/>
<import resource="springConfigXml/encrypt.xml"/>
<import resource="springConfigXml/Error.xml"/>
<import resource="springConfigXml/flatNetworkProvider.xml"/>
<import resource="springConfigXml/gc.xml"/>
<import resource="springConfigXml/GlobalConfigFacade.xml"/>
<import resource="springConfigXml/resourceConfig.xml"/>
<import resource="springConfigXml/HostAllocatorManager.xml"/>
<import resource="springConfigXml/HostManager.xml"/>
<import resource="springConfigXml/identity.xml"/>
<import resource="springConfigXml/ImageManager.xml"/>
<import resource="springConfigXml/jmx.xml"/>
<import resource="springConfigXml/JobQueueFacade.xml"/>
<import resource="springConfigXml/jsonlabel.xml"/>
<import resource="springConfigXml/keyValueFacade.xml"/>
<import resource="springConfigXml/Kvm.xml"/>
<import resource="springConfigXml/lb.xml"/>
<import resource="springConfigXml/acl.xml"/>
<import resource="springConfigXml/LdapManagerImpl.xml"/>
<import resource="springConfigXml/localStorage.xml"/>
<import resource="springConfigXml/ManagementNodeManager.xml"/>
<import resource="springConfigXml/mediator.xml"/>
<import resource="springConfigXml/NetworkManager.xml"/>
<import resource="springConfigXml/NetworkService.xml"/>
<import resource="springConfigXml/NfsPrimaryStorage.xml"/>
<import resource="springConfigXml/PortForwarding.xml"/>
<import resource="springConfigXml/PrimaryStorageManager.xml"/>
<import resource="springConfigXml/ProgressBar.xml"/>
<import resource="springConfigXml/Progress.xml"/>
<import resource="springConfigXml/QueryFacade.xml"/>
<import resource="springConfigXml/SearchFacade.xml"/>
<import resource="springConfigXml/RESTFacade.xml"/>
<import resource="springConfigXml/SecurityGroupManager.xml"/>
<import resource="springConfigXml/SftpBackupStorage.xml"/>
<import resource="springConfigXml/sharedMountPointPrimaryStorage.xml"/>
<import resource="springConfigXml/tag.xml"/>
<import resource="springConfigXml/ThreadFacade.xml"/>
<import resource="springConfigXml/validation.xml"/>
<import resource="springConfigXml/vip.xml"/>
<import resource="springConfigXml/VirtualRouter.xml"/>
<import resource="springConfigXml/VmInstanceManager.xml"/>
<import resource="springConfigXml/VolumeManager.xml"/>
<import resource="springConfigXml/volumeSnapshot.xml"/>
<import resource="springConfigXml/ZoneManager.xml"/>
<import resource="springConfigXml/vyos.xml"/>
<import resource="springConfigXml/rest.xml"/>
<import resource="springConfigXml/eventlog.xml"/>
<import resource="springConfigXml/vxlan.xml"/>
<import resource="springConfigXml/webhook.xml"/>
<import resource="springConfigXml/externalService.xml"/>
<import resource="springConfigXml/cronJob.xml"/>
<import resource="springConfigXml/LongJobManager.xml" />
<import resource="springConfigXml/captcha.xml"/>
<import resource="springConfigXml/log.xml"/>
<import resource="springConfigXml/sdnController.xml"/>
<import resource="springConfigXml/cas.xml"/>
<import resource="springConfigXml/directoryManager.xml"/>
<import resource="springConfigXml/sshKeyPair.xml"/>
<import resource="springConfigXml/sugonSdnController.xml"/>
<import resource="springConfigXml/TfPortAllocator.xml"/>
<import resource="springConfigXml/HostNetworkManager.xml"/>
<import resource="springConfigXml/upgrade.xml"/>
<import resource="springConfigXml/plugin.xml"/>
</beans>