All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.jdisc.application.BsnVersion Maven / Gradle / Ivy

package com.yahoo.jdisc.application;

import org.osgi.framework.Bundle;
import org.osgi.framework.Version;

/**
 * A bundle's symbolic name and version.
 *
 * @author gjoranv
 */
public record BsnVersion(String symbolicName, Version version) {

    public BsnVersion(Bundle bundle) {
        this(bundle.getSymbolicName(), bundle.getVersion());
    }

    public String toReadableString() {
        return symbolicName + " version:" + version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy