zeroc-ice-x86-mingw 3.6b1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. checksums.yaml +7 -0
  2. data/ICE_LICENSE +54 -0
  3. data/LICENSE +339 -0
  4. data/bin/slice2rb +17 -0
  5. data/ice-x86-mingw.gemspec +41 -0
  6. data/lib/Glacier2.rb +12 -0
  7. data/lib/Glacier2/Metrics.rb +99 -0
  8. data/lib/Glacier2/PermissionsVerifier.rb +168 -0
  9. data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
  10. data/lib/Glacier2/Router.rb +141 -0
  11. data/lib/Glacier2/RouterF.rb +29 -0
  12. data/lib/Glacier2/SSLInfo.rb +79 -0
  13. data/lib/Glacier2/Session.rb +470 -0
  14. data/lib/Ice.rb +659 -0
  15. data/lib/Ice/BuiltinSequences.rb +64 -0
  16. data/lib/Ice/Communicator.rb +93 -0
  17. data/lib/Ice/CommunicatorF.rb +28 -0
  18. data/lib/Ice/Connection.rb +414 -0
  19. data/lib/Ice/ConnectionF.rb +36 -0
  20. data/lib/Ice/Current.rb +152 -0
  21. data/lib/Ice/Endpoint.rb +265 -0
  22. data/lib/Ice/EndpointF.rb +52 -0
  23. data/lib/Ice/EndpointTypes.rb +77 -0
  24. data/lib/Ice/FacetMap.rb +28 -0
  25. data/lib/Ice/Identity.rb +70 -0
  26. data/lib/Ice/ImplicitContext.rb +59 -0
  27. data/lib/Ice/ImplicitContextF.rb +28 -0
  28. data/lib/Ice/Instrumentation.rb +425 -0
  29. data/lib/Ice/InstrumentationF.rb +35 -0
  30. data/lib/Ice/LocalException.rb +1081 -0
  31. data/lib/Ice/Locator.rb +314 -0
  32. data/lib/Ice/LocatorF.rb +34 -0
  33. data/lib/Ice/Logger.rb +57 -0
  34. data/lib/Ice/LoggerF.rb +28 -0
  35. data/lib/Ice/Metrics.rb +696 -0
  36. data/lib/Ice/ObjectAdapterF.rb +28 -0
  37. data/lib/Ice/ObjectFactory.rb +53 -0
  38. data/lib/Ice/ObjectFactoryF.rb +28 -0
  39. data/lib/Ice/Plugin.rb +87 -0
  40. data/lib/Ice/PluginF.rb +32 -0
  41. data/lib/Ice/Process.rb +93 -0
  42. data/lib/Ice/ProcessF.rb +29 -0
  43. data/lib/Ice/Properties.rb +65 -0
  44. data/lib/Ice/PropertiesAdmin.rb +104 -0
  45. data/lib/Ice/PropertiesF.rb +33 -0
  46. data/lib/Ice/Router.rb +163 -0
  47. data/lib/Ice/RouterF.rb +29 -0
  48. data/lib/Ice/SliceChecksumDict.rb +28 -0
  49. data/lib/Ice/Version.rb +100 -0
  50. data/lib/IceBox.rb +10 -0
  51. data/lib/IceBox/IceBox.rb +272 -0
  52. data/lib/IceGrid.rb +17 -0
  53. data/lib/IceGrid/Admin.rb +1076 -0
  54. data/lib/IceGrid/Descriptor.rb +1505 -0
  55. data/lib/IceGrid/Exception.rb +401 -0
  56. data/lib/IceGrid/FileParser.rb +105 -0
  57. data/lib/IceGrid/Locator.rb +105 -0
  58. data/lib/IceGrid/Observer.rb +571 -0
  59. data/lib/IceGrid/Query.rb +168 -0
  60. data/lib/IceGrid/Registry.rb +120 -0
  61. data/lib/IceGrid/Session.rb +114 -0
  62. data/lib/IceGrid/UserAccountMapper.rb +101 -0
  63. data/lib/IcePatch2.rb +10 -0
  64. data/lib/IcePatch2/FileInfo.rb +75 -0
  65. data/lib/IcePatch2/FileServer.rb +141 -0
  66. data/lib/IceRuby.so +0 -0
  67. data/lib/IceStorm.rb +11 -0
  68. data/lib/IceStorm/IceStorm.rb +463 -0
  69. data/lib/IceStorm/Metrics.rb +155 -0
  70. data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
  71. data/slice/Freeze/CatalogData.ice +49 -0
  72. data/slice/Freeze/Connection.ice +111 -0
  73. data/slice/Freeze/ConnectionF.ice +20 -0
  74. data/slice/Freeze/DB.ice +37 -0
  75. data/slice/Freeze/Evictor.ice +339 -0
  76. data/slice/Freeze/EvictorF.ice +22 -0
  77. data/slice/Freeze/EvictorStorage.ice +72 -0
  78. data/slice/Freeze/Exception.ice +100 -0
  79. data/slice/Freeze/Transaction.ice +57 -0
  80. data/slice/Freeze/TransactionalEvictor.ice +50 -0
  81. data/slice/Glacier2/Metrics.ice +77 -0
  82. data/slice/Glacier2/PermissionsVerifier.ice +105 -0
  83. data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
  84. data/slice/Glacier2/Router.ice +178 -0
  85. data/slice/Glacier2/RouterF.ice +20 -0
  86. data/slice/Glacier2/SSLInfo.ice +50 -0
  87. data/slice/Glacier2/Session.ice +273 -0
  88. data/slice/Ice/BuiltinSequences.ice +48 -0
  89. data/slice/Ice/Communicator.ice +567 -0
  90. data/slice/Ice/CommunicatorF.ice +20 -0
  91. data/slice/Ice/Connection.ice +323 -0
  92. data/slice/Ice/ConnectionF.ice +22 -0
  93. data/slice/Ice/Current.ice +160 -0
  94. data/slice/Ice/Endpoint.ice +227 -0
  95. data/slice/Ice/EndpointF.ice +32 -0
  96. data/slice/Ice/EndpointTypes.ice +38 -0
  97. data/slice/Ice/FacetMap.ice +25 -0
  98. data/slice/Ice/Identity.ice +59 -0
  99. data/slice/Ice/ImplicitContext.ice +109 -0
  100. data/slice/Ice/ImplicitContextF.ice +20 -0
  101. data/slice/Ice/Instrumentation.ice +499 -0
  102. data/slice/Ice/InstrumentationF.ice +26 -0
  103. data/slice/Ice/LocalException.ice +1015 -0
  104. data/slice/Ice/Locator.ice +227 -0
  105. data/slice/Ice/LocatorF.ice +21 -0
  106. data/slice/Ice/Logger.ice +86 -0
  107. data/slice/Ice/LoggerF.ice +20 -0
  108. data/slice/Ice/Metrics.ice +422 -0
  109. data/slice/Ice/ObjectAdapter.ice +673 -0
  110. data/slice/Ice/ObjectAdapterF.ice +20 -0
  111. data/slice/Ice/ObjectFactory.ice +60 -0
  112. data/slice/Ice/ObjectFactoryF.ice +20 -0
  113. data/slice/Ice/Plugin.ice +117 -0
  114. data/slice/Ice/PluginF.ice +21 -0
  115. data/slice/Ice/Process.ice +54 -0
  116. data/slice/Ice/ProcessF.ice +20 -0
  117. data/slice/Ice/Properties.ice +228 -0
  118. data/slice/Ice/PropertiesAdmin.ice +75 -0
  119. data/slice/Ice/PropertiesF.ice +21 -0
  120. data/slice/Ice/RemoteLogger.ice +232 -0
  121. data/slice/Ice/Router.ice +83 -0
  122. data/slice/Ice/RouterF.ice +20 -0
  123. data/slice/Ice/ServantLocator.ice +117 -0
  124. data/slice/Ice/ServantLocatorF.ice +20 -0
  125. data/slice/Ice/SliceChecksumDict.ice +25 -0
  126. data/slice/Ice/Version.ice +39 -0
  127. data/slice/IceBox/IceBox.ice +194 -0
  128. data/slice/IceDiscovery/IceDiscovery.ice +32 -0
  129. data/slice/IceGrid/Admin.ice +1578 -0
  130. data/slice/IceGrid/Descriptor.ice +1079 -0
  131. data/slice/IceGrid/Discovery.ice +73 -0
  132. data/slice/IceGrid/Exception.ice +383 -0
  133. data/slice/IceGrid/FileParser.ice +61 -0
  134. data/slice/IceGrid/Locator.ice +56 -0
  135. data/slice/IceGrid/Observer.ice +394 -0
  136. data/slice/IceGrid/PluginFacade.ice +316 -0
  137. data/slice/IceGrid/Query.ice +130 -0
  138. data/slice/IceGrid/Registry.ice +138 -0
  139. data/slice/IceGrid/Session.ice +124 -0
  140. data/slice/IceGrid/UserAccountMapper.ice +58 -0
  141. data/slice/IcePatch2/FileInfo.ice +49 -0
  142. data/slice/IcePatch2/FileServer.ice +129 -0
  143. data/slice/IceSSL/ConnectionInfo.ice +34 -0
  144. data/slice/IceSSL/EndpointInfo.ice +41 -0
  145. data/slice/IceStorm/IceStorm.ice +405 -0
  146. data/slice/IceStorm/Metrics.ice +71 -0
  147. metadata +207 -0
