@Documented @Retention(value=CLASS) @Target(value={TYPE,PACKAGE}) @Repeatable(value=Requirements.class) public @interface Requirement
For example:
@Requirement(namespace=ExtenderNamespace.EXTENDER_NAMESPACE, name="osgi.component", version="1.3.0")
This annotation is not retained at runtime. It is for use by tools to generate bundle manifests or otherwise process the a package.
This annotation can be used to annotate an annotation.
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
namespace
The namespace of this requirement.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String[] |
attribute
A list of attribute or directive names and values.
|
Requirement.Cardinality |
cardinality
The cardinality of this requirement.
|
java.lang.String |
effective
The effective time of this requirement.
|
java.lang.String |
filter
The filter expression of this requirement, if any.
|
java.lang.String |
name
The name of this requirement within the namespace.
|
Requirement.Resolution |
resolution
The resolution policy of this requirement.
|
java.lang.String |
version
The floor version of the version range for this requirement.
|
public abstract java.lang.String namespace
public abstract java.lang.String name
If specified, adds an expression, using the &
operator with any
specified filter()
, to the requirement's filter directive to
test that an attribute with the name of the namespace is equal to the
value of the specified name.
public abstract java.lang.String version
If specified, adds a version range expression, using the &
operator with any specified filter()
, to the requirement's
filter directive. The ceiling version of the version range is the next
major version from the floor version. For example, if the specified
version is 1.3
, then the version range expression is
(&(version>=1.3)(!(version>=2.0)))
.
The specified version must be a valid OSGi version string.
public abstract java.lang.String filter
public abstract java.lang.String effective
Specifies the time the requirement is available. The OSGi framework resolver only considers requirement without an effective directive or effective:=resolve. Requirements with other values for the effective directive can be considered by an external agent.
If not specified, the effective
directive is omitted from the
requirement clause.
public abstract java.lang.String[] attribute
Each string should be specified in the form:
"name=value"
for attributes."name:type=value"
for typed attributes."name:=value"
for directives.public abstract Requirement.Cardinality cardinality
Indicates if this requirement can be wired a single time or multiple times.
If not specified, the cardinality
directive is omitted from the
requirement clause.
public abstract Requirement.Resolution resolution
A mandatory requirement forbids the bundle to resolve when this requirement is not satisfied; an optional requirement allows a bundle to resolve even if this requirement is not satisfied.
If not specified, the resolution
directive is omitted from the
requirement clause.
Copyright © OSGi Alliance (2000, 2018). All Rights Reserved. Licensed under the OSGi Specification License, Version 2.0