Project

General

Profile

Download (15.9 KB) Statistics
| Branch: | Tag: | Revision:
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-4.0.xsd
7
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
8
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.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
  
75
  <bean id="httpDescriptionService"
76
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
77
    <property name="service">
78
      <ref bean="descriptionServiceImpl" />
79
    </property>
80
    <property name="serviceInterface">
81
      <value>eu.etaxonomy.cdm.api.service.IDescriptionService</value>
82
    </property>
83
  </bean>
84

    
85
  <bean id="httpFeatureNodeService"
86
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
87
    <property name="service">
88
      <ref bean="featureNodeServiceImpl" />
89
    </property>
90
    <property name="serviceInterface">
91
      <value>eu.etaxonomy.cdm.api.service.IFeatureNodeService</value>
92
    </property>
93
  </bean>
94

    
95
  <bean id="httpFeatureTreeService"
96
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
97
    <property name="service">
98
      <ref bean="featureTreeServiceImpl" />
99
    </property>
100
    <property name="serviceInterface">
101
      <value>eu.etaxonomy.cdm.api.service.IFeatureTreeService</value>
102
    </property>
103
  </bean>
104

    
105
  <bean id="httpGroupService"
106
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
107
    <property name="service">
108
      <ref bean="groupServiceImpl" />
109
    </property>
110
    <property name="serviceInterface">
111
      <value>eu.etaxonomy.cdm.api.service.IGroupService</value>
112
    </property>
113
  </bean>
114

    
115
  <bean id="httpIdentificationKeyService"
116
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
117
    <property name="service">
118
      <ref bean="identificationKeyServiceImpl" />
119
    </property>
120
    <property name="serviceInterface">
121
      <value>eu.etaxonomy.cdm.api.service.IIdentificationKeyService
122
      </value>
123
    </property>
124
  </bean>
125

    
126
  <bean id="httpLocationService"
127
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
128
    <property name="service">
129
      <ref bean="locationServiceImpl" />
130
    </property>
131
    <property name="serviceInterface">
132
      <value>eu.etaxonomy.cdm.api.service.ILocationService</value>
133
    </property>
134
  </bean>
135

    
136
  <bean id="httpMarkerService"
137
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
138
    <property name="service">
139
      <ref bean="markerServiceImpl" />
140
    </property>
141
    <property name="serviceInterface">
142
      <value>eu.etaxonomy.cdm.api.service.IMarkerService</value>
143
    </property>
144
  </bean>
145

    
146
  <bean id="httpMediaService"
147
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
148
    <property name="service">
149
      <ref bean="mediaServiceImpl" />
150
    </property>
151
    <property name="serviceInterface">
152
      <value>eu.etaxonomy.cdm.api.service.IMediaService</value>
153
    </property>
154
  </bean>
155
  
156
    <bean id="httpMetadataService"
157
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
158
    <property name="service">
159
      <ref bean="metadataServiceImpl" />
160
    </property>
161
    <property name="serviceInterface">
162
      <value>eu.etaxonomy.cdm.api.service.IMetadataService</value>
163
    </property>
164
  </bean>
165

    
166
  <bean id="httpNameService"
167
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
168
    <property name="service">
169
      <ref bean="nameServiceImpl" />
170
    </property>
171
    <property name="serviceInterface">
172
      <value>eu.etaxonomy.cdm.api.service.INameService</value>
173
    </property>
174
  </bean>
175

    
176
  <bean id="httpOccurrenceService"
177
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
178
    <property name="service">
179
      <ref bean="occurrenceServiceImpl" />
180
    </property>
181
    <property name="serviceInterface">
182
      <value>eu.etaxonomy.cdm.api.service.IOccurrenceService</value>
183
    </property>
184
  </bean>
185

    
186
  <bean id="httpPolytomousKeyNodeService"
187
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
188
    <property name="service">
189
      <ref bean="polytomousKeyNodeServiceImpl" />
190
    </property>
191
    <property name="serviceInterface">
192
      <value>eu.etaxonomy.cdm.api.service.IPolytomousKeyNodeService
193
      </value>
194
    </property>
195
  </bean>
196

    
197
  <bean id="httpPolytomousKeyService"
198
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
199
    <property name="service">
200
      <ref bean="polytomousKeyServiceImpl" />
201
    </property>
202
    <property name="serviceInterface">
203
      <value>eu.etaxonomy.cdm.api.service.IPolytomousKeyService</value>
204
    </property>
205
  </bean>
206
  
207
  <bean id="httpPreferenceService"
208
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
209
    <property name="service">
210
      <ref bean="preferenceServiceImpl" />
211
    </property>
212
    <property name="serviceInterface">
213
      <value>eu.etaxonomy.cdm.api.service.IPreferenceService</value>
214
    </property>
215
  </bean>
216
  
217
  <bean id="httpProgressMonitorService"
218
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
219
    <property name="service">
220
      <ref bean="progressMonitorServiceImpl" />
221
    </property>
222
    <property name="serviceInterface">
223
      <value>eu.etaxonomy.cdm.api.service.IProgressMonitorService</value>
224
    </property>
225
  </bean>
226

    
227
  <bean id="httpReferenceService"
228
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
229
    <property name="service">
230
      <ref bean="referenceServiceImpl" />
231
    </property>
232
    <property name="serviceInterface">
233
      <value>eu.etaxonomy.cdm.api.service.IReferenceService</value>
234
    </property>
235
  </bean>
236

    
237
  <bean id="httpBaseService"
238
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
239
    <property name="service">
240
      <ref bean="serviceImpl" />
241
    </property>
242
    <property name="serviceInterface">
243
      <value>eu.etaxonomy.cdm.api.service.IService</value>
244
    </property>
245
  </bean>
246

    
247
  <bean id="httpTaxonNodeService"
248
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
249
    <property name="service">
250
      <ref bean="taxonNodeServiceImpl" />
251
    </property>
252
    <property name="serviceInterface">
253
      <value>eu.etaxonomy.cdm.api.service.ITaxonNodeService</value>
254
    </property>
255
  </bean>
256

    
257
  <bean id="httpTaxonService"
258
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
259
    <property name="service">
260
      <ref bean="taxonServiceImpl" />
261
    </property>
262
    <property name="serviceInterface">
263
      <value>eu.etaxonomy.cdm.api.service.ITaxonService</value>
264
    </property>
265
  </bean>
266

    
267
  <bean id="httpTermService"
268
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
269
    <property name="service">
270
      <ref bean="termServiceImpl" />
271
    </property>
272
    <property name="serviceInterface">
273
      <value>eu.etaxonomy.cdm.api.service.ITermService</value>
274
    </property>
275
  </bean>
276
  
277
   <bean id="httpRightsService"
278
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
279
    <property name="service">
280
      <ref bean="rightsServiceImpl" />
281
    </property>
282
    <property name="serviceInterface">
283
      <value>eu.etaxonomy.cdm.api.service.IRightsService</value>
284
    </property>
285
  </bean>
286

    
287
  <bean id="httpEntityValidationService"
288
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
289
    <property name="service">
290
      <ref bean="entityValidationServiceImpl" />
291
    </property>
292
    <property name="serviceInterface">
293
      <value>eu.etaxonomy.cdm.api.service.IEntityValidationService
294
      </value>
295
    </property>
296
  </bean>
297

    
298
  <bean id="httpEntityConstraintViolationService"
299
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
300
    <property name="service">
301
      <ref bean="entityConstraintViolationServiceImpl" />
302
    </property>
303
    <property name="serviceInterface">
304
      <value>eu.etaxonomy.cdm.api.service.IEntityConstraintViolationService
305
      </value>
306
    </property>
307
  </bean>
308

    
309
  <bean id="httpUserService"
310
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
311
    <property name="service">
312
      <ref bean="userService" />
313
    </property>
314
    <property name="serviceInterface">
315
      <value>eu.etaxonomy.cdm.api.service.IUserService</value>
316
    </property>
317
  </bean>
318

    
319
  <bean id="httpVocabularyService"
320
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
321
    <property name="service">
322
      <ref bean="vocabularyServiceImpl" />
323
    </property>
324
    <property name="serviceInterface">
325
      <value>eu.etaxonomy.cdm.api.service.IVocabularyService</value>
326
    </property>
327
  </bean>
328

    
329
  <bean id="httpWorkingService"
330
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
331
    <property name="service">
332
      <ref bean="workingSetService" />
333
    </property>
334
    <property name="serviceInterface">
335
      <value>eu.etaxonomy.cdm.api.service.IWorkingSetService</value>
336
    </property>
337
  </bean>
338

    
339
  <bean id="httpGrantedAuthorityService"
340
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
341
    <property name="service">
342
      <ref bean="grantedAuthorityServiceImpl" />
343
    </property>
344
    <property name="serviceInterface">
345
      <value>eu.etaxonomy.cdm.api.service.IGrantedAuthorityService
346
      </value>
347
    </property>
348
  </bean>
349

    
350
  <bean id="httpDatabaseService"
351
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
352
    <property name="service">
353
      <ref bean="databaseServiceHibernateImpl" />
354
    </property>
355
    <property name="serviceInterface">
356
      <value>eu.etaxonomy.cdm.api.service.IDatabaseService</value>
357
    </property>
358
  </bean>
359

    
360
  <bean id="httpLsidAuthorityService"
361
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
362
    <property name="service">
363
      <ref bean="lsidAuthorityService" />
364
    </property>
365
    <property name="serviceInterface">
366
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDAuthorityService
367
      </value>
368
    </property>
369
  </bean>
370

    
371
  <bean id="httpLsidMetadataService"
372
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
373
    <property name="service">
374
      <ref bean="lsidMetadataService" />
375
    </property>
376
    <property name="serviceInterface">
377
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDMetadataService
378
      </value>
379
    </property>
380
  </bean>
381

    
382
  <bean id="httpLsidDataService"
383
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
384
    <property name="service">
385
      <ref bean="lsidDataService" />
386
    </property>
387
    <property name="serviceInterface">
388
      <value>eu.etaxonomy.cdm.api.service.lsid.LSIDDataService</value>
389
    </property>
390
  </bean>
391

    
392
  <bean id="httpAuthenticationManager"
393
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
394
    <property name="service">
395
      <ref bean="authenticationManager" />
396
    </property>
397
    <property name="serviceInterface">
398
      <value>org.springframework.security.authentication.AuthenticationManager
399
      </value>
400
    </property>
401
  </bean>
402

    
403
  <bean id="httpPrimerService"
404
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
405
    <property name="service">
406
      <ref bean="primerServiceImpl" />
407
    </property>
408
    <property name="serviceInterface">
409
      <value>eu.etaxonomy.cdm.api.service.molecular.IPrimerService
410
      </value>
411
    </property>
412
  </bean>
413
  
414
  <bean id="httpAmplificationService"
415
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
416
    <property name="service">
417
      <ref bean="amplificationServiceImpl" />
418
    </property>
419
    <property name="serviceInterface">
420
      <value>eu.etaxonomy.cdm.api.service.molecular.IAmplificationService
421
      </value>
422
    </property>
423
  </bean>
424
  
425
  <bean id="httpSequenceService"
426
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
427
    <property name="service">
428
      <ref bean="sequenceServiceImpl" />
429
    </property>
430
    <property name="serviceInterface">
431
      <value>eu.etaxonomy.cdm.api.service.molecular.ISequenceService
432
      </value>
433
    </property>
434
  </bean>
435

    
436
  <bean id="httpEventBaseService"
437
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
438
    <property name="service">
439
      <ref bean="eventBaseServiceImpl" />
440
    </property>
441
    <property name="serviceInterface">
442
      <value>eu.etaxonomy.cdm.api.service.IEventBaseService
443
      </value>
444
    </property>
445
  </bean>
446
  
447
  <bean id="httpIOService"
448
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
449
    <property name="service">
450
      <ref bean="IOServiceImpl" />
451
    </property>
452
    <property name="serviceInterface">
453
      <value>eu.etaxonomy.cdm.io.service.IIOService
454
      </value>
455
    </property>
456
  </bean>
457
  
458
   <bean id="httpTestService"
459
    class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
460
    <property name="service">
461
      <ref bean="testServiceImpl" />
462
    </property>
463
    <property name="serviceInterface">
464
      <value>eu.etaxonomy.cdm.api.service.ITestService
465
      </value>
466
    </property>
467
  </bean>
468
</beans>
(2-2/7)