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

org.whitesource.agent.api.model.OSInfo Maven / Gradle / Ivy

There is a newer version: 18.4.1
Show newest version
package org.whitesource.agent.api.model;


public class OSInfo {

    /*
     * examples:
     *  ID=ubuntu + VERSION=20.04
     *  ID=fedora + VERSION=33
     */
    private String id;
    private String version;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy