blob: 9b206f8a4d9b82334482d2efde71de0369a2108b [file] [log] [blame]
Carsten Ziegeler5de92da2009-03-31 17:12:40 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Carsten Ziegelerba751bd2009-04-18 18:31:43 +000019package org.apache.felix.scr.annotations;
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000020
Carsten Ziegelerb5618fe2009-03-31 17:18:17 +000021import java.lang.annotation.*;
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000022
23/**
24 * The <code>Service</code> annotation defines whether and which service
25 * interfaces are provided by the component.
26 * <p>
27 * This annotation is used to declare &lt;service&gt; and &lt;provide&gt;
28 * elements of the component declaration. See section 112.4.6, Service Elements,
29 * in the OSGi Service Platform Service Compendium Specification for more
30 * information.
31 */
32@Target(ElementType.TYPE)
Carsten Ziegeler1993d102009-04-07 16:16:47 +000033@Retention(RetentionPolicy.SOURCE)
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000034@Documented
35public @interface Service {
36
37 /**
38 * The class of the service interface provided by the component. If this
39 * property is not set provide elements will be generated for all interfaces
40 * generated by the class
41 */
Carsten Ziegeler27764de2009-04-16 09:39:33 +000042 Class<?> value() default AutoDetect.class;
Carsten Ziegeler5de92da2009-03-31 17:12:40 +000043
44 /**
45 * Whether the component is registered as a
46 * <code>org.osgi.framework.ServiceFactory</code> or not.
47 */
48 boolean serviceFactory() default false;
49
50}