Package oshi.hardware.platform.unix.aix
Class AixFirmware
- java.lang.Object
-
- oshi.hardware.common.AbstractFirmware
-
- oshi.hardware.platform.unix.aix.AixFirmware
-
- All Implemented Interfaces:
Firmware
@Immutable final class AixFirmware extends AbstractFirmware
Firmware data.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
manufacturer
private java.lang.String
name
private java.lang.String
version
-
Constructor Summary
Constructors Constructor Description AixFirmware(java.lang.String manufacturer, java.lang.String name, java.lang.String version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getManufacturer()
Get the firmware manufacturer.java.lang.String
getName()
Get the firmware name.java.lang.String
getVersion()
Get the firmware version.-
Methods inherited from class oshi.hardware.common.AbstractFirmware
getDescription, getReleaseDate, toString
-
-
-
-
Method Detail
-
getManufacturer
public java.lang.String getManufacturer()
Description copied from interface:Firmware
Get the firmware manufacturer.- Returns:
- the manufacturer
-
getName
public java.lang.String getName()
Description copied from interface:Firmware
Get the firmware name.- Specified by:
getName
in interfaceFirmware
- Overrides:
getName
in classAbstractFirmware
- Returns:
- the name
-
getVersion
public java.lang.String getVersion()
Description copied from interface:Firmware
Get the firmware version.- Returns:
- the version
-
-