1
2
3
4
5 package oshi.driver.windows.wmi;
6
7 import java.util.Objects;
8
9 import com.sun.jna.platform.win32.COM.WbemcliUtil.WmiQuery;
10 import com.sun.jna.platform.win32.COM.WbemcliUtil.WmiResult;
11
12 import oshi.annotation.concurrent.ThreadSafe;
13 import oshi.util.platform.windows.WmiQueryHandler;
14
15
16
17
18 @ThreadSafe
19 public final class Win32ComputerSystem {
20
21 private static final String WIN32_COMPUTER_SYSTEM = "Win32_ComputerSystem";
22
23
24
25
26 public enum ComputerSystemProperty {
27 MANUFACTURER, MODEL;
28 }
29
30 private Win32ComputerSystem() {
31 }
32
33
34
35
36
37
38 public static WmiResult<ComputerSystemProperty> queryComputerSystem() {
39 WmiQuery<ComputerSystemProperty> computerSystemQuery = new WmiQuery<>(WIN32_COMPUTER_SYSTEM,
40 ComputerSystemProperty.class);
41 return Objects.requireNonNull(WmiQueryHandler.createInstance()).queryWMI(computerSystemQuery);
42 }
43 }