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

org.jorigin.device.DeviceInfo Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
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