Interface OsgiManifest
- All Superinterfaces:
Manifest
Represents a manifest file for a JAR containing an OSGi bundle.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the classes dir.Returns the classpath.Returns the description.Returns the docURL value.Returns all existing instruction.Returns the license.getName()Returns the name.Returns the symbolic name.Returns the vendor.Returns the version.instruction(String name, String... values) Adds arguments to an instruction.instructionFirst(String name, String... values) Adds arguments to an instruction.instructionReplace(String name, String... values) Sets the values for an instruction.instructionValue(String instructionName) Returns the list of arguments for a particular instruction.voidsetClassesDir(File classesDir) Sets the classes dir.voidsetClasspath(FileCollection classpath) A convenient method for setting a Bundle-Classpath instruction.voidsetDescription(String description) A convenient method for setting a Bundle-Description instruction.voidA convenient method for setting a Bundle-DocURL instruction.voidsetLicense(String license) A convenient method for setting a Bundle-License instruction.voidA convenient method for setting a Bundle-Name instruction.voidsetSymbolicName(String symbolicName) A convenient method for setting a Bundle-SymbolicName instruction.voidA convenient method for setting a Bundle-Vendor instruction.voidsetVersion(String version) A convenient method for setting a Bundle-Version instruction.Methods inherited from interface Manifest
attributes, attributes, from, from, getAttributes, getEffectiveManifest, getSections, writeTo
-
Method Details
-
instructionValue
-
instruction
Adds arguments to an instruction. If the instruction does not exists, it is created. If it does exists, the arguments are appended to the existing arguments.- Returns:
- this
- See Also:
-
instructionFirst
Adds arguments to an instruction. If the instruction does not exists, it is created. If it does exists, the arguments are inserted before the existing arguments.- Parameters:
name- Name of the instruction.values- The values for the instruction.- Returns:
- this
- See Also:
-
instructionReplace
Sets the values for an instruction. If the instruction does not exists, it is created. If it does exists, the values replace the existing values.- Parameters:
name- Name of the instruction.values- The values for the instruction.- Returns:
- this
- See Also:
-
getInstructions
-
getSymbolicName
-
setSymbolicName
A convenient method for setting a Bundle-SymbolicName instruction.- Parameters:
symbolicName- the symbolicName to set
-
getName
-
setName
A convenient method for setting a Bundle-Name instruction.- Parameters:
name- the name to set
-
getVersion
-
setVersion
A convenient method for setting a Bundle-Version instruction.- Parameters:
version- the version to set
-
getDescription
-
setDescription
A convenient method for setting a Bundle-Description instruction.- Parameters:
description- the description to set
-
getLicense
-
setLicense
A convenient method for setting a Bundle-License instruction.- Parameters:
license- The license to set
-
getVendor
-
setVendor
A convenient method for setting a Bundle-Vendor instruction.- Parameters:
vendor- The vendor to set
-
getDocURL
-
setDocURL
A convenient method for setting a Bundle-DocURL instruction.- Parameters:
docURL- the docURL to set.
-
getClassesDir
-
setClassesDir
Sets the classes dir. This directory is the major source of input for generation the OSGi manifest. All classes are analyzed for its packages and package dependencies. Based on this the Import-Package value is set. This auto generated value can be overwritten by explicitly setting an instruction.- See Also:
-
getClasspath
-
setClasspath
A convenient method for setting a Bundle-Classpath instruction. The information of the classpath elements are only used if they are OSGi bundles. In this case for example the version information provided by the bundle is used in the Import-Package of the generated OSGi bundle.- Parameters:
classpath- The classpath elements
-