
org.jorigin.device.DeviceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcommon Show documentation
Show all versions of jcommon Show documentation
A java common package that enable to deal with various functionalities
package org.jorigin.device;
import org.jorigin.Common;
/**
* An interface that describe information related to a manufactured device.
* @author Julien SEINTURIER - Université de Toulon / CNRS LIS umr 7020 - github.com/jorigin/jcommon ([email protected])
* @version {@value Common#version} - b{@value Common#BUILD}
* @since 1.0.14
*/
public interface DeviceInfo {
/**
* Get the model of the device.
* @return the model of the device
*/
public String getDeviceModel();
/**
* Get the manufacturer of the device.
* @return the manufacturer of the device
*/
public String getDeviceManufacturer();
/**
* Get the serial number of the device.
* @return the serial number of the device
*/
public String getDeviceSerialNumber();
/**
* Get an URL that points a specification of the device.
* @return an URL that points a specification of the device
*/
public String getDeviceSpecificationURL();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy