forked from zstackio/zstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fusionstor.xml
executable file
·47 lines (42 loc) · 2.73 KB
/
fusionstor.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
<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="FusionstorBackupStorageFactory" class="org.zstack.storage.fusionstor.backup.FusionstorBackupStorageFactory">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.storage.backup.BackupStorageFactory" />
<zstack:extension interface="org.zstack.storage.fusionstor.FusionstorCapacityUpdateExtensionPoint" />
<zstack:extension interface="org.zstack.header.Component" />
</zstack:plugin>
</bean>
<bean id="FusionstorPrimaryStorageFactory" class="org.zstack.storage.fusionstor.primary.FusionstorPrimaryStorageFactory">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.storage.primary.PrimaryStorageFactory" />
<zstack:extension interface="org.zstack.storage.fusionstor.FusionstorCapacityUpdateExtensionPoint" />
<zstack:extension interface="org.zstack.kvm.KVMStartVmExtensionPoint" />
<zstack:extension interface="org.zstack.kvm.KVMAttachVolumeExtensionPoint" />
<zstack:extension interface="org.zstack.kvm.KVMDetachVolumeExtensionPoint" />
<zstack:extension interface="org.zstack.header.storage.snapshot.CreateTemplateFromVolumeSnapshotExtensionPoint" />
<zstack:extension interface="org.zstack.kvm.KvmSetupSelfFencerExtensionPoint" />
<zstack:extension interface="org.zstack.header.Component" />
</zstack:plugin>
</bean>
<bean id="FusionstorPrimaryStorageVmMigrationExtension" class="org.zstack.storage.fusionstor.primary.FusionstorPrimaryStorageVmMigrationExtension">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.vm.VmInstanceMigrateExtensionPoint" />
</zstack:plugin>
</bean>
<bean id="FusionstorApiInterceptor" class="org.zstack.storage.fusionstor.FusionstorApiInterceptor">
<zstack:plugin>
<zstack:extension interface="org.zstack.header.apimediator.ApiMessageInterceptor" />
</zstack:plugin>
</bean>
</beans>