⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alarmirpconstdefs.idl

📁 UCS (Ultra Corba Simulator) is one more powerful corba client/servant simulator tool than other simi
💻 IDL
📖 第 1 页 / 共 2 页
字号:
//File: AlarmIRPConstDefs.idl
#ifndef _ALARM_IRP_CONST_DEFS_IDL_
#define _ALARM_IRP_CONST_DEFS_IDL_
#include <CosNotification.idl>
#include <ManagedGenericIRPConstDefs.idl>
// This statement must appear after all include statements
#pragma prefix "3gppsa5.org"
/* ## Module: AlarmIRPConstDefs
This module contains commonly used definitions for Alarm IRP
================================================================
*/
module AlarmIRPConstDefs
{
   /*
   The format of Distinguished Name (DN) is specified in 3GPP TS 32.300
   "Name Conventions for Managed Objects".
   */
   typedef string DN;
   /* DNOpt is an optional type.
   If the discriminator is true the value is present.
   Otherwise the value is null.
   */
   union DNOpt switch (boolean)
   {
      case TRUE: DN value;
   };
   /*
   This block identifies the alarm types specified for this IRP version.
   These types carry the same semantics as the TMN ITU-T defined event
   types of the same name.
   Their encodings for this version of Alarm IRP are defined here. Other IRP
   documents, or other versions of Alarm IRP, shall identify their own
   alarm types for their use. They shall define their encodings
   as well. Values defined here are unique among themselves.
   */
   interface AlarmType
   {
      const string COMMUNICATIONS_ALARM = "x1";
      const string PROCESSING_ERROR_ALARM = "x2";
      const string ENVIRONMENTAL_ALARM = "x3";
      const string QUALITY_OF_SERVICE_ALARM = "x4";
      const string EQUIPMENT_ALARM = "x5";
      const string INTEGRITY_VIOLATION = "x6";
      const string OPERATIONAL_VIOLATION = "x7";
      const string PHYSICAL_VIOLATION = "x8";
      const string SECURITY_SERVICE_OR_MECHANISM_VIOLATION = "x9";
      const string TIME_DOMAIN_VIOLATION = "x10";
   };
   /*
   This block identifies the notification types defined by this
   Alarm IRP version.
   */
   interface NotificationType
   {
      const string NOTIFY_FM_NEW_ALARM = "x1";
      const string NOTIFY_FM_CHANGED_ALARM = "x2";
      const string NOTIFY_FM_ACK_STATE_CHANGED = "x3";
      const string NOTIFY_FM_COMMENT_ADDED = "x4";
      const string NOTIFY_FM_CLEARED_ALARM = "x5";
      const string NOTIFY_FM_ALARM_LIST_REBUILT = "x6";
      const string NOTIFY_FM_POTENTIAL_FAULTY_ALARM_LIST = "x7";
   };
   /*
   This block identifies the levels of severity.
   */
   interface PerceivedSeverity
   {
      const short INDETERMINATE = 1;
      const short CRITICAL = 2;
      const short MAJOR = 3;
      const short MINOR = 4;
      const short WARNING = 5;
      const short CLEARED = 6;
   };
   /*
   This block identifies the probable cause of a reported alarm.
   */
   interface ProbableCause
   {
      /*
      Probable causes originating from M.3100.
      Values below correspond to M.3100 values.
      */
      const short INDETERMINATE = 0;
      const short ALARM_INDICATION_SIGNAL = 1;
      const short CALL_SETUP_FAILURE = 2;
      const short DEGRADED_SIGNAL = 3;
      const short FAR_END_RECEIVER_FAILURE = 4;
      const short FRAMING_ERROR = 5;
      const short LOSS_OF_FRAME = 6;
      const short LOSS_OF_POINTER = 7;
      const short LOSS_OF_SIGNAL = 8;
      const short PAYLOAD_TYPE_MISMATCH = 9;
      // Values 10 correspond to a duplicated probable cause
      const short REMOTE_ALARM_INTERFACE = 11;
      const short EXCESSIVE_BIT_ERROR_RATE = 12;
      const short PATH_TRACE_MISMATCH = 13;
      const short UNAVAILABLE = 14;
      const short SIGNAL_LABEL_MISMATCH = 15;
      const short LOSS_OF_MULTI_FRAME = 16;
      const short COMMUNICATIONS_RECEIVE_FAILURE = 17;
      const short COMMUNICATIONS_TRANSMIT_FAILURE = 18;
      const short MODULATION_FAILURE = 19;
      const short DEMODULATION_FAILURE = 20;
      // Values 21-26 correspond to duplicated probable causes
      // Values 27-50 are reserved for M.3100 potential future extensions
      const short BACK_PLANE_FAILURE = 51;
      const short DATA_SET_PROBLEM = 52;
      const short EQUIPMENT_IDENTIFIER_DUPLICATION = 53;
      const short EXTERNAL_IF_DEVICE_PROBLEM = 54;
      const short LINE_CARD_PROBLEM = 55;
      const short MULTIPLEXER_PROBLEM = 56;
      const short NE_IDENTIFIER_DUPLICATION = 57;
      const short POWER_PROBLEM = 58;
      const short PROCESSOR_PROBLEM = 59;
      const short PROTECTION_PATH_FAILURE = 60;
      const short RECEIVER_FAILURE = 61;
      const short REPLACEABLE_UNIT_MISSING = 62;
      const short REPLACEABLE_UNIT_TYPE_MISMATCH = 63;
      const short SYNCHRONIZATION_SOURCE_MISMATCH = 64;
      const short TERMINAL_PROBLEM = 65;
      const short TIMING_PROBLEM = 66;
      const short TRANSMITTER_FAILURE = 67;
      const short TRUNK_CARD_PROBLEM = 68;
      const short REPLACEABLE_UNIT_PROBLEM = 69;
      const short REAL_TIME_CLOCK_FAILURE = 70;
      // Values 71-80 correspond to duplicated probable causes
      const short PROTECTION_MECHANISM_FAILURE = 81;
      const short PROTECTING_RESOURCE_FAILURE = 82;
      // Values 83-100 are reserved for M.3100 potential future extensions
      const short AIR_COMPRESSOR_FAILURE = 101;
      const short AIR_CONDITIONING_FAILURE = 102;
      const short AIR_DRYER_FAILURE = 103;
      const short BATTERY_DISCHARGING = 104;
      const short BATTERY_FAILURE = 105;
      const short COMMERCIAL_POWER_FAILURE = 106;
      const short COOLING_FAN_FAILURE = 107;
      const short ENGINE_FAILURE = 108;
      const short FIRE_DETECTOR_FAILURE = 109;
      const short FUSE_FAILURE = 110;
      const short GENERATOR_FAILURE = 111;
      const short LOW_BATTERY_THRESHOLD = 112;
      const short PUMP_FAILURE = 113;
      const short RECTIFIER_FAILURE = 114;
      const short RECTIFIER_HIGH_VOLTAGE = 115;
      const short RECTIFIER_LOW_F_VOLTAGE = 116;
      const short VENTILATION_SYSTEM_FAILURE = 117;
      const short ENCLOSURE_DOOR_OPEN = 118;
      const short EXPLOSIVE_GAS = 119;
      const short FIRE = 120;
      const short FLOOD = 121;
      const short HIGH_HUMIDITY = 122;
      const short HIGH_TEMPERATURE = 123;
      const short HIGH_WIND = 124;
      const short ICE_BUILD_UP = 125;
      const short INTRUSION_DETECTION = 126;
      const short LOW_FUEL = 127;
      const short LOW_HUMIDITY = 128;
      const short LOW_CABLE_PRESSURE = 129;
      const short LOW_TEMPERATURE = 130;
      const short LOW_WATER = 131;
      const short SMOKE = 132;
      const short TOXIC_GAS = 133;
      // Values 134-135 correspond to duplicated probable causes
      const short EXTERNAL_POINT_FAILURE = 136;
      // Values 137-150 are reserved for potential M.3100 future extensions
      const short STORAGE_CAPACITY_PROBLEM = 151;
      const short MEMORY_MISMATCH = 152;
      const short CORRUPT_DATA = 153;
      const short OUT_OF_CPU_CYCLES = 154;
      const short SOFTWARE_ENVIRONMENT_PROBLEM = 155;
      const short SOFTWARE_DOWNLOAD_FAILURE = 156;
      const short LOSS_OF_REAL_TIME = 157;
      const short REINITIALIZED = 158;
      // Values 159-167 correspond to duplicated probable causes
      // Values 168-200 are reserved for potential M.3100 future extensions
      // Values 201-202 correspond to duplicated probable causes
      const short EXCESSIVE_ERROR_RATE = 203;
      // Values 204-207 correspond to duplicated probable causes
      // Values 208-300 are reserved for potential M.3100 future extensions
      /*
      Probable causes originating from X.721.
      Values below correspond to X.721 values with an offset of 300.
      */
      const short ADAPTER_ERROR = 301;
      const short APPLICATION_SUBSYSTEM_FAILURE = 302;
      const short BANDWIDTH_REDUCED = 303;
      // Value 304 corresponds to a duplicated probable cause
      const short COMMUNICATIONS_PROTOCOL_ERROR = 305;
      const short COMMUNICATIONS_SUBSYSTEM_FAILURE = 306;
      const short CONFIGURATION_OR_CUSTOMIZATION_ERROR = 307;
      const short CONGESTION = 308;
      // Value 309 corresponds to a duplicated probable cause
      const short CPU_CYCLES_LIMIT_EXCEEDED = 310;
      const short DATA_SET_OR_MODEM_ERROR = 311;
      // Value 312 corresponds to a duplicated probable cause
      const short DTE_DCE_INTERFACE_ERROR = 313;
      // Value 314 corresponds to a duplicated probable cause
      const short EQUIPMENT_MALFUNCTION = 315;
      const short EXCESSIVE_VIBRATION = 316;
      const short FILE_ERROR = 317;
      // Values 318-320 correspond to duplicated probable causes
      const short HEATING_OR_VENTILATION_OR_COOLING_SYSTEM_PROBLEM = 321;
      const short HUMIDITY_UNACCEPTABLE = 322;
      const short INPUT_OUTPUT_DEVICE_ERROR = 323;
      const short INPUT_DEVICE_ERROR = 324;
      const short LAN_ERROR = 325;
      const short LEAK_DETECTED = 326;
      const short LOCAL_NODE_TRANSMISSION_ERROR = 327;
      // Values 328-329 correspond to duplicated probable causes
      const short MATERIAL_SUPPLY_EXHAUSTED = 330;
      // Value 331 corresponds to a duplicated probable cause
      const short OUT_OF_MEMORY = 332;
      const short OUTPUT_DEVICE_ERROR = 333;
      const short PERFORMANCE_DEGRADED = 334;
      // Value 335 corresponds to a duplicated probable cause
      const short PRESSURE_UNACCEPTABLE = 336;
      // Values 337-338 correspond to duplicated probable causes
      const short QUEUE_SIZE_EXCEEDED = 339;
      const short RECEIVE_FAILURE = 340;
      // Value 341 corresponds to a duplicated probable cause
      const short REMOTE_NODE_TRANSMISSION_ERROR = 342;
      const short RESOURCE_AT_OR_NEARING_CAPACITY = 343;
      const short RESPONSE_TIME_EXCESSIVE = 344;
      const short RETRANSMISSION_RATE_EXCESSIVE = 345;
      const short SOFTWARE_ERROR = 346;
      const short SOFTWARE_PROGRAM_ABNORMALLY_TERMINATED = 347;
      const short SOFTWARE_PROGRAM_ERROR = 348;
      // Value 349 corresponds to a duplicated probable cause
      const short TEMPERATURE_UNACCEPTABLE = 350;
      const short THRESHOLD_CROSSED = 351;
      // Value 352 corresponds to a duplicated probable cause
      const short TOXIC_LEAK_DETECTED = 353;
      const short TRANSMIT_FAILURE = 354;
      // Value 355 corresponds to a duplicated probable cause
      const short UNDERLYING_RESOURCE_UNAVAILABLE = 356;
      const short VERSION_MISMATCH = 357;
      // Values 358-500 are reserved for potential X.721 future extensions
      /*
      Probable causes for 2G & 3G wireless systems.
      */
      const short A_BIS_TO_BTS_INTERFACE_FAILURE = 501;
      const short A_BIS_TO_TRX_INTERFACE_FAILURE = 502;
      const short ANTENNA_PROBLEM = 503;
      const short BATTERY_BREAKDOWN = 504;
      const short BATTERY_CHARGING_FAULT = 505;
      const short CLOCK_SYNCHRONIZATION_PROBLEM = 506;
      const short COMBINER_PROBLEM = 507;
      const short DISK_PROBLEM = 508;
      // Value 509 corresponds to a duplicated probable cause
      const short EXCESSIVE_RECEIVER_TEMPERATURE = 510;
      const short EXCESSIVE_TRANSMITTER_OUTPUT_POWER = 511;
      const short EXCESSIVE_TRANSMITTER_TEMPERATURE = 512;
      const short FREQUENCY_HOPPING_DEGRADED = 513;
      const short FREQUENCY_HOPPING_FAILURE = 514;
      const short FREQUENCY_REDEFINITION_FAILED = 515;
      const short LINE_INTERFACE_FAILURE = 516;
      const short LINK_FAILURE = 517;
      const short LOSS_OF_SYNCHRONIZATION = 518;
      const short LOST_REDUNDANCY = 519;
      const short MAINS_BREAKDOWN_WITH_BATTERY_BACKUP = 520;
      const short MAINS_BREAKDOWN_WITHOUT_BATTERY_BACKUP = 521;
      const short POWER_SUPPLY_FAILURE = 522;
      const short RECEIVER_ANTENNA_FAULT = 523;
      // Value 524 corresponds to a duplicated probable cause
      const short RECEIVER_MULTICOUPLER_FAILURE = 525;
      const short REDUCED_TRANSMITTER_OUTPUT_POWER = 526;
      const short SIGNAL_QUALITY_EVALUATION_FAULT = 527;
      const short TIMESLOT_HARDWARE_FAILURE = 528;
      const short TRANSCEIVER_PROBLEM = 529;
      const short TRANSCODER_PROBLEM = 530;
      const short TRANSCODER_OR_RATE_ADAPTER_PROBLEM = 531;
      const short TRANSMITTER_ANTENNA_FAILURE = 532;
      const short TRANSMITTER_ANTENNA_NOT_ADJUSTED = 533;
      // Value 534 corresponds to a duplicated probable cause
      const short TRANSMITTER_LOW_VOLTAGE_OR_CURRENT = 535;
      const short TRANSMITTER_OFF_FREQUENCY = 536;
      const short DATABASE_INCONSISTENCY = 537;
      const short FILE_SYSTEM_CALL_UNSUCCESSFUL = 538;
      const short INPUT_PARAMETER_OUT_OF_RANGE = 539;
      const short INVALID_PARAMETER = 540;
      const short INVALID_POINTER = 541;
      const short MESSAGE_NOT_EXPECTED = 542;
      const short MESSAGE_NOT_INITIALIZED = 543;
      const short MESSAGE_OUT_OF_SEQUENCE = 544;
      const short SYSTEM_CALL_UNSUCCESSFUL = 545;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -