summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/PI/RequestInfo.pidl
blob: 558b6654de4f481e1bbecbe288bdd16a70fa01bc (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
// -*- IDL -*-

/**
 * @file RequestInfo.pidl
 *
 * $Id$
 *
 * @brief Pre-compiled RequestInfo
 *
 * This file was used to generate the code in RequestInfoC.*
 * The command used to generate code is:
 *
 *  tao_idl
 *     -o orig -Gp -Gd -GA -SS -Sci
 *          -Wb,export_include="tao/TAO_Export.h"
 *          -Wb,export_macro=TAO_Export
 *          -Wb,pre_include="ace/pre.h"
 *          -Wb,post_include="ace/post.h"
 *          RequestInfo.pidl
 */

#ifndef _REQUESTINFO_PIDL_
#define _REQUESTINFO_PIDL_

#include "tao/PI_Forward.pidl"
#include "tao/AnyTypeCode/Dynamic.pidl"
#include "tao/Messaging_SyncScope.pidl"
#include "tao/PI/InvalidSlot.pidl"
#include "tao/IOP_IOR.pidl"

module PortableInterceptor {

  typeprefix PortableInterceptor "omg.org";

  local interface RequestInfo
  {
    readonly attribute unsigned long request_id;
    readonly attribute string operation;
    readonly attribute Dynamic::ParameterList arguments;
    readonly attribute Dynamic::ExceptionList exceptions;
    readonly attribute Dynamic::ContextList contexts;
    readonly attribute Dynamic::RequestContext operation_context;
    readonly attribute any result;
    readonly attribute boolean response_expected;
    readonly attribute Messaging::SyncScope sync_scope;
    readonly attribute ReplyStatus reply_status;
    readonly attribute Object forward_reference;
    any get_slot (in SlotId id) raises (InvalidSlot);
    IOP::ServiceContext get_request_service_context (in IOP::ServiceId id);
    IOP::ServiceContext get_reply_service_context (in IOP::ServiceId id);
  };
};

#endif  /* _REQUESTINFO_PIDL_ */