Interface BundleInfo
- All Known Implementing Classes:
BundleInfoImpl
public interface BundleInfo
-
Method Summary
Modifier and TypeMethodDescriptionGet the build number, e.g. the git hash.longThe bundle id in the OSGi container.The bundle's OSGi symbolic name.The OSGi bundle version.getHost()The host where the bundle lives.The full bundle version which is a tuple ofgetBundleVersion()andgetBuildNumber().
-
Method Details
-
getHost
String getHost()The host where the bundle lives. -
getBundleSymbolicName
String getBundleSymbolicName()The bundle's OSGi symbolic name. -
getBundleId
long getBundleId()The bundle id in the OSGi container. -
getVersion
BundleVersion getVersion()The full bundle version which is a tuple ofgetBundleVersion()andgetBuildNumber(). -
getBundleVersion
String getBundleVersion()The OSGi bundle version. -
getBuildNumber
Get the build number, e.g. the git hash.
-