Bundle-Copyright STRING
Header
The Bundle-Copyright header contains the copyright specification for this bundle. Can be set with the BundleCopyright annotation.
-
Example:
Bundle-Copyright: OSGi (c) 2002
-
Pattern:
.*
/*
* Bundle-Copyright header
*/
private void doBundeCopyright(BundleCopyright annotation) {
add(Constants.BUNDLE_COPYRIGHT, annotation.value());
}