]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/org/argeo/slc/osgi/execution.xml
Disable trace logging
[gpl/argeo-slc.git] / org.argeo.slc.core / src / org / argeo / slc / osgi / execution.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (C) 2007-2012 Argeo GmbH Licensed under the Apache License,
3 Version 2.0 (the "License"); you may not use this file except in compliance
4 with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
5 Unless required by applicable law or agreed to in writing, software distributed
6 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
7 OR CONDITIONS OF ANY KIND, either express or implied. See the License for
8 the specific language governing permissions and limitations under the License. -->
9 <!-- Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org> Licensed under
10 the Apache License, Version 2.0 (the "License"); you may not use this file
11 except in compliance with the License. You may obtain a copy of the License
12 at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable
13 law or agreed to in writing, software distributed under the License is distributed
14 on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
15 express or implied. See the License for the specific language governing permissions
16 and limitations under the License. -->
17
18 <beans xmlns:osgi="http://www.springframework.org/schema/osgi"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans"
20 xsi:schemaLocation="http://www.springframework.org/schema/osgi
21 http://www.springframework.org/schema/osgi/spring-osgi-1.1.xsd
22 http://www.springframework.org/schema/beans
23 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
24
25 <osgi:service interface="org.argeo.slc.execution.ExecutionContext"
26 ref="executionContext" />
27 <osgi:service
28 interface="org.argeo.slc.execution.ExecutionFlowDescriptorConverter"
29 ref="executionFlowDescriptorConverter" />
30
31 <osgi:reference id="callbackHandler"
32 interface="javax.security.auth.callback.CallbackHandler" cardinality="0..1" />
33
34 <bean class="org.argeo.slc.osgi.MultipleServiceExporterPostProcessor">
35 <property name="interfaces">
36 <list>
37 <value><![CDATA[org.argeo.slc.execution.ExecutionFlow]]></value>
38 </list>
39 </property>
40 <property name="bundleContext" ref="bundleContext" />
41 </bean>
42
43 <bean id="osgiExecutionResources" class="org.argeo.slc.osgi.OsgiExecutionResources">
44 <property name="executionContext" ref="executionContext" />
45 </bean>
46 </beans>