MCPcopy
hub / github.com/oshi/oshi / Baseboard

Interface Baseboard

oshi-core/src/main/java/oshi/hardware/Baseboard.java:32–61  ·  view source on GitHub ↗

The Baseboard represents the system board, also called motherboard, logic board, etc.

Source from the content-addressed store, hash-verified

30 * board, etc.
31 */
32@Immutable
33public interface Baseboard {
34 /**
35 * Get the baseboard manufacturer.
36 *
37 * @return The manufacturer.
38 */
39 String getManufacturer();
40
41 /**
42 * Get the baseboard model.
43 *
44 * @return The model.
45 */
46 String getModel();
47
48 /**
49 * Get the baseboard version.
50 *
51 * @return The version.
52 */
53 String getVersion();
54
55 /**
56 * Get the baseboard serial number.
57 *
58 * @return The serial number.
59 */
60 String getSerialNumber();
61}

Callers 10

testComputerSystemMethod · 0.95
testComputerSystemMethod · 0.95
identifyVMMethod · 0.65
initMethod · 0.65
testDisksMethod · 0.65
getDisksMethod · 0.65
toStringMethod · 0.65
toStringMethod · 0.65
testComputerSystemMethod · 0.95
testComputerSystemMethod · 0.95

Implementers 6

UnixBaseboardoshi-core/src/main/java/oshi/hardware/
AixBaseboardoshi-core/src/main/java/oshi/hardware/
WindowsBaseboardoshi-core/src/main/java/oshi/hardware/
LinuxBaseboardoshi-core/src/main/java/oshi/hardware/
MacBaseboardoshi-core/src/main/java/oshi/hardware/
AbstractBaseboardoshi-core/src/main/java/oshi/hardware/

Calls

no outgoing calls

Tested by

no test coverage detected