summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/ComponentServer/CCM_ComponentServer_Base.idl
blob: c44ce1b87961bd5fd850aa21fafe4ab22a9e84ae (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
54
55
56
/**
 * @file CCM_ComponentServer_Base.idl
 * $Id$
 * Contains base types for all componenent server interfaces.
 * These interfaces are not part of the CCM standard.
 */

#ifndef COMPONENTSERVER_BASE_IDL_
#define COMPONENTSERVER_BASE_IDL_

#include "ccm/CCM_Home.idl"
#include "ccm/CCM_KeylessCCMHome.idl"
#include "ccm/CCM_Navigation.idl"
#include "ccm/CCM_StandardConfigurator.idl"

module Components
{
  typeprefix Components "omg.org";

  module Deployment
  {
    typedef string UUID;
    typedef string Location;

    typedef FailureReason InvalidConfigurationReason;
    const InvalidConfigurationReason UnknownConfigValueName = 0;
    const InvalidConfigurationReason InvalidConfigValueType = 1;
    const InvalidConfigurationReason ConfigValueRequired = 2;
    const InvalidConfigurationReason ConfigValueNotExpected = 3;

    exception InvalidConfiguration
    {
      InvalidConfigurationReason reason;
      FeatureName name;
    };

    exception UnknownImplId 
    { 
    };

    exception InvalidLocation 
    { 
    };

    exception ImplEntryPointNotFound 
    { 
    };

    exception InstallationFailure
    {
      FailureReason reason;
    };
  };
};

#endif