summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CosNotifyFilterExt.idl
blob: 1fb7cb61538745b0a04f94e421d572f4c238845a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * @file CosNotifyFilterExt.idl
 *
 * @brief Additional interfaces for Notify filter factory.
 *
 * @author Trevor Fields <fields_t@ociweb.com>
 */

#ifndef _COS_NOTIFY_FILTER_EXT_IDL_
#define _COS_NOTIFY_FILTER_EXT_IDL_

#include "CosNotifyFilter.idl"

#pragma prefix ""

/**
 * @namespace CosNotifyFilterExt
 *
 * @brief Notify Filter Extensions.
 */
module CosNotifyFilterExt
{

  interface FilterFactory
    : CosNotifyFilter::FilterFactory
  {
    /// Remove an existing Filter object
    /**
     * @param filter A filter created by this FilterFactory that
     *   has no other references
     * @throws FilterNotFound The filter provided is not found
     *   in the factory
     */
    void remove_filter (in CosNotifyFilter::Filter filter)
                        raises (CosNotifyFilter::FilterNotFound);

    /// Find the filter id of an existing Filter object
    /**
     * @param filter A filter created by this FilterFactory
     */
    CosNotifyFilter::FilterID get_filterid (in CosNotifyFilter::Filter filter);

    /// Find an existing Filter object
    /**
     * @param id A filter id for a filter created by this FilterFactory
     */
    CosNotifyFilter::Filter get_filter (in CosNotifyFilter::FilterID id);
  };


};

#endif /* _COS_NOTIFY_FILTER_EXT_IDL_ */