
aQute.bnd.annotation.plugin.BndPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
The newest version!
package aQute.bnd.annotation.plugin;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.osgi.annotation.bundle.Attribute;
import org.osgi.annotation.bundle.Capability;
@Capability(namespace = InternalPluginNamespace.NAMESPACE, attribute = {
InternalPluginNamespace.IMPLEMENTATION_A + "=${@class}"
})
@Target({
ElementType.TYPE
})
@Retention(RetentionPolicy.RUNTIME)
public @interface BndPlugin {
@Attribute(InternalPluginNamespace.NAME_A)
String name();
@Attribute(InternalPluginNamespace.PARAMETERS_A)
Class> parameters() default Object.class;
@Attribute(InternalPluginNamespace.HIDE_A)
boolean hide() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy