Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / PortableServer / Servant_Upcall.inl
blobe275e7a55a06c2903f70fdb6c1e94e06a3922495
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 namespace TAO
6   namespace Portable_Server
7   {
8     ACE_INLINE ::TAO_Root_POA &
9     Servant_Upcall::poa () const
10     {
11       return *this->poa_;
12     }
14     ACE_INLINE PortableServer::Servant
15     Servant_Upcall::servant () const
16     {
17       return this->servant_;
18     }
20     ACE_INLINE TAO_Object_Adapter &
21     Servant_Upcall::object_adapter () const
22     {
23       return *this->object_adapter_;
24     }
26     ACE_INLINE const PortableServer::ObjectId &
27     Servant_Upcall::id () const
28     {
29       return this->system_id_;
30     }
32     ACE_INLINE void
33     Servant_Upcall::user_id (
34       const PortableServer::ObjectId *id)
35     {
36       this->user_id_ = id;
37     }
39     ACE_INLINE const PortableServer::ObjectId &
40     Servant_Upcall::user_id () const
41     {
42       return *(this->user_id_);
43     }
45     #if (TAO_HAS_MINIMUM_POA == 0)
47     ACE_INLINE void*
48     Servant_Upcall::locator_cookie () const
49     {
50       return this->cookie_;
51     }
53     ACE_INLINE void
54     Servant_Upcall::locator_cookie (void* cookie)
55     {
56       this->cookie_ = cookie;
57     }
59     ACE_INLINE const char *
60     Servant_Upcall::operation () const
61     {
62       return this->operation_;
63     }
65     ACE_INLINE void
66     Servant_Upcall::operation (const char *name)
67     {
68       this->operation_ = name;
69     }
71     #endif /* TAO_HAS_MINIMUM_POA == 0 */
73     ACE_INLINE void
74     Servant_Upcall::active_object_map_entry (TAO_Active_Object_Map_Entry *entry)
75     {
76       this->active_object_map_entry_ = entry;
77     }
79     ACE_INLINE TAO_Active_Object_Map_Entry *
80     Servant_Upcall::active_object_map_entry () const
81     {
82       return this->active_object_map_entry_;
83     }
85     ACE_INLINE CORBA::Short
86     Servant_Upcall::priority () const
87     {
88       return this->current_context_.priority ();
89     }
91     ACE_INLINE Servant_Upcall::State
92     Servant_Upcall::state () const
93     {
94       return this->state_;
95     }
97     ACE_INLINE void
98     Servant_Upcall::state (Servant_Upcall::State state)
99     {
100       this->state_ = state;
101     }
102   }
105 TAO_END_VERSIONED_NAMESPACE_DECL