Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/bundles/tccl.bundle/src/main/resources/META-INF/spring/context.xml.bak')
-rw-r--r--integration-tests/bundles/tccl.bundle/src/main/resources/META-INF/spring/context.xml.bak26
1 files changed, 0 insertions, 26 deletions
diff --git a/integration-tests/bundles/tccl.bundle/src/main/resources/META-INF/spring/context.xml.bak b/integration-tests/bundles/tccl.bundle/src/main/resources/META-INF/spring/context.xml.bak
deleted file mode 100644
index d63cfa0..0000000
--- a/integration-tests/bundles/tccl.bundle/src/main/resources/META-INF/spring/context.xml.bak
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:osgi="http://www.springframework.org/schema/osgi"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi.xsd">
-
- <bean id="service"
- class="org.springframework.osgi.iandt.tccl.internal.PrivateTCCLServiceImplementation"
- lazy-init="false" />
-
- <!-- export service with unmanaged tccl -->
- <osgi:service ref="service" auto-export="interfaces" context-class-loader="unmanaged">
- <osgi:service-properties>
- <entry key="tccl" value="unmanaged"/>
- </osgi:service-properties>
- </osgi:service>
-
- <!-- export service with managed tccl -->
- <osgi:service ref="service" auto-export="interfaces" context-class-loader="service-provider">
- <osgi:service-properties>
- <entry key="tccl" value="service-provider"/>
- </osgi:service-properties>
- </osgi:service>
-
-</beans> \ No newline at end of file

Back to the top