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