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

oshi.hardware.Firmware Maven / Gradle / Ivy

package oshi.hardware;

import java.io.Serializable;
import java.util.Date;

/**
 * @author angju
 *
 */
public interface Firmware extends Serializable {

    String getManufacturer();

    String getName();

    String getDescription();

    String getVersion();

    Date getReleaseDate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy