Figure PR.15 - ManagedHardware in More Detail : Class diagram
Created:
3/28/2022 3:51:09 PM
Modified:
10/3/2023 6:29:54 AM
Project:
Author:
Giu Platania
Version:
1.0.0
Advanced:
ID:
{2F494AC6-5C49-489c-9517-63B6DFA9A282}
ManagedHardware is a subclass of Hardware, and is an abstract base class that adds additional semantics to the Hardware base class. These semantics are used to provide management information on the hardware. For example, attributes defined by this class can provide the administrative and operational state of the entity, and tell whether it has any alarms. Such attributes are physical in nature, and indicate physical things (e.g., a fiber cut). For most physical administrative and operational states, there is one or more corresponding logical administrative and operational states. ManagedHardware is shown in the Figure below.<br/>The main difference between ManagedHardware and Hardware is that ManagedHardware entities have more than just a physical presence – they also have physical semantics that describe how the entity is managed. This is why PhysicalConnector is not a type of ManagedHardware – a PhysicalConnector is managed by physically inserting and removing it.<br/>So, what is meant by physically managing a hardware entity? This is best explained by briefly examining the three attributes of the ManagedHardware class.<br/>The administrativeState attribute is an enumerated integer that describes the current physical state of the ManagedHardware. Examples of this include starting up, shutting down, and in test.<br/>The physicalAlarmReportingEnabled attribute is a Boolean, and defines whether physical alarm reporting for this object instance is enabled or not. Note that some physical entities are not capable of reporting physical alarms, while some are. In most cases, there are corresponding logical alarms. The ManagementEntity class hierarchy defines logical alarms, and correlates them to physical alarms.<br/>The physicalAlarmStatus attribute is an enumerated integer that indicates the occurrence of an abnormal physical condition relating to an object. This attribute may also function as a summary indicator of alarm conditions associated with a specific resource. This attribute expands on the standard ITU semantics and updates them to include eTOM concepts.<br/>The ManagedHardware class has two important subclasses, called PhysicalPort and PhysicalContainer. These are described in the next two sections, respectively.<br/>