All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.annotation.headers.ProvideCapability Maven / Gradle / Ivy

The newest version!
package aQute.bnd.annotation.headers;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Define a Provide Capability clause in the manifest.
 * 

* Since this annotation can only be applied once, it is possible to create an * annotation that models a specific capability. For example: * *

 * interface Webserver {
 * 	@ProvideCapability(ns = "osgi.extender", name = "aQute.webserver", version = "${@version}")
 * 	@interface Provide {}
 * 
 * 	@RequireCapability(ns = "osgi.extender", filter = "(&(osgi.extender=aQute.webserver)${frange;${@version}})")
 * 	@interface Require {}
 * }
 * 
 * @Webserver.Provide
 * public class MyWebserver {}
 * 
*/ @Retention(RetentionPolicy.CLASS) @Target({ ElementType.ANNOTATION_TYPE, ElementType.TYPE }) public @interface ProvideCapability { /** * Appended at the end of the clause (after a ';'). Can be used to add * additional attributes and directives. */ String value() default ""; /** * The capability namespace. For example: {@code osgi.contract}. */ String ns(); /** * The name of the capability. If this is set, a property will be added as * {ns}={name}. This is the custom pattern for OSGi namespaces. Leaving this * unfilled, requires the {@link #value()} to be used to specify the name of * the capability, if needed. For example {@code aQute.sse}. */ String name() default ""; /** * The version of the capability. This must be a valid OSGi version. */ String version() default ""; /** * Effective time. Specifies the time a capability is available, either * resolve (default) or another name. The OSGi framework resolver only * considers Capabilities without an effective directive or * effective:=resolve. Capabilities with other values for the effective * directive can be considered by an external agent. */ String effective() default "resolve"; /** * The uses directive lists package names that are used by this Capability. * This information is intended to be used for uses constraints, */ String[] uses() default {}; /** * Mandatory attributes. Forces the resolver to only satisfy filters that * refer to all listed attributes. */ String[] mandatory() default {}; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy