00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file IORInterceptor_Details.h 00006 * 00007 * $Id: IORInterceptor_Details.h 79241 2007-08-07 12:42:30Z johnnyw $ 00008 * 00009 * This file declares a class that manages the details 00010 * about a registered client request interceptor. Policies can be 00011 * used when interceptors are registered, and the policy values 00012 * will be processed and used to modify the values of the 00013 * IORInterceptor_Details object associated with the registered 00014 * client request interceptor. 00015 * 00016 * @author Tim Bradley <bradley_t@ociweb.com> 00017 */ 00018 //============================================================================= 00019 00020 #ifndef TAO_IOR_INTERCEPTOR_DETAILS_H 00021 #define TAO_IOR_INTERCEPTOR_DETAILS_H 00022 00023 #include /**/ "ace/pre.h" 00024 00025 #include "tao/orbconf.h" 00026 00027 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00028 # pragma once 00029 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00030 00031 #include "tao/Policy_ForwardC.h" 00032 00033 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00034 00035 namespace TAO 00036 { 00037 /** 00038 * @class IORInterceptor_Details 00039 * 00040 * @brief The policy-driven details for a registered IOR interceptor 00041 * 00042 * Each time an IOR interceptor is registered with an ORB, an 00043 * IORInterceptor_Details object will be created and associated with 00044 * the registered IOR interceptor. If the interceptor is 00045 * registered with policies, the policies will be used to adjust the 00046 * values in the IORInterceptor_Details appropriately. 00047 * 00048 * Currently, there are no policies that are applicable to 00049 * IOR Interceptors. 00050 */ 00051 class IORInterceptor_Details 00052 { 00053 public: 00054 void apply_policies (const CORBA::PolicyList& policies); 00055 }; 00056 } 00057 00058 TAO_END_VERSIONED_NAMESPACE_DECL 00059 00060 #include /**/ "ace/post.h" 00061 00062 #endif /* TAO_IOR_INTERCEPTOR_DETAILS_H */