~ubuntu-branches/ubuntu/breezy/orbit2/breezy

« back to all changes in this revision

Viewing changes to src/idl/CORBA/CORBA_DomainManager.idl

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-09-06 16:37:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050906163702-hrqi0ctymth53bnn
Tags: 1:2.12.4-0ubuntu1
* New upstream version.
* debian/patches/100-compile-name-server.patch:
  - updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// File: CORBA_DomainManager.idl
2
 
// CORBA 2.3, Chapter 4
3
 
 
4
 
    interface DomainManager {
5
 
        Policy get_domain_policy (
6
 
            in PolicyType           policy_type
7
 
        );
8
 
    };
9
 
 
10
 
    const PolicyType SecConstruction = 11;
11
 
 
12
 
    interface ConstructionPolicy: Policy        {
13
 
        void make_domain_manager(
14
 
            in CORBA::InterfaceDef  object_type,
15
 
            in boolean              constr_policy
16
 
        ); 
17
 
    };
18
 
 
19
 
    typedef sequence <DomainManager> DomainManagersList;
20
 
 
 
1
// File: CORBA_DomainManager.idl
 
2
// CORBA 3.0, Chapter 4
 
3
 
 
4
    interface DomainManager {
 
5
        Policy get_domain_policy (
 
6
            in PolicyType           policy_type
 
7
        );
 
8
    };
 
9
 
 
10
    const PolicyType SecConstruction = 11;
 
11
 
 
12
    interface ConstructionPolicy: Policy {
 
13
        void make_domain_manager(
 
14
            in CORBA::InterfaceDef  object_type,
 
15
            in boolean              constr_policy
 
16
        ); 
 
17
    };
 
18
 
 
19
    typedef sequence <DomainManager> DomainManagersList;
 
20