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

oshi.hardware.Baseboard Maven / Gradle / Ivy

package oshi.hardware;

import java.io.Serializable;

/**
 * @author angju
 * 
 */
public interface Baseboard extends Serializable {
    /**
     * Get the baseboard manufacturer.
     *
     * @return The manufacturer.
     */
    String getManufacturer();

    /**
     * Get the baseboard model.
     *
     * @return The model.
     */
    String getModel();

    /**
     * Get the baseboard version.
     *
     * @return The version.
     */
    String getVersion();

    /**
     * Get the baseboard serial number
     *
     * @return The serial number.
     */
    String getSerialNumber();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy