Class BundleVersionInfo<T>

    • Field Detail

      • SNAPSHOT_MARKER

        public static final java.lang.String SNAPSHOT_MARKER
        Marker used by Maven to identify snapshots
        See Also:
        Constant Field Values
      • BND_LAST_MODIFIED

        public static final java.lang.String BND_LAST_MODIFIED
        Name of the BND attribute that provides the bundle's last modified timestamp
        See Also:
        Constant Field Values
    • Constructor Detail

      • BundleVersionInfo

        public BundleVersionInfo()
    • Method Detail

      • getSource

        public abstract T getSource()
        Returns:
        Return the source of information: underlying File or Bundle
      • isBundle

        public abstract boolean isBundle()
        Returns:
        True if the provided data is a valid bundle
      • getBundleSymbolicName

        public abstract java.lang.String getBundleSymbolicName()
        Returns:
        Return the bundle symbolic name, null if not available
      • getVersion

        public abstract Version getVersion()
        Returns:
        Return the bundle version, null if not available
      • isSnapshot

        public abstract boolean isSnapshot()
        Returns:
        True if the bundle version indicates a snapshot
      • getBundleLastModified

        public abstract long getBundleLastModified()
        Return the bundle last modification time, based on the BND_LAST_MODIFIED manifest header, if available. This is *not* the Bundle.getLastModified() value, which refers to actions in the OSGi framework.
        Returns:
        BND_LAST_MODIFIED_MISSING if header not supplied
      • compareTo

        public int compareTo​(BundleVersionInfo<?> other)
        Compare based on bundle version info, and for snapshots based on getBundleLastModified()
        Specified by:
        compareTo in interface java.lang.Comparable<T>