cdmlib / cdmlib-services / src / main / resources / eu / etaxonomy / cdm / httpInvokerServices.xml @ c2cac51d
History | View | Annotate | Download (14.9 KB)
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
---|---|
2 |
<beans xmlns="http://www.springframework.org/schema/beans" |
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" |
4 |
xmlns:tx="http://www.springframework.org/schema/tx" |
5 |
xsi:schemaLocation="http://www.springframework.org/schema/beans |
6 |
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
7 |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
|
8 |
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
|
9 |
"> |
10 |
|
11 |
<!-- The beans for the implementation classes are declared with the @Service
|
12 |
annotation. See ClassificationServiceImpl for an example. -->
|
13 |
|
14 |
<bean id="httpAgentService" |
15 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
16 |
<property name="service"> |
17 |
<ref bean="agentServiceImpl" /> |
18 |
</property>
|
19 |
<property name="serviceInterface"> |
20 |
<value>eu.etaxonomy.cdm.api.service.IAgentService</value> |
21 |
</property>
|
22 |
</bean>
|
23 |
|
24 |
<bean id="httpAnnotationService" |
25 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
26 |
<property name="service"> |
27 |
<ref bean="annotationService" /> |
28 |
</property>
|
29 |
<property name="serviceInterface"> |
30 |
<value>eu.etaxonomy.cdm.api.service.IAnnotationService</value> |
31 |
</property>
|
32 |
</bean>
|
33 |
|
34 |
<bean id="httpAuditEventService" |
35 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
36 |
<property name="service"> |
37 |
<ref bean="auditEventService" /> |
38 |
</property>
|
39 |
<property name="serviceInterface"> |
40 |
<value>eu.etaxonomy.cdm.api.service.IAuditEventService</value> |
41 |
</property>
|
42 |
</bean>
|
43 |
|
44 |
<bean id="httpClassificationService" |
45 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
46 |
<property name="service"> |
47 |
<ref bean="classificationServiceImpl" /> |
48 |
</property>
|
49 |
<property name="serviceInterface"> |
50 |
<value>eu.etaxonomy.cdm.api.service.IClassificationService</value> |
51 |
</property>
|
52 |
</bean>
|
53 |
|
54 |
<bean id="httpCollectionService" |
55 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
56 |
<property name="service"> |
57 |
<ref bean="collectionServiceImpl" /> |
58 |
</property>
|
59 |
<property name="serviceInterface"> |
60 |
<value>eu.etaxonomy.cdm.api.service.ICollectionService</value> |
61 |
</property>
|
62 |
</bean>
|
63 |
|
64 |
<bean id="httpCommonService" |
65 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
66 |
<property name="service"> |
67 |
<ref bean="commonServiceImpl" /> |
68 |
</property>
|
69 |
<property name="serviceInterface"> |
70 |
<value>eu.etaxonomy.cdm.api.service.ICommonService</value> |
71 |
</property>
|
72 |
</bean>
|
73 |
|
74 |
<bean id="httpDescriptionService" |
75 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
76 |
<property name="service"> |
77 |
<ref bean="descriptionServiceImpl" /> |
78 |
</property>
|
79 |
<property name="serviceInterface"> |
80 |
<value>eu.etaxonomy.cdm.api.service.IDescriptionService</value> |
81 |
</property>
|
82 |
</bean>
|
83 |
|
84 |
<bean id="httpFeatureNodeService" |
85 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
86 |
<property name="service"> |
87 |
<ref bean="featureNodeServiceImpl" /> |
88 |
</property>
|
89 |
<property name="serviceInterface"> |
90 |
<value>eu.etaxonomy.cdm.api.service.IFeatureNodeService</value> |
91 |
</property>
|
92 |
</bean>
|
93 |
|
94 |
<bean id="httpFeatureTreeService" |
95 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
96 |
<property name="service"> |
97 |
<ref bean="featureTreeServiceImpl" /> |
98 |
</property>
|
99 |
<property name="serviceInterface"> |
100 |
<value>eu.etaxonomy.cdm.api.service.IFeatureTreeService</value> |
101 |
</property>
|
102 |
</bean>
|
103 |
|
104 |
<bean id="httpGroupService" |
105 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
106 |
<property name="service"> |
107 |
<ref bean="groupServiceImpl" /> |
108 |
</property>
|
109 |
<property name="serviceInterface"> |
110 |
<value>eu.etaxonomy.cdm.api.service.IGroupService</value> |
111 |
</property>
|
112 |
</bean>
|
113 |
|
114 |
<bean id="httpIdentificationKeyService" |
115 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
116 |
<property name="service"> |
117 |
<ref bean="identificationKeyServiceImpl" /> |
118 |
</property>
|
119 |
<property name="serviceInterface"> |
120 |
<value>eu.etaxonomy.cdm.api.service.IIdentificationKeyService
|
121 |
</value>
|
122 |
</property>
|
123 |
</bean>
|
124 |
|
125 |
<bean id="httpLocationService" |
126 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
127 |
<property name="service"> |
128 |
<ref bean="locationServiceImpl" /> |
129 |
</property>
|
130 |
<property name="serviceInterface"> |
131 |
<value>eu.etaxonomy.cdm.api.service.ILocationService</value> |
132 |
</property>
|
133 |
</bean>
|
134 |
|
135 |
<bean id="httpMarkerService" |
136 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
137 |
<property name="service"> |
138 |
<ref bean="markerServiceImpl" /> |
139 |
</property>
|
140 |
<property name="serviceInterface"> |
141 |
<value>eu.etaxonomy.cdm.api.service.IMarkerService</value> |
142 |
</property>
|
143 |
</bean>
|
144 |
|
145 |
<bean id="httpMediaService" |
146 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
147 |
<property name="service"> |
148 |
<ref bean="mediaServiceImpl" /> |
149 |
</property>
|
150 |
<property name="serviceInterface"> |
151 |
<value>eu.etaxonomy.cdm.api.service.IMediaService</value> |
152 |
</property>
|
153 |
</bean>
|
154 |
|
155 |
<bean id="httpMetadataService" |
156 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
157 |
<property name="service"> |
158 |
<ref bean="metadataServiceImpl" /> |
159 |
</property>
|
160 |
<property name="serviceInterface"> |
161 |
<value>eu.etaxonomy.cdm.api.service.IMetadataService</value> |
162 |
</property>
|
163 |
</bean>
|
164 |
|
165 |
<bean id="httpNameService" |
166 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
167 |
<property name="service"> |
168 |
<ref bean="nameServiceImpl" /> |
169 |
</property>
|
170 |
<property name="serviceInterface"> |
171 |
<value>eu.etaxonomy.cdm.api.service.INameService</value> |
172 |
</property>
|
173 |
</bean>
|
174 |
|
175 |
<bean id="httpOccurrenceService" |
176 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
177 |
<property name="service"> |
178 |
<ref bean="occurrenceServiceImpl" /> |
179 |
</property>
|
180 |
<property name="serviceInterface"> |
181 |
<value>eu.etaxonomy.cdm.api.service.IOccurrenceService</value> |
182 |
</property>
|
183 |
</bean>
|
184 |
|
185 |
<bean id="httpPolytomousKeyNodeService" |
186 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
187 |
<property name="service"> |
188 |
<ref bean="polytomousKeyNodeServiceImpl" /> |
189 |
</property>
|
190 |
<property name="serviceInterface"> |
191 |
<value>eu.etaxonomy.cdm.api.service.IPolytomousKeyNodeService
|
192 |
</value>
|
193 |
</property>
|
194 |
</bean>
|
195 |
|
196 |
<bean id="httpPolytomousKeyService" |
197 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
198 |
<property name="service"> |
199 |
<ref bean="polytomousKeyServiceImpl" /> |
200 |
</property>
|
201 |
<property name="serviceInterface"> |
202 |
<value>eu.etaxonomy.cdm.api.service.IPolytomousKeyService</value> |
203 |
</property>
|
204 |
</bean>
|
205 |
|
206 |
<bean id="httpProgressMonitorService" |
207 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
208 |
<property name="service"> |
209 |
<ref bean="progressMonitorServiceImpl" /> |
210 |
</property>
|
211 |
<property name="serviceInterface"> |
212 |
<value>eu.etaxonomy.cdm.api.service.IProgressMonitorService</value> |
213 |
</property>
|
214 |
</bean>
|
215 |
|
216 |
<bean id="httpReferenceService" |
217 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
218 |
<property name="service"> |
219 |
<ref bean="referenceServiceImpl" /> |
220 |
</property>
|
221 |
<property name="serviceInterface"> |
222 |
<value>eu.etaxonomy.cdm.api.service.IReferenceService</value> |
223 |
</property>
|
224 |
</bean>
|
225 |
|
226 |
<bean id="httpBaseService" |
227 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
228 |
<property name="service"> |
229 |
<ref bean="serviceImpl" /> |
230 |
</property>
|
231 |
<property name="serviceInterface"> |
232 |
<value>eu.etaxonomy.cdm.api.service.IService</value> |
233 |
</property>
|
234 |
</bean>
|
235 |
|
236 |
<bean id="httpTaxonNodeService" |
237 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
238 |
<property name="service"> |
239 |
<ref bean="taxonNodeServiceImpl" /> |
240 |
</property>
|
241 |
<property name="serviceInterface"> |
242 |
<value>eu.etaxonomy.cdm.api.service.ITaxonNodeService</value> |
243 |
</property>
|
244 |
</bean>
|
245 |
|
246 |
<bean id="httpTaxonService" |
247 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
248 |
<property name="service"> |
249 |
<ref bean="taxonServiceImpl" /> |
250 |
</property>
|
251 |
<property name="serviceInterface"> |
252 |
<value>eu.etaxonomy.cdm.api.service.ITaxonService</value> |
253 |
</property>
|
254 |
</bean>
|
255 |
|
256 |
<bean id="httpTermService" |
257 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
258 |
<property name="service"> |
259 |
<ref bean="termServiceImpl" /> |
260 |
</property>
|
261 |
<property name="serviceInterface"> |
262 |
<value>eu.etaxonomy.cdm.api.service.ITermService</value> |
263 |
</property>
|
264 |
</bean>
|
265 |
|
266 |
<bean id="httpEntityValidationService" |
267 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
268 |
<property name="service"> |
269 |
<ref bean="entityValidationServiceImpl" /> |
270 |
</property>
|
271 |
<property name="serviceInterface"> |
272 |
<value>eu.etaxonomy.cdm.api.service.IEntityValidationService
|
273 |
</value>
|
274 |
</property>
|
275 |
</bean>
|
276 |
|
277 |
<bean id="httpEntityConstraintViolationService" |
278 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
279 |
<property name="service"> |
280 |
<ref bean="entityConstraintViolationServiceImpl" /> |
281 |
</property>
|
282 |
<property name="serviceInterface"> |
283 |
<value>eu.etaxonomy.cdm.api.service.IEntityConstraintViolationService
|
284 |
</value>
|
285 |
</property>
|
286 |
</bean>
|
287 |
|
288 |
<bean id="httpUserService" |
289 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
290 |
<property name="service"> |
291 |
<ref bean="userService" /> |
292 |
</property>
|
293 |
<property name="serviceInterface"> |
294 |
<value>eu.etaxonomy.cdm.api.service.IUserService</value> |
295 |
</property>
|
296 |
</bean>
|
297 |
|
298 |
<bean id="httpVocabularyService" |
299 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
300 |
<property name="service"> |
301 |
<ref bean="vocabularyServiceImpl" /> |
302 |
</property>
|
303 |
<property name="serviceInterface"> |
304 |
<value>eu.etaxonomy.cdm.api.service.IVocabularyService</value> |
305 |
</property>
|
306 |
</bean>
|
307 |
|
308 |
<bean id="httpWorkingService" |
309 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
310 |
<property name="service"> |
311 |
<ref bean="workingSetService" /> |
312 |
</property>
|
313 |
<property name="serviceInterface"> |
314 |
<value>eu.etaxonomy.cdm.api.service.IWorkingSetService</value> |
315 |
</property>
|
316 |
</bean>
|
317 |
|
318 |
<bean id="httpGrantedAuthorityService" |
319 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
320 |
<property name="service"> |
321 |
<ref bean="grantedAuthorityServiceImpl" /> |
322 |
</property>
|
323 |
<property name="serviceInterface"> |
324 |
<value>eu.etaxonomy.cdm.api.service.IGrantedAuthorityService
|
325 |
</value>
|
326 |
</property>
|
327 |
</bean>
|
328 |
|
329 |
<bean id="httpDatabaseService" |
330 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
331 |
<property name="service"> |
332 |
<ref bean="databaseServiceHibernateImpl" /> |
333 |
</property>
|
334 |
<property name="serviceInterface"> |
335 |
<value>eu.etaxonomy.cdm.api.service.IDatabaseService</value> |
336 |
</property>
|
337 |
</bean>
|
338 |
|
339 |
<bean id="httpLsidAuthorityService" |
340 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
341 |
<property name="service"> |
342 |
<ref bean="lsidAuthorityService" /> |
343 |
</property>
|
344 |
<property name="serviceInterface"> |
345 |
<value>eu.etaxonomy.cdm.api.service.lsid.LSIDAuthorityService
|
346 |
</value>
|
347 |
</property>
|
348 |
</bean>
|
349 |
|
350 |
<bean id="httpLsidMetadataService" |
351 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
352 |
<property name="service"> |
353 |
<ref bean="lsidMetadataService" /> |
354 |
</property>
|
355 |
<property name="serviceInterface"> |
356 |
<value>eu.etaxonomy.cdm.api.service.lsid.LSIDMetadataService
|
357 |
</value>
|
358 |
</property>
|
359 |
</bean>
|
360 |
|
361 |
<bean id="httpLsidDataService" |
362 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
363 |
<property name="service"> |
364 |
<ref bean="lsidDataService" /> |
365 |
</property>
|
366 |
<property name="serviceInterface"> |
367 |
<value>eu.etaxonomy.cdm.api.service.lsid.LSIDDataService</value> |
368 |
</property>
|
369 |
</bean>
|
370 |
|
371 |
<bean id="httpAuthenticationManager" |
372 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
373 |
<property name="service"> |
374 |
<ref bean="authenticationManager" /> |
375 |
</property>
|
376 |
<property name="serviceInterface"> |
377 |
<value>org.springframework.security.authentication.AuthenticationManager
|
378 |
</value>
|
379 |
</property>
|
380 |
</bean>
|
381 |
|
382 |
<bean id="httpPrimerService" |
383 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
384 |
<property name="service"> |
385 |
<ref bean="primerServiceImpl" /> |
386 |
</property>
|
387 |
<property name="serviceInterface"> |
388 |
<value>eu.etaxonomy.cdm.api.service.molecular.IPrimerService
|
389 |
</value>
|
390 |
</property>
|
391 |
</bean>
|
392 |
|
393 |
<bean id="httpAmplificationService" |
394 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
395 |
<property name="service"> |
396 |
<ref bean="amplificationServiceImpl" /> |
397 |
</property>
|
398 |
<property name="serviceInterface"> |
399 |
<value>eu.etaxonomy.cdm.api.service.molecular.IAmplificationService
|
400 |
</value>
|
401 |
</property>
|
402 |
</bean>
|
403 |
|
404 |
<bean id="httpSequenceService" |
405 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
406 |
<property name="service"> |
407 |
<ref bean="sequenceServiceImpl" /> |
408 |
</property>
|
409 |
<property name="serviceInterface"> |
410 |
<value>eu.etaxonomy.cdm.api.service.molecular.ISequenceService
|
411 |
</value>
|
412 |
</property>
|
413 |
</bean>
|
414 |
|
415 |
<bean id="httpIOService" |
416 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
417 |
<property name="service"> |
418 |
<ref bean="IOServiceImpl" /> |
419 |
</property>
|
420 |
<property name="serviceInterface"> |
421 |
<value>eu.etaxonomy.cdm.io.service.IIOService
|
422 |
</value>
|
423 |
</property>
|
424 |
</bean>
|
425 |
|
426 |
<bean id="httpTestService" |
427 |
class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> |
428 |
<property name="service"> |
429 |
<ref bean="testServiceImpl" /> |
430 |
</property>
|
431 |
<property name="serviceInterface"> |
432 |
<value>eu.etaxonomy.cdm.api.service.ITestService
|
433 |
</value>
|
434 |
</property>
|
435 |
</bean>
|
436 |
|
437 |
</beans>
|