1 /*
2  * Copyright (c) OSGi Alliance (2013, 2016). All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /**
18  * Service Component Runtime Package Version 1.4.
19  * <p>
20  * Bundles wishing to use this package must list the package in the
21  * Import-Package header of the bundle's manifest. This package has two types of
22  * users: the consumers that use the API in this package and the providers that
23  * implement the API in this package.
24  * <p>
25  * Example import for consumers using the API in this package:
26  * <p>
27  * {@code  Import-Package: org.osgi.service.component.runtime; version="[1.4,2.0)"}
28  * <p>
29  * Example import for providers implementing the API in this package:
30  * <p>
31  * {@code  Import-Package: org.osgi.service.component.runtime; version="[1.4,1.5)"}
32  *
33  * @author $Id: 9265b99ebe21cfb2feb3c21723041b0dfff28b40 $
34  */
35 
36 @Version(COMPONENT_SPECIFICATION_VERSION)
37 package org.osgi.service.component.runtime;
38 
39 import static org.osgi.service.component.ComponentConstants.COMPONENT_SPECIFICATION_VERSION;
40 
41 import org.osgi.annotation.versioning.Version;
42 
43