Felix Meschberger | 3242020 | 2010-01-27 10:41:58 +0000 | [diff] [blame] | 1 | <?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 | <!-- |
| 23 | Components used for the ActivateSignatureTest integration test. |
| 24 | This tests components with several signatures of the activate method |
| 25 | --> |
| 26 | |
| 27 | <!-- activators taking ComponentContext --> |
| 28 | <scr:component name="private_activate_ComponentContext"> |
| 29 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Private_ComponentContext" /> |
| 30 | </scr:component> |
| 31 | <scr:component name="package_activate_ComponentContext"> |
| 32 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Package_ComponentContext" /> |
| 33 | </scr:component> |
| 34 | <scr:component name="protected_activate_ComponentContext"> |
| 35 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Protected_ComponentContext" /> |
| 36 | </scr:component> |
| 37 | <scr:component name="public_activate_ComponentContext"> |
| 38 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Public_ComponentContext" /> |
| 39 | </scr:component> |
| 40 | |
| 41 | <!-- activators taking BundleContext --> |
| 42 | <scr:component name="private_activate_BundleContext"> |
| 43 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Private_BundleContext" /> |
| 44 | </scr:component> |
| 45 | <scr:component name="package_activate_BundleContext"> |
| 46 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Package_BundleContext" /> |
| 47 | </scr:component> |
| 48 | <scr:component name="protected_activate_BundleContext"> |
| 49 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Protected_BundleContext" /> |
| 50 | </scr:component> |
| 51 | <scr:component name="public_activate_BundleContext"> |
| 52 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Public_BundleContext" /> |
| 53 | </scr:component> |
| 54 | |
| 55 | <!-- activators taking Map --> |
| 56 | <scr:component name="private_activate_Map"> |
| 57 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Private_Map" /> |
| 58 | </scr:component> |
| 59 | <scr:component name="package_activate_Map"> |
| 60 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Package_Map" /> |
| 61 | </scr:component> |
| 62 | <scr:component name="protected_activate_Map"> |
| 63 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Protected_Map" /> |
| 64 | </scr:component> |
| 65 | <scr:component name="public_activate_Map"> |
| 66 | <implementation class="org.apache.felix.scr.integration.components.activatesignature.Signature_Public_Map" /> |
| 67 | </scr:component> |
| 68 | |
| 69 | </components> |