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

io.github.rmuhamedgaliev.service.OS.OSInformation Maven / Gradle / Ivy

Go to download

Library for getting information about local computer implemented on java. Used 2 Linux commands, other implemented on Java.

There is a newer version: 0.0.0.4
Show newest version
package io.github.rmuhamedgaliev.service.OS;

/**
 * Developer: Muhamedgaliev Rinat
 * Date: 5/1/13
 * Time: 12:34 PM
 */
public interface OSInformation {

    /**
     * Get version of kernel Linux
     * @return string version
     */
    String getOSVersion();

    /**
     * Get arch of kernel Linux
     * @return string arch
     */
    String getOSArch();

    /**
     * Get system date in format yyyy/MM/dd HH:mm:ss
     * @return formated date yyyy/MM/dd HH:mm:ss
     */
    String getOSDate();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy