Interface SubsystemInformation
-
public interface SubsystemInformation- Author:
- Tomaz Cerar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IntegergetManagementInterfaceMajorVersion()Gets the major version of the subsystem's management interface, if available.IntegergetManagementInterfaceMicroVersion()Gets the micro version of the subsystem's management interface, if available.IntegergetManagementInterfaceMinorVersion()Gets the minor version of the subsystem's management interface, if available.default ModelVersiongetManagementInterfaceVersion()Gets full version of the subsystemList<String>getXMLNamespaces()Gets the URIs of the XML namespaces the subsystem can parse.
-
-
-
Method Detail
-
getXMLNamespaces
List<String> getXMLNamespaces()
Gets the URIs of the XML namespaces the subsystem can parse.- Returns:
- list of XML namespace URIs. Will not return
null
-
getManagementInterfaceMajorVersion
Integer getManagementInterfaceMajorVersion()
Gets the major version of the subsystem's management interface, if available.- Returns:
- the major interface version, or
nullif the subsystem does not have a versioned interface
-
getManagementInterfaceMinorVersion
Integer getManagementInterfaceMinorVersion()
Gets the minor version of the subsystem's management interface, if available.- Returns:
- the minor interface version, or
nullif the subsystem does not have a versioned interface
-
getManagementInterfaceMicroVersion
Integer getManagementInterfaceMicroVersion()
Gets the micro version of the subsystem's management interface, if available.- Returns:
- the micro interface version, or
nullif the subsystem does not have a versioned interface
-
getManagementInterfaceVersion
default ModelVersion getManagementInterfaceVersion()
Gets full version of the subsystem- Returns:
- full
ModelVersion
-
-