/** * Oshi (https://github.com/oshi/oshi) * * Copyright (c) 2010 - 2017 The Oshi Project Team * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Maintainers: * dblock[at]dblock[dot]org * widdis[at]gmail[dot]com * enrico.bianchi[at]gmail[dot]com * * Contributors: * https://github.com/oshi/oshi/graphs/contributors */ package oshi.json.hardware; import oshi.json.json.OshiJsonObject; /** * The ComputerSystem represents the physical hardware, of a computer * system/product and includes BIOS/firmware and a motherboard, logic board, * etc. * * @author SchiTho1 [at] Securiton AG * @author widdis [at] gmail [dot] com */ public interface ComputerSystem extends OshiJsonObject { /** * Get the computer system manufacturer. * * @return The manufacturer. */ String getManufacturer(); /** * Get the computer system model. * * @return The model. */ String getModel(); /** * Get the computer system serial number * * @return The serial number. */ String getSerialNumber(); /** * Get the computer system firmware/BIOS * * @return A {@link Firmware} object for this system */ Firmware getFirmware(); /** * Get the computer system baseboard/motherboard * * @return A {@link Baseboard} object for this system */ Baseboard getBaseboard(); }