summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl56
1 files changed, 0 insertions, 56 deletions
diff --git a/TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl b/TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl
deleted file mode 100644
index 0bebdb87218..00000000000
--- a/TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl
+++ /dev/null
@@ -1,56 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = FILENAME
-// DsEventLogAdmin.idl
-//
-// = DESCRIPTION
-// This module defines the EventLog and
-// EventLogFactory interfaces.
-//
-// = AUTHOR
-// D A Hanvey (d.hanvey@qub.ac.uk)
-//
-// ============================================================================
-
-#ifndef DS_EVENT_LOG_ADMIN_IDL
-#define DS_EVENT_LOG_ADMIN_IDL
-
-#include "CosEventChannelAdmin.idl"
-// CORBA Event Service
-
-#include "DsLogAdmin.idl"
-
-#pragma prefix "omg.org"
-
-module DsEventLogAdmin
-{
- interface EventLog : DsLogAdmin::Log,
- CosEventChannelAdmin::EventChannel{};
-
- interface EventLogFactory : DsLogAdmin::LogMgr,
- CosEventChannelAdmin::ConsumerAdmin
- {
- EventLog create (
- in DsLogAdmin::LogFullActionType full_action,
- in unsigned long long max_size,
- in DsLogAdmin::CapacityAlarmThresholdList thresholds,
- out DsLogAdmin::LogId id
- ) raises (DsLogAdmin::InvalidLogFullAction,
- DsLogAdmin::InvalidThreshold);
-
- EventLog create_with_id (
- in DsLogAdmin::LogId id,
- in DsLogAdmin::LogFullActionType full_action,
- in unsigned long long max_size,
- in DsLogAdmin::CapacityAlarmThresholdList thresholds
- ) raises (DsLogAdmin::LogIdAlreadyExists,
- DsLogAdmin::InvalidLogFullAction,
- DsLogAdmin::InvalidThreshold);
-
- };
-
-};
-
-#endif /* DS_EVENT_LOG_ADMIN_IDL */