The Baseboard represents the system board, also called motherboard, logic board, etc.
| 30 | * board, etc. |
| 31 | */ |
| 32 | @Immutable |
| 33 | public 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 | } |
no outgoing calls
no test coverage detected