summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
blob: 765da34238db28d2fc2009503e420d54ac9bdddd (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE TAO_Notify_Factory*
TAO_Notify_Properties::factory (void)
{
  return this->factory_;
}

ACE_INLINE void
TAO_Notify_Properties::factory (TAO_Notify_Factory* factory)
{
  this->factory_ = factory;
}

ACE_INLINE TAO_Notify_Builder*
TAO_Notify_Properties::builder (void)
{
  return this->builder_;
}

ACE_INLINE void
TAO_Notify_Properties::builder (TAO_Notify_Builder* builder)
{
  this->builder_ = builder;
}

ACE_INLINE CORBA::ORB_ptr
TAO_Notify_Properties::orb (void)
{
  return CORBA::ORB::_duplicate (orb_.in ());
}

ACE_INLINE CORBA::ORB_ptr
TAO_Notify_Properties::dispatching_orb (void)
{
  return CORBA::ORB::_duplicate (dispatching_orb_.in ());
}

ACE_INLINE void
TAO_Notify_Properties::orb (CORBA::ORB_ptr orb)
{
  orb_ = CORBA::ORB::_duplicate (orb);
}

ACE_INLINE void
TAO_Notify_Properties::dispatching_orb (CORBA::ORB_ptr dispatching_orb)
{
  dispatching_orb_ = CORBA::ORB::_duplicate (dispatching_orb);
}

ACE_INLINE PortableServer::POA_ptr
TAO_Notify_Properties::default_poa (void)
{
  return PortableServer::POA::_duplicate (this->default_poa_.in ());
}

ACE_INLINE void
TAO_Notify_Properties::default_poa (PortableServer::POA_ptr default_poa)
{
  this->default_poa_ = PortableServer::POA::_duplicate (default_poa);
}

ACE_INLINE CORBA::Boolean
TAO_Notify_Properties::asynch_updates (void)
{
  return this->asynch_updates_;
}

ACE_INLINE void
TAO_Notify_Properties::asynch_updates (CORBA::Boolean asynch_updates)
{
  this->asynch_updates_ = asynch_updates;
}

ACE_INLINE bool
TAO_Notify_Properties::allow_reconnect (void)
{
  return this->allow_reconnect_;
}

ACE_INLINE void
TAO_Notify_Properties::allow_reconnect (bool b)
{
  this->allow_reconnect_ = b;
}

ACE_INLINE bool
TAO_Notify_Properties::separate_dispatching_orb (void)
{
  return this->separate_dispatching_orb_;
}

ACE_INLINE void
TAO_Notify_Properties::separate_dispatching_orb (bool b)
{
  this->separate_dispatching_orb_ = b;
}

ACE_INLINE CORBA::Boolean
TAO_Notify_Properties::updates (void)
{
  return this->updates_;
}

ACE_INLINE void
TAO_Notify_Properties::updates (CORBA::Boolean updates)
{
  this->updates_ = updates;
}

ACE_INLINE const CosNotification::QoSProperties&
TAO_Notify_Properties::default_event_channel_qos_properties (void)
{
  return this->ec_qos_;
}

ACE_INLINE void
TAO_Notify_Properties::default_event_channel_qos_properties (const CosNotification::QoSProperties &ec_qos)
{
  this->ec_qos_ = ec_qos;
}

ACE_INLINE const CosNotification::QoSProperties&
TAO_Notify_Properties::default_supplier_admin_qos_properties (void)
{
  return this->sa_qos_;
}

ACE_INLINE void
TAO_Notify_Properties::default_supplier_admin_qos_properties (const CosNotification::QoSProperties &sa_qos)
{
  this->sa_qos_ = sa_qos;
}

ACE_INLINE const CosNotification::QoSProperties&
TAO_Notify_Properties::default_consumer_admin_qos_properties (void)
{
  return this->ca_qos_;
}

ACE_INLINE void
TAO_Notify_Properties::default_consumer_admin_qos_properties (const CosNotification::QoSProperties &ca_qos)
{
  this->ca_qos_ = ca_qos;
}

ACE_INLINE const CosNotification::QoSProperties&
TAO_Notify_Properties::default_proxy_supplier_qos_properties (void)
{
  return this->ps_qos_;
}

ACE_INLINE void
TAO_Notify_Properties::default_proxy_supplier_qos_properties (const CosNotification::QoSProperties &ps_qos)
{
  this->ps_qos_ = ps_qos;
}

ACE_INLINE const CosNotification::QoSProperties&
TAO_Notify_Properties::default_proxy_consumer_qos_properties (void)
{
  return this->pc_qos_;
}

ACE_INLINE void
TAO_Notify_Properties::default_proxy_consumer_qos_properties (const CosNotification::QoSProperties &pc_qos)
{
  this->pc_qos_ = pc_qos;
}

ACE_INLINE CosNotifyChannelAdmin::InterFilterGroupOperator
TAO_Notify_Properties::defaultConsumerAdminFilterOp (void)
{
  return this->defaultConsumerAdminFilterOp_;
}

ACE_INLINE void
TAO_Notify_Properties::defaultConsumerAdminFilterOp (CosNotifyChannelAdmin::InterFilterGroupOperator op)
{
  this->defaultConsumerAdminFilterOp_ = op;
}


ACE_INLINE CosNotifyChannelAdmin::InterFilterGroupOperator
TAO_Notify_Properties::defaultSupplierAdminFilterOp (void)
{
  return this->defaultSupplierAdminFilterOp_;
}

ACE_INLINE void
TAO_Notify_Properties::defaultSupplierAdminFilterOp (CosNotifyChannelAdmin::InterFilterGroupOperator op)
{
  this->defaultSupplierAdminFilterOp_ = op;
}

TAO_END_VERSIONED_NAMESPACE_DECL