filetransferirpnotifications.idl

来自「UCS (Ultra Corba Simulator) is one more 」· IDL 代码 · 共 79 行

IDL
79
字号
//File: FileTransferIRPNotifications.idl
#ifndef _FILE_TRANSFER_IRP_NOTIFICATIONS_IDL_
#define _FILE_TRANSFER_IRP_NOTIFICATIONS_IDL_

#include <FileTransferIRPConstDefs.idl>
#include <NotificationIRPNotifications.idl>

// This statement must appear after all include statements
#pragma prefix "3gppsa5.org"

/* ## Module: FileTransferIRPNotifications
This contains the specification of notifications of FileTransferIRP.
====================================================================
*/
module FileTransferIRPNotifications
{
   /**
   * Constant definitions for the FileReady notification
   */
   interface NotifyFileReady: NotificationIRPNotifications::Notify
   {
      const string EVENT_TYPE = "notifyFileReady";

      /**
      * This constant defines the name of the fileInfoList property,
      * which is transported in the filterable_body fields.
      * The data type for the value of this property is
      * FileTransferIRPConstDefs::FileInfoList.
      */
      const string FILE_INFO_LIST =
         FileTransferIRPConstDefs::AttributeNameValue::FILE_INFO_LIST;

      /**
      * This constant defines the name of the additionalText property,
      * which is transported in the filterable_body fields.
      * The data type for the value of this property is string.
      */
      const string ADDITIONAL_TEXT =
         FileTransferIRPConstDefs::AttributeNameValue::ADDITIONAL_TEXT;
   };

   /**
   * Constant definitions for the FilePreparationError notification
   */
   interface NotifyFilePreparationError:
      NotificationIRPNotifications::Notify
   {
      const string EVENT_TYPE = "notifyFilePreparationError";

      /**
      * This constant defines the name of the fileInfoList property,
      * which is transported in the filterable_body fields.
      * The data type for the value of this property is
      * FileTransferIRPConstDefs::FileInfoList.
      */
      const string FILE_INFO_LIST =
         FileTransferIRPConstDefs::AttributeNameValue::FILE_INFO_LIST;

      /**
      * This constant defines the name of the reason property,
      * which is transported in the filterable_body fields.
      * The data type for the value of this property is string.
      */
      const string REASON =
         FileTransferIRPConstDefs::AttributeNameValue::REASON;

      /**
      * This constant defines the name of the additionalText property,
      * which is transported in the filterable_body fields.
      * The data type for the value of this property is string.
      */
      const string ADDITIONAL_TEXT =
         FileTransferIRPConstDefs::AttributeNameValue::ADDITIONAL_TEXT;
   };

};

#endif // _FILE_TRANSFER_IRP_NOTIFICATIONS_IDL_

⌨️ 快捷键说明

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