A.2 IDL specification (file name "ManagedGenericIRPSystem.idl")
32.3033GPPCommon Object Request Broker Architecture (CORBA) Solution Set (SS)Configuration Management (CM)Notification Integration Reference Point (IRP)Telecommunication managementTS
//File: ManagedGenericIRPSystem.idl
#ifndef _MANAGED_GENERIC_IRP_SYSTEM_IDL_
#define _MANAGED_GENERIC_IRP_SYSTEM_IDL_
// This statement must appear after all include statements
#pragma prefix "3gppsa5.org"
/* ## Module: ManagedGenericIRPSystem
This module contains definitions commonly used among all IRPs such as Alarm IRP.
================================================================
*/
module ManagedGenericIRPSystem
{
/*
Exception thrown when an unsupported optional parameter
is passed with information.
The parameter shall be the actual unsupported parameter name.
*/
exception ParameterNotSupported { string parameter; };
/*
Exception thrown when an invalid parameter value is passed.
The parameter shall be the actual parameter name.
*/
exception InvalidParameter { string parameter; };
/*
Exception thrown when a valid but unsupported parameter value is passed.
The parameter shall be the actual parameter name.
*/
exception ValueNotSupported { string parameter; };
/*
Exception thrown when an unsupported optional method is called.
*/
exception OperationNotSupported {};
};
#endif // _MANAGED_GENERIC_IRP_SYSTEM_IDL_