blob: 1dd3488e27170445ab1b8d2eb7d0055335107cb6 [file] [log] [blame]
David Jenckse165efc2014-06-15 01:09:26 +00001/*
2 * Copyright (c) OSGi Alliance (2013). 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.3.
19 *
20 * <p>
21 * Bundles wishing to use this package must list the package in the
22 * Import-Package header of the bundle's manifest. This package has two types of
23 * users: the consumers that use the API in this package and the providers that
24 * implement the API in this package.
25 *
26 * <p>
27 * Example import for consumers using the API in this package:
28 * <p>
29 * {@code Import-Package: org.osgi.service.component.runtime; version="[1.3,2.0)"}
30 * <p>
31 * Example import for providers implementing the API in this package:
32 * <p>
33 * {@code Import-Package: org.osgi.service.component.runtime; version="[1.3,1.4)"}
34 *
35 * @author $Id: 3d4fa42ce33a4682cbaeee3f094b558e6ea6080f $
36 */
37
David Jencksbae44842014-06-21 20:15:24 +000038@Version("1.3")
David Jenckse165efc2014-06-15 01:09:26 +000039package org.osgi.service.component.runtime;
40
David Jencksbae44842014-06-21 20:15:24 +000041import org.osgi.annotation.versioning.Version;
David Jenckse165efc2014-06-15 01:09:26 +000042