]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/src/main/resources/org/argeo/slc/web/ajaxplorer/svn/spring.xml
5ea651f7a6710a60ddb790f9b6ac6ffaeaccac3a
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / src / main / resources / org / argeo / slc / web / ajaxplorer / svn / spring.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4 Copyright (C) 2007-2012 Mathieu Baudier
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 -->
19 <beans xmlns="http://www.springframework.org/schema/beans"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
21 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
22 default-lazy-init="true">
23
24 <import resource="classpath:/org/argeo/slc/web/ajaxplorer/file/spring.xml" />
25
26 <bean id="driver.svn.template" class="org.argeo.slc.web.ajaxplorer.svn.SvnDriver"
27 init-method="init" abstract="true">
28 <property name="actions">
29 <map>
30 <entry key="ls" value-ref="action.svn.ls" />
31 <entry key="download" value-ref="action.svn.download" />
32 <entry key="image_proxy" value-ref="action.svn.image_proxy" />
33 <entry key="upload" value-ref="action.svn.upload" />
34 <entry key="mkdir" value-ref="action.svn.mkdir" />
35 <entry key="delete" value-ref="action.svn.delete" />
36 <entry key="svnlog" value-ref="action.svn.svnlog" />
37 <entry key="svndownload" value-ref="action.svn.svndownload" />
38 </map>
39 </property>
40 </bean>
41
42 <!-- ACTIONS SVN -->
43 <bean id="action.svn.ls" class="org.argeo.slc.web.ajaxplorer.svn.SvnLsAction" />
44
45 <bean id="action.svn.upload" class="org.argeo.slc.web.ajaxplorer.svn.SvnUploadAction" />
46
47 <bean id="action.svn.mkdir" class="org.argeo.slc.web.ajaxplorer.svn.SvnMkdirAction" />
48
49 <bean id="action.svn.delete" class="org.argeo.slc.web.ajaxplorer.svn.SvnDeleteAction" />
50
51 <bean id="action.svn.svnlog" class="org.argeo.slc.web.ajaxplorer.svn.SvnLogAction" />
52
53 <bean id="action.svn.download" class="org.argeo.slc.web.ajaxplorer.file.FileDownloadAction" />
54
55 <bean id="action.svn.image_proxy" class="org.argeo.slc.web.ajaxplorer.file.FileImageProxyAction" />
56
57 <bean id="action.svn.svndownload" class="org.argeo.slc.web.ajaxplorer.svn.SvnDownloadAction" />
58
59
60 </beans>