blob: c6e90f0422615a2089a7c9f7b4e1a38b44b3b67b [file] [log] [blame]
Felix Meschberger8c64e852009-07-28 13:48:28 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<components xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0">
21
22 <!-- component ignores configuration -->
23 <scr:component name="SimpleComponent.configuration.ignore"
24 enabled="false"
25 configuration-policy="ignore">
26 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000027 <property name="service.pid" value="SimpleComponent.configuration.ignore" />
Felix Meschberger8c64e852009-07-28 13:48:28 +000028 </scr:component>
29
30 <!-- component takes configuration as available -->
31 <scr:component name="SimpleComponent.configuration.optional"
32 enabled="false"
33 configuration-policy="optional" >
34 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000035 <property name="service.pid" value="SimpleComponent.configuration.optional" />
Felix Meschberger8c64e852009-07-28 13:48:28 +000036 </scr:component>
37
38 <!-- component requires configuration -->
39 <scr:component name="SimpleComponent.configuration.require"
40 enabled="false"
41 configuration-policy="require" >
42 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000043 <property name="service.pid" value="SimpleComponent.configuration.require" />
Felix Meschberger8c64e852009-07-28 13:48:28 +000044 </scr:component>
45
46 <!-- component dynamically updates configuration -->
47 <scr:component name="DynamicConfigurationComponent"
48 enabled="false" modified="configure">
49 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000050 <property name="service.pid" value="DynamicConfigurationComponent" />
Felix Meschberger8c64e852009-07-28 13:48:28 +000051 </scr:component>
52
53 <!-- component instances created by factory configuration -->
54 <scr:component name="FactoryConfigurationComponent"
55 enabled="false"
56 configuration-policy="require" >
57 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000058 <property name="service.pid" value="FactoryConfigurationComponent" />
Felix Meschberger8c64e852009-07-28 13:48:28 +000059 </scr:component>
Felix Meschbergerdcb192f2009-07-31 14:44:12 +000060
Felix Meschbergerd961cbf2009-10-29 14:44:54 +000061 <!-- component is a simple service to verify non-use of private props -->
Felix Meschbergerdcb192f2009-07-31 14:44:12 +000062 <scr:component name="ServiceComponent"
63 enabled="false" immediate="true"
64 configuration-policy="ignore" >
65 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
Felix Meschberger7e572cc2009-08-03 19:16:00 +000066 <property name="service.pid" value="ServiceComponent" />
Felix Meschbergerdcb192f2009-07-31 14:44:12 +000067 <property name="prop.public" value="required" />
68 <property name=".prop.private" value="private" />
69 <service>
70 <provide interface="java.lang.Object" />
71 </service>
72 </scr:component>
73
Felix Meschbergerd961cbf2009-10-29 14:44:54 +000074 <!-- component is a simple service to verify deactivation when not being used any longer -->
75 <scr:component name="DelayedServiceComponent"
76 enabled="false" immediate="false"
77 configuration-policy="ignore" >
78 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
79 <property name="service.pid" value="ServiceComponent" />
80 <service>
81 <provide interface="java.lang.Object" />
82 </service>
83 </scr:component>
84
Felix Meschbergerf4ae4e42009-08-21 11:52:16 +000085 <!-- Component Factory Instances -->
86 <scr:component name="factory.component"
87 enabled="false"
88 factory="factory.component.factory" >
89 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
90 </scr:component>
Felix Meschberger2e8a24d2009-12-14 10:00:12 +000091
92 <!-- Component Factory Instances, requiring configuration -->
93 <scr:component name="factory.component.configuration"
94 enabled="false"
95 configuration-policy="require"
96 factory="factory.component.factory.configuration" >
97 <implementation class="org.apache.felix.scr.integration.components.SimpleComponent" />
98 </scr:component>
Felix Meschbergerf4ae4e42009-08-21 11:52:16 +000099
Felix Meschberger8c64e852009-07-28 13:48:28 +0000100</components>