io.github.rmuhamedgaliev.service.OS.OSInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SystemInformation Show documentation
Show all versions of SystemInformation Show documentation
Library for getting information about local computer implemented on java. Used 2 Linux commands, other implemented on Java.
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