00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _CLIENT_REQUESTINFO_PIDL_
00023 #define _CLIENT_REQUESTINFO_PIDL_
00024
00025 #include "tao/PI/RequestInfo.pidl"
00026 #include "tao/orb_types.pidl"
00027 #include "tao/Policy_Forward.pidl"
00028
00029 module PortableInterceptor {
00030
00031 typeprefix PortableInterceptor "omg.org";
00032
00033 local interface ClientRequestInfo : RequestInfo
00034 {
00035 readonly attribute Object target;
00036 readonly attribute Object effective_target;
00037 readonly attribute IOP::TaggedProfile effective_profile;
00038 readonly attribute any received_exception;
00039 readonly attribute CORBA::RepositoryId received_exception_id;
00040 IOP::TaggedComponent get_effective_component (in IOP::ComponentId id);
00041 IOP::TaggedComponentSeq get_effective_components (in IOP::ComponentId id);
00042 CORBA::Policy get_request_policy (in CORBA::PolicyType type);
00043 void add_request_service_context (
00044 in IOP::ServiceContext service_context,
00045 in boolean replace);
00046 };
00047 };
00048
00049 #endif