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

org.webjars.WebJarVersion Maven / Gradle / Ivy

There is a newer version: 0.52
Show newest version
package org.webjars;

public class WebJarVersion {

    private final String webJarId;

    private final String webJarVersion;

    public WebJarVersion(String webJarId, String webJarVersion) {
        this.webJarId = webJarId;
        this.webJarVersion = webJarVersion;
    }

    public String getWebJarId() {
        return webJarId;
    }

    public String getWebJarVersion() {
        return webJarVersion;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy