blob: 0f4228caa93e869491d067672616a6b3d0144e5a (
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
|
// -*- IDL -*-
/**
* @file ServerRequestInfo.pidl
*
* $Id$
*
* @brief Pre-compiled RequestInfo
*
* This file was used to generate the code in ServerRequestInfoC.*
* 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"
* ServerRequestInfo.pidl
*/
#ifndef _SERVER_REQUESTINFO_PIDL_
#define _SERVER_REQUESTINFO_PIDL_
#include "tao/PI/RequestInfo.pidl"
#include "tao/orb_types.pidl"
#include "tao/Policy_Forward.pidl"
module PortableInterceptor {
typeprefix PortableInterceptor "omg.org";
local interface ServerRequestInfo : RequestInfo
{
readonly attribute any sending_exception;
readonly attribute ServerId server_id;
readonly attribute ORBId orb_id;
readonly attribute AdapterName adapter_name;
readonly attribute ObjectId object_id;
readonly attribute CORBA::OctetSeq adapter_id;
readonly attribute CORBA::RepositoryId target_most_derived_interface;
CORBA::Policy get_server_policy (in CORBA::PolicyType type);
void set_slot (in SlotId id, in any data) raises (InvalidSlot);
boolean target_is_a (in CORBA::RepositoryId id);
void add_reply_service_context (
in IOP::ServiceContext service_context,
in boolean replace);
};
};
#endif /* _SERVER_REQUESTINFO_PIDL_ */
|