@@ -0,0 +1,29 @@
1
+ # **********************************************************************
2
+ #
3
+ # Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
4
+ #
5
+ # This copy of Ice is licensed to you under the terms described in the
6
+ # ICE_LICENSE file included in this distribution.
7
+ #
8
+ # **********************************************************************
9
+ #
10
+ # Ice version 3.6b
11
+ #
12
+ # <auto-generated>
13
+ #
14
+ # Generated from file `RouterF.ice'
15
+ #
16
+ # Warning: do not edit this file.
17
+ #
18
+ # </auto-generated>
19
+ #
20
+
21
+ require 'Ice'
22
+
23
+ module Glacier2
24
+
25
+ if not defined?(::Glacier2::T_Router)
26
+ T_Router = ::Ice::__declareClass('::Glacier2::Router')
27
+ T_RouterPrx = ::Ice::__declareProxy('::Glacier2::Router')
28
+ end
29
+ end
@@ -0,0 +1,79 @@
1
+ # **********************************************************************
2
+ #
3
+ # Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
4
+ #
5
+ # This copy of Ice is licensed to you under the terms described in the
6
+ # ICE_LICENSE file included in this distribution.
7
+ #
8
+ # **********************************************************************
9
+ #
10
+ # Ice version 3.6b
11
+ #
12
+ # <auto-generated>
13
+ #
14
+ # Generated from file `SSLInfo.ice'
15
+ #
16
+ # Warning: do not edit this file.
17
+ #
18
+ # </auto-generated>
19
+ #
20
+
21
+ require 'Ice'
22
+ require 'Ice/BuiltinSequences.rb'
23
+
24
+ module Glacier2
25
+
26
+ if not defined?(::Glacier2::SSLInfo)
27
+ class SSLInfo
28
+ def initialize(remoteHost='', remotePort=0, localHost='', localPort=0, cipher='', certs=nil)
29
+ @remoteHost = remoteHost
30
+ @remotePort = remotePort
31
+ @localHost = localHost
32
+ @localPort = localPort
33
+ @cipher = cipher
34
+ @certs = certs
35
+ end
36
+
37
+ def hash
38
+ _h = 0
39
+ _h = 5 * _h + @remoteHost.hash
40
+ _h = 5 * _h + @remotePort.hash
41
+ _h = 5 * _h + @localHost.hash
42
+ _h = 5 * _h + @localPort.hash
43
+ _h = 5 * _h + @cipher.hash
44
+ _h = 5 * _h + @certs.hash
45
+ _h % 0x7fffffff
46
+ end
47
+
48
+ def ==(other)
49
+ return false if
50
+ @remoteHost != other.remoteHost or
51
+ @remotePort != other.remotePort or
52
+ @localHost != other.localHost or
53
+ @localPort != other.localPort or
54
+ @cipher != other.cipher or
55
+ @certs != other.certs
56
+ true
57
+ end
58
+
59
+ def eql?(other)
60
+ return other.class == self.class && other == self
61
+ end
62
+
63
+ def inspect
64
+ ::Ice::__stringify(self, T_SSLInfo)
65
+ end
66
+
67
+ attr_accessor :remoteHost, :remotePort, :localHost, :localPort, :cipher, :certs
68
+ end
69
+
70
+ T_SSLInfo = ::Ice::__defineStruct('::Glacier2::SSLInfo', SSLInfo, [
71
+ ["remoteHost", ::Ice::T_string],
72
+ ["remotePort", ::Ice::T_int],
73
+ ["localHost", ::Ice::T_string],
74
+ ["localPort", ::Ice::T_int],
75
+ ["cipher", ::Ice::T_string],
76
+ ["certs", ::Ice::T_StringSeq]
77
+ ])
78
+ end
79
+ end
@@ -0,0 +1,470 @@
1
+ # **********************************************************************
2
+ #
3
+ # Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
4
+ #
5
+ # This copy of Ice is licensed to you under the terms described in the
6
+ # ICE_LICENSE file included in this distribution.
7
+ #
8
+ # **********************************************************************
9
+ #
10
+ # Ice version 3.6b
11
+ #
12
+ # <auto-generated>
13
+ #
14
+ # Generated from file `Session.ice'
15
+ #
16
+ # Warning: do not edit this file.
17
+ #
18
+ # </auto-generated>
19
+ #
20
+
21
+ require 'Ice'
22
+ require 'Ice/BuiltinSequences.rb'
23
+ require 'Ice/Identity.rb'
24
+ require 'Glacier2/SSLInfo.rb'
25
+
26
+ module Glacier2
27
+
28
+ if not defined?(::Glacier2::CannotCreateSessionException)
29
+ class CannotCreateSessionException < Ice::UserException
30
+ def initialize(reason='')
31
+ @reason = reason
32
+ end
33
+
34
+ def to_s
35
+ 'Glacier2::CannotCreateSessionException'
36
+ end
37
+
38
+ attr_accessor :reason
39
+ end
40
+
41
+ T_CannotCreateSessionException = ::Ice::__defineException('::Glacier2::CannotCreateSessionException', CannotCreateSessionException, true, nil, [["reason", ::Ice::T_string, false, 0]])
42
+ CannotCreateSessionException::ICE_TYPE = T_CannotCreateSessionException
43
+ end
44
+
45
+ if not defined?(::Glacier2::Session_mixin)
46
+ module Session_mixin
47
+ include ::Ice::Object_mixin
48
+
49
+ def ice_ids(current=nil)
50
+ ['::Glacier2::Session', '::Ice::Object']
51
+ end
52
+
53
+ def ice_id(current=nil)
54
+ '::Glacier2::Session'
55
+ end
56
+
57
+ #
58
+ # Operation signatures.
59
+ #
60
+ # def destroy(current=nil)
61
+
62
+ def inspect
63
+ ::Ice::__stringify(self, T_Session)
64
+ end
65
+ end
66
+ class Session
67
+ include Session_mixin
68
+
69
+ def Session.ice_staticId()
70
+ '::Glacier2::Session'
71
+ end
72
+ end
73
+ module SessionPrx_mixin
74
+
75
+ def destroy(_ctx=nil)
76
+ Session_mixin::OP_destroy.invoke(self, [], _ctx)
77
+ end
78
+ end
79
+ class SessionPrx < ::Ice::ObjectPrx
80
+ include SessionPrx_mixin
81
+
82
+ def SessionPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
83
+ ice_checkedCast(proxy, '::Glacier2::Session', facetOrCtx, _ctx)
84
+ end
85
+
86
+ def SessionPrx.uncheckedCast(proxy, facet=nil)
87
+ ice_uncheckedCast(proxy, facet)
88
+ end
89
+ def SessionPrx.ice_staticId()
90
+ '::Glacier2::Session'
91
+ end
92
+ end
93
+
94
+ if not defined?(::Glacier2::T_Session)
95
+ T_Session = ::Ice::__declareClass('::Glacier2::Session')
96
+ T_SessionPrx = ::Ice::__declareProxy('::Glacier2::Session')
97
+ end
98
+
99
+ T_Session.defineClass(Session, -1, true, false, nil, [], [])
100
+ Session_mixin::ICE_TYPE = T_Session
101
+
102
+ T_SessionPrx.defineProxy(SessionPrx, T_Session)
103
+ SessionPrx::ICE_TYPE = T_SessionPrx
104
+
105
+ Session_mixin::OP_destroy = ::Ice::__defineOperation('destroy', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], nil, [])
106
+ end
107
+
108
+ if not defined?(::Glacier2::StringSet_mixin)
109
+ module StringSet_mixin
110
+ include ::Ice::Object_mixin
111
+
112
+ def ice_ids(current=nil)
113
+ ['::Glacier2::StringSet', '::Ice::Object']
114
+ end
115
+
116
+ def ice_id(current=nil)
117
+ '::Glacier2::StringSet'
118
+ end
119
+
120
+ #
121
+ # Operation signatures.
122
+ #
123
+ # def add(additions, current=nil)
124
+ # def remove(deletions, current=nil)
125
+ # def get(current=nil)
126
+
127
+ def inspect
128
+ ::Ice::__stringify(self, T_StringSet)
129
+ end
130
+ end
131
+ class StringSet
132
+ include StringSet_mixin
133
+
134
+ def StringSet.ice_staticId()
135
+ '::Glacier2::StringSet'
136
+ end
137
+ end
138
+ module StringSetPrx_mixin
139
+
140
+ def add(additions, _ctx=nil)
141
+ StringSet_mixin::OP_add.invoke(self, [additions], _ctx)
142
+ end
143
+
144
+ def remove(deletions, _ctx=nil)
145
+ StringSet_mixin::OP_remove.invoke(self, [deletions], _ctx)
146
+ end
147
+
148
+ def get(_ctx=nil)
149
+ StringSet_mixin::OP_get.invoke(self, [], _ctx)
150
+ end
151
+ end
152
+ class StringSetPrx < ::Ice::ObjectPrx
153
+ include StringSetPrx_mixin
154
+
155
+ def StringSetPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
156
+ ice_checkedCast(proxy, '::Glacier2::StringSet', facetOrCtx, _ctx)
157
+ end
158
+
159
+ def StringSetPrx.uncheckedCast(proxy, facet=nil)
160
+ ice_uncheckedCast(proxy, facet)
161
+ end
162
+ def StringSetPrx.ice_staticId()
163
+ '::Glacier2::StringSet'
164
+ end
165
+ end
166
+
167
+ if not defined?(::Glacier2::T_StringSet)
168
+ T_StringSet = ::Ice::__declareClass('::Glacier2::StringSet')
169
+ T_StringSetPrx = ::Ice::__declareProxy('::Glacier2::StringSet')
170
+ end
171
+
172
+ T_StringSet.defineClass(StringSet, -1, true, false, nil, [], [])
173
+ StringSet_mixin::ICE_TYPE = T_StringSet
174
+
175
+ T_StringSetPrx.defineProxy(StringSetPrx, T_StringSet)
176
+ StringSetPrx::ICE_TYPE = T_StringSetPrx
177
+
178
+ StringSet_mixin::OP_add = ::Ice::__defineOperation('add', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_StringSeq, false, 0]], [], nil, [])
179
+ StringSet_mixin::OP_remove = ::Ice::__defineOperation('remove', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_StringSeq, false, 0]], [], nil, [])
180
+ StringSet_mixin::OP_get = ::Ice::__defineOperation('get', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::Ice::T_StringSeq, false, 0], [])
181
+ end
182
+
183
+ if not defined?(::Glacier2::IdentitySet_mixin)
184
+ module IdentitySet_mixin
185
+ include ::Ice::Object_mixin
186
+
187
+ def ice_ids(current=nil)
188
+ ['::Glacier2::IdentitySet', '::Ice::Object']
189
+ end
190
+
191
+ def ice_id(current=nil)
192
+ '::Glacier2::IdentitySet'
193
+ end
194
+
195
+ #
196
+ # Operation signatures.
197
+ #
198
+ # def add(additions, current=nil)
199
+ # def remove(deletions, current=nil)
200
+ # def get(current=nil)
201
+
202
+ def inspect
203
+ ::Ice::__stringify(self, T_IdentitySet)
204
+ end
205
+ end
206
+ class IdentitySet
207
+ include IdentitySet_mixin
208
+
209
+ def IdentitySet.ice_staticId()
210
+ '::Glacier2::IdentitySet'
211
+ end
212
+ end
213
+ module IdentitySetPrx_mixin
214
+
215
+ def add(additions, _ctx=nil)
216
+ IdentitySet_mixin::OP_add.invoke(self, [additions], _ctx)
217
+ end
218
+
219
+ def remove(deletions, _ctx=nil)
220
+ IdentitySet_mixin::OP_remove.invoke(self, [deletions], _ctx)
221
+ end
222
+
223
+ def get(_ctx=nil)
224
+ IdentitySet_mixin::OP_get.invoke(self, [], _ctx)
225
+ end
226
+ end
227
+ class IdentitySetPrx < ::Ice::ObjectPrx
228
+ include IdentitySetPrx_mixin
229
+
230
+ def IdentitySetPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
231
+ ice_checkedCast(proxy, '::Glacier2::IdentitySet', facetOrCtx, _ctx)
232
+ end
233
+
234
+ def IdentitySetPrx.uncheckedCast(proxy, facet=nil)
235
+ ice_uncheckedCast(proxy, facet)
236
+ end
237
+ def IdentitySetPrx.ice_staticId()
238
+ '::Glacier2::IdentitySet'
239
+ end
240
+ end
241
+
242
+ if not defined?(::Glacier2::T_IdentitySet)
243
+ T_IdentitySet = ::Ice::__declareClass('::Glacier2::IdentitySet')
244
+ T_IdentitySetPrx = ::Ice::__declareProxy('::Glacier2::IdentitySet')
245
+ end
246
+
247
+ T_IdentitySet.defineClass(IdentitySet, -1, true, false, nil, [], [])
248
+ IdentitySet_mixin::ICE_TYPE = T_IdentitySet
249
+
250
+ T_IdentitySetPrx.defineProxy(IdentitySetPrx, T_IdentitySet)
251
+ IdentitySetPrx::ICE_TYPE = T_IdentitySetPrx
252
+
253
+ IdentitySet_mixin::OP_add = ::Ice::__defineOperation('add', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
254
+ IdentitySet_mixin::OP_remove = ::Ice::__defineOperation('remove', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
255
+ IdentitySet_mixin::OP_get = ::Ice::__defineOperation('get', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::Ice::T_IdentitySeq, false, 0], [])
256
+ end
257
+
258
+ if not defined?(::Glacier2::SessionControl_mixin)
259
+ module SessionControl_mixin
260
+ include ::Ice::Object_mixin
261
+
262
+ def ice_ids(current=nil)
263
+ ['::Glacier2::SessionControl', '::Ice::Object']
264
+ end
265
+
266
+ def ice_id(current=nil)
267
+ '::Glacier2::SessionControl'
268
+ end
269
+
270
+ #
271
+ # Operation signatures.
272
+ #
273
+ # def categories(current=nil)
274
+ # def adapterIds(current=nil)
275
+ # def identities(current=nil)
276
+ # def getSessionTimeout(current=nil)
277
+ # def destroy(current=nil)
278
+
279
+ def inspect
280
+ ::Ice::__stringify(self, T_SessionControl)
281
+ end
282
+ end
283
+ class SessionControl
284
+ include SessionControl_mixin
285
+
286
+ def SessionControl.ice_staticId()
287
+ '::Glacier2::SessionControl'
288
+ end
289
+ end
290
+ module SessionControlPrx_mixin
291
+
292
+ def categories(_ctx=nil)
293
+ SessionControl_mixin::OP_categories.invoke(self, [], _ctx)
294
+ end
295
+
296
+ def adapterIds(_ctx=nil)
297
+ SessionControl_mixin::OP_adapterIds.invoke(self, [], _ctx)
298
+ end
299
+
300
+ def identities(_ctx=nil)
301
+ SessionControl_mixin::OP_identities.invoke(self, [], _ctx)
302
+ end
303
+
304
+ def getSessionTimeout(_ctx=nil)
305
+ SessionControl_mixin::OP_getSessionTimeout.invoke(self, [], _ctx)
306
+ end
307
+
308
+ def destroy(_ctx=nil)
309
+ SessionControl_mixin::OP_destroy.invoke(self, [], _ctx)
310
+ end
311
+ end
312
+ class SessionControlPrx < ::Ice::ObjectPrx
313
+ include SessionControlPrx_mixin
314
+
315
+ def SessionControlPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
316
+ ice_checkedCast(proxy, '::Glacier2::SessionControl', facetOrCtx, _ctx)
317
+ end
318
+
319
+ def SessionControlPrx.uncheckedCast(proxy, facet=nil)
320
+ ice_uncheckedCast(proxy, facet)
321
+ end
322
+ def SessionControlPrx.ice_staticId()
323
+ '::Glacier2::SessionControl'
324
+ end
325
+ end
326
+
327
+ if not defined?(::Glacier2::T_SessionControl)
328
+ T_SessionControl = ::Ice::__declareClass('::Glacier2::SessionControl')
329
+ T_SessionControlPrx = ::Ice::__declareProxy('::Glacier2::SessionControl')
330
+ end
331
+
332
+ T_SessionControl.defineClass(SessionControl, -1, true, false, nil, [], [])
333
+ SessionControl_mixin::ICE_TYPE = T_SessionControl
334
+
335
+ T_SessionControlPrx.defineProxy(SessionControlPrx, T_SessionControl)
336
+ SessionControlPrx::ICE_TYPE = T_SessionControlPrx
337
+
338
+ SessionControl_mixin::OP_categories = ::Ice::__defineOperation('categories', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], [::Glacier2::T_StringSetPrx, false, 0], [])
339
+ SessionControl_mixin::OP_adapterIds = ::Ice::__defineOperation('adapterIds', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], [::Glacier2::T_StringSetPrx, false, 0], [])
340
+ SessionControl_mixin::OP_identities = ::Ice::__defineOperation('identities', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], [::Glacier2::T_IdentitySetPrx, false, 0], [])
341
+ SessionControl_mixin::OP_getSessionTimeout = ::Ice::__defineOperation('getSessionTimeout', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::Ice::T_int, false, 0], [])
342
+ SessionControl_mixin::OP_destroy = ::Ice::__defineOperation('destroy', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], nil, [])
343
+ end
344
+
345
+ if not defined?(::Glacier2::SessionManager_mixin)
346
+ module SessionManager_mixin
347
+ include ::Ice::Object_mixin
348
+
349
+ def ice_ids(current=nil)
350
+ ['::Glacier2::SessionManager', '::Ice::Object']
351
+ end
352
+
353
+ def ice_id(current=nil)
354
+ '::Glacier2::SessionManager'
355
+ end
356
+
357
+ #
358
+ # Operation signatures.
359
+ #
360
+ # def create(userId, control, current=nil)
361
+
362
+ def inspect
363
+ ::Ice::__stringify(self, T_SessionManager)
364
+ end
365
+ end
366
+ class SessionManager
367
+ include SessionManager_mixin
368
+
369
+ def SessionManager.ice_staticId()
370
+ '::Glacier2::SessionManager'
371
+ end
372
+ end
373
+ module SessionManagerPrx_mixin
374
+
375
+ def create(userId, control, _ctx=nil)
376
+ SessionManager_mixin::OP_create.invoke(self, [userId, control], _ctx)
377
+ end
378
+ end
379
+ class SessionManagerPrx < ::Ice::ObjectPrx
380
+ include SessionManagerPrx_mixin
381
+
382
+ def SessionManagerPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
383
+ ice_checkedCast(proxy, '::Glacier2::SessionManager', facetOrCtx, _ctx)
384
+ end
385
+
386
+ def SessionManagerPrx.uncheckedCast(proxy, facet=nil)
387
+ ice_uncheckedCast(proxy, facet)
388
+ end
389
+ def SessionManagerPrx.ice_staticId()
390
+ '::Glacier2::SessionManager'
391
+ end
392
+ end
393
+
394
+ if not defined?(::Glacier2::T_SessionManager)
395
+ T_SessionManager = ::Ice::__declareClass('::Glacier2::SessionManager')
396
+ T_SessionManagerPrx = ::Ice::__declareProxy('::Glacier2::SessionManager')
397
+ end
398
+
399
+ T_SessionManager.defineClass(SessionManager, -1, true, false, nil, [], [])
400
+ SessionManager_mixin::ICE_TYPE = T_SessionManager
401
+
402
+ T_SessionManagerPrx.defineProxy(SessionManagerPrx, T_SessionManager)
403
+ SessionManagerPrx::ICE_TYPE = T_SessionManagerPrx
404
+
405
+ SessionManager_mixin::OP_create = ::Ice::__defineOperation('create', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, ::Ice::FormatType::SlicedFormat, [[::Ice::T_string, false, 0], [::Glacier2::T_SessionControlPrx, false, 0]], [], [::Glacier2::T_SessionPrx, false, 0], [::Glacier2::T_CannotCreateSessionException])
406
+ end
407
+
408
+ if not defined?(::Glacier2::SSLSessionManager_mixin)
409
+ module SSLSessionManager_mixin
410
+ include ::Ice::Object_mixin
411
+
412
+ def ice_ids(current=nil)
413
+ ['::Glacier2::SSLSessionManager', '::Ice::Object']
414
+ end
415
+
416
+ def ice_id(current=nil)
417
+ '::Glacier2::SSLSessionManager'
418
+ end
419
+
420
+ #
421
+ # Operation signatures.
422
+ #
423
+ # def create(info, control, current=nil)
424
+
425
+ def inspect
426
+ ::Ice::__stringify(self, T_SSLSessionManager)
427
+ end
428
+ end
429
+ class SSLSessionManager
430
+ include SSLSessionManager_mixin
431
+
432
+ def SSLSessionManager.ice_staticId()
433
+ '::Glacier2::SSLSessionManager'
434
+ end
435
+ end
436
+ module SSLSessionManagerPrx_mixin
437
+
438
+ def create(info, control, _ctx=nil)
439
+ SSLSessionManager_mixin::OP_create.invoke(self, [info, control], _ctx)
440
+ end
441
+ end
442
+ class SSLSessionManagerPrx < ::Ice::ObjectPrx
443
+ include SSLSessionManagerPrx_mixin
444
+
445
+ def SSLSessionManagerPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
446
+ ice_checkedCast(proxy, '::Glacier2::SSLSessionManager', facetOrCtx, _ctx)
447
+ end
448
+
449
+ def SSLSessionManagerPrx.uncheckedCast(proxy, facet=nil)
450
+ ice_uncheckedCast(proxy, facet)
451
+ end
452
+ def SSLSessionManagerPrx.ice_staticId()
453
+ '::Glacier2::SSLSessionManager'
454
+ end
455
+ end
456
+
457
+ if not defined?(::Glacier2::T_SSLSessionManager)
458
+ T_SSLSessionManager = ::Ice::__declareClass('::Glacier2::SSLSessionManager')
459
+ T_SSLSessionManagerPrx = ::Ice::__declareProxy('::Glacier2::SSLSessionManager')
460
+ end
461
+
462
+ T_SSLSessionManager.defineClass(SSLSessionManager, -1, true, false, nil, [], [])
463
+ SSLSessionManager_mixin::ICE_TYPE = T_SSLSessionManager
464
+
465
+ T_SSLSessionManagerPrx.defineProxy(SSLSessionManagerPrx, T_SSLSessionManager)
466
+ SSLSessionManagerPrx::ICE_TYPE = T_SSLSessionManagerPrx
467
+
468
+ SSLSessionManager_mixin::OP_create = ::Ice::__defineOperation('create', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, ::Ice::FormatType::SlicedFormat, [[::Glacier2::T_SSLInfo, false, 0], [::Glacier2::T_SessionControlPrx, false, 0]], [], [::Glacier2::T_SessionPrx, false, 0], [::Glacier2::T_CannotCreateSessionException])
469
+ end
470
+ end