First cut of the AVM filesystem driver for CIFS/FTP support.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4388 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gary Spencer
2006-11-17 14:49:51 +00:00
parent 992bd82b9e
commit 10b48c7f2a
6 changed files with 2268 additions and 0 deletions

View File

@@ -43,6 +43,9 @@
<property name="diskInterface">
<ref bean="contentDiskDriver"/>
</property>
<property name="avmDiskInterface">
<ref bean="avmDiskDriver"/>
</property>
</bean>
<!-- Filesystem Interface -->
@@ -70,4 +73,14 @@
<property name="allowWrites"><value>${server.transaction.allow-writes}</value></property>
</bean>
<!-- AVM Filesystem Interface -->
<bean id="avmDiskDriver" class="org.alfresco.filesys.avm.AVMDiskDriver" >
<property name="avmService"><ref bean="avmService" /></property>
<property name="transactionService"><ref bean="transactionComponent" /></property>
<property name="authenticationComponent"><ref bean="authenticationComponent"/></property>
<property name="authenticationService"><ref bean="authenticationService"/></property>
<property name="mimetypeService"><ref bean="mimetypeService" /></property>
<property name="serviceRegistry"><ref bean="ServiceRegistry"/></property>
</bean>
</beans>