zeroc-ice-x64-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-x64-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,401 @@
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 `Exception.ice'
15
+ #
16
+ # Warning: do not edit this file.
17
+ #
18
+ # </auto-generated>
19
+ #
20
+
21
+ require 'Ice'
22
+ require 'Ice/Identity.rb'
23
+ require 'Ice/BuiltinSequences.rb'
24
+
25
+ module IceGrid
26
+
27
+ if not defined?(::IceGrid::ApplicationNotExistException)
28
+ class ApplicationNotExistException < Ice::UserException
29
+ def initialize(name='')
30
+ @name = name
31
+ end
32
+
33
+ def to_s
34
+ 'IceGrid::ApplicationNotExistException'
35
+ end
36
+
37
+ attr_accessor :name
38
+ end
39
+
40
+ T_ApplicationNotExistException = ::Ice::__defineException('::IceGrid::ApplicationNotExistException', ApplicationNotExistException, false, nil, [["name", ::Ice::T_string, false, 0]])
41
+ ApplicationNotExistException::ICE_TYPE = T_ApplicationNotExistException
42
+ end
43
+
44
+ if not defined?(::IceGrid::ServerNotExistException)
45
+ class ServerNotExistException < Ice::UserException
46
+ def initialize(id='')
47
+ @id = id
48
+ end
49
+
50
+ def to_s
51
+ 'IceGrid::ServerNotExistException'
52
+ end
53
+
54
+ attr_accessor :id
55
+ end
56
+
57
+ T_ServerNotExistException = ::Ice::__defineException('::IceGrid::ServerNotExistException', ServerNotExistException, false, nil, [["id", ::Ice::T_string, false, 0]])
58
+ ServerNotExistException::ICE_TYPE = T_ServerNotExistException
59
+ end
60
+
61
+ if not defined?(::IceGrid::ServerStartException)
62
+ class ServerStartException < Ice::UserException
63
+ def initialize(id='', reason='')
64
+ @id = id
65
+ @reason = reason
66
+ end
67
+
68
+ def to_s
69
+ 'IceGrid::ServerStartException'
70
+ end
71
+
72
+ attr_accessor :id, :reason
73
+ end
74
+
75
+ T_ServerStartException = ::Ice::__defineException('::IceGrid::ServerStartException', ServerStartException, false, nil, [
76
+ ["id", ::Ice::T_string, false, 0],
77
+ ["reason", ::Ice::T_string, false, 0]
78
+ ])
79
+ ServerStartException::ICE_TYPE = T_ServerStartException
80
+ end
81
+
82
+ if not defined?(::IceGrid::ServerStopException)
83
+ class ServerStopException < Ice::UserException
84
+ def initialize(id='', reason='')
85
+ @id = id
86
+ @reason = reason
87
+ end
88
+
89
+ def to_s
90
+ 'IceGrid::ServerStopException'
91
+ end
92
+
93
+ attr_accessor :id, :reason
94
+ end
95
+
96
+ T_ServerStopException = ::Ice::__defineException('::IceGrid::ServerStopException', ServerStopException, false, nil, [
97
+ ["id", ::Ice::T_string, false, 0],
98
+ ["reason", ::Ice::T_string, false, 0]
99
+ ])
100
+ ServerStopException::ICE_TYPE = T_ServerStopException
101
+ end
102
+
103
+ if not defined?(::IceGrid::AdapterNotExistException)
104
+ class AdapterNotExistException < Ice::UserException
105
+ def initialize(id='')
106
+ @id = id
107
+ end
108
+
109
+ def to_s
110
+ 'IceGrid::AdapterNotExistException'
111
+ end
112
+
113
+ attr_accessor :id
114
+ end
115
+
116
+ T_AdapterNotExistException = ::Ice::__defineException('::IceGrid::AdapterNotExistException', AdapterNotExistException, false, nil, [["id", ::Ice::T_string, false, 0]])
117
+ AdapterNotExistException::ICE_TYPE = T_AdapterNotExistException
118
+ end
119
+
120
+ if not defined?(::IceGrid::ObjectExistsException)
121
+ class ObjectExistsException < Ice::UserException
122
+ def initialize(id=::Ice::Identity.new)
123
+ @id = id
124
+ end
125
+
126
+ def to_s
127
+ 'IceGrid::ObjectExistsException'
128
+ end
129
+
130
+ attr_accessor :id
131
+ end
132
+
133
+ T_ObjectExistsException = ::Ice::__defineException('::IceGrid::ObjectExistsException', ObjectExistsException, false, nil, [["id", ::Ice::T_Identity, false, 0]])
134
+ ObjectExistsException::ICE_TYPE = T_ObjectExistsException
135
+ end
136
+
137
+ if not defined?(::IceGrid::ObjectNotRegisteredException)
138
+ class ObjectNotRegisteredException < Ice::UserException
139
+ def initialize(id=::Ice::Identity.new)
140
+ @id = id
141
+ end
142
+
143
+ def to_s
144
+ 'IceGrid::ObjectNotRegisteredException'
145
+ end
146
+
147
+ attr_accessor :id
148
+ end
149
+
150
+ T_ObjectNotRegisteredException = ::Ice::__defineException('::IceGrid::ObjectNotRegisteredException', ObjectNotRegisteredException, false, nil, [["id", ::Ice::T_Identity, false, 0]])
151
+ ObjectNotRegisteredException::ICE_TYPE = T_ObjectNotRegisteredException
152
+ end
153
+
154
+ if not defined?(::IceGrid::NodeNotExistException)
155
+ class NodeNotExistException < Ice::UserException
156
+ def initialize(name='')
157
+ @name = name
158
+ end
159
+
160
+ def to_s
161
+ 'IceGrid::NodeNotExistException'
162
+ end
163
+
164
+ attr_accessor :name
165
+ end
166
+
167
+ T_NodeNotExistException = ::Ice::__defineException('::IceGrid::NodeNotExistException', NodeNotExistException, false, nil, [["name", ::Ice::T_string, false, 0]])
168
+ NodeNotExistException::ICE_TYPE = T_NodeNotExistException
169
+ end
170
+
171
+ if not defined?(::IceGrid::RegistryNotExistException)
172
+ class RegistryNotExistException < Ice::UserException
173
+ def initialize(name='')
174
+ @name = name
175
+ end
176
+
177
+ def to_s
178
+ 'IceGrid::RegistryNotExistException'
179
+ end
180
+
181
+ attr_accessor :name
182
+ end
183
+
184
+ T_RegistryNotExistException = ::Ice::__defineException('::IceGrid::RegistryNotExistException', RegistryNotExistException, false, nil, [["name", ::Ice::T_string, false, 0]])
185
+ RegistryNotExistException::ICE_TYPE = T_RegistryNotExistException
186
+ end
187
+
188
+ if not defined?(::IceGrid::DeploymentException)
189
+ class DeploymentException < Ice::UserException
190
+ def initialize(reason='')
191
+ @reason = reason
192
+ end
193
+
194
+ def to_s
195
+ 'IceGrid::DeploymentException'
196
+ end
197
+
198
+ attr_accessor :reason
199
+ end
200
+
201
+ T_DeploymentException = ::Ice::__defineException('::IceGrid::DeploymentException', DeploymentException, false, nil, [["reason", ::Ice::T_string, false, 0]])
202
+ DeploymentException::ICE_TYPE = T_DeploymentException
203
+ end
204
+
205
+ if not defined?(::IceGrid::NodeUnreachableException)
206
+ class NodeUnreachableException < Ice::UserException
207
+ def initialize(name='', reason='')
208
+ @name = name
209
+ @reason = reason
210
+ end
211
+
212
+ def to_s
213
+ 'IceGrid::NodeUnreachableException'
214
+ end
215
+
216
+ attr_accessor :name, :reason
217
+ end
218
+
219
+ T_NodeUnreachableException = ::Ice::__defineException('::IceGrid::NodeUnreachableException', NodeUnreachableException, false, nil, [
220
+ ["name", ::Ice::T_string, false, 0],
221
+ ["reason", ::Ice::T_string, false, 0]
222
+ ])
223
+ NodeUnreachableException::ICE_TYPE = T_NodeUnreachableException
224
+ end
225
+
226
+ if not defined?(::IceGrid::ServerUnreachableException)
227
+ class ServerUnreachableException < Ice::UserException
228
+ def initialize(name='', reason='')
229
+ @name = name
230
+ @reason = reason
231
+ end
232
+
233
+ def to_s
234
+ 'IceGrid::ServerUnreachableException'
235
+ end
236
+
237
+ attr_accessor :name, :reason
238
+ end
239
+
240
+ T_ServerUnreachableException = ::Ice::__defineException('::IceGrid::ServerUnreachableException', ServerUnreachableException, false, nil, [
241
+ ["name", ::Ice::T_string, false, 0],
242
+ ["reason", ::Ice::T_string, false, 0]
243
+ ])
244
+ ServerUnreachableException::ICE_TYPE = T_ServerUnreachableException
245
+ end
246
+
247
+ if not defined?(::IceGrid::RegistryUnreachableException)
248
+ class RegistryUnreachableException < Ice::UserException
249
+ def initialize(name='', reason='')
250
+ @name = name
251
+ @reason = reason
252
+ end
253
+
254
+ def to_s
255
+ 'IceGrid::RegistryUnreachableException'
256
+ end
257
+
258
+ attr_accessor :name, :reason
259
+ end
260
+
261
+ T_RegistryUnreachableException = ::Ice::__defineException('::IceGrid::RegistryUnreachableException', RegistryUnreachableException, false, nil, [
262
+ ["name", ::Ice::T_string, false, 0],
263
+ ["reason", ::Ice::T_string, false, 0]
264
+ ])
265
+ RegistryUnreachableException::ICE_TYPE = T_RegistryUnreachableException
266
+ end
267
+
268
+ if not defined?(::IceGrid::BadSignalException)
269
+ class BadSignalException < Ice::UserException
270
+ def initialize(reason='')
271
+ @reason = reason
272
+ end
273
+
274
+ def to_s
275
+ 'IceGrid::BadSignalException'
276
+ end
277
+
278
+ attr_accessor :reason
279
+ end
280
+
281
+ T_BadSignalException = ::Ice::__defineException('::IceGrid::BadSignalException', BadSignalException, false, nil, [["reason", ::Ice::T_string, false, 0]])
282
+ BadSignalException::ICE_TYPE = T_BadSignalException
283
+ end
284
+
285
+ if not defined?(::IceGrid::PatchException)
286
+ class PatchException < Ice::UserException
287
+ def initialize(reasons=nil)
288
+ @reasons = reasons
289
+ end
290
+
291
+ def to_s
292
+ 'IceGrid::PatchException'
293
+ end
294
+
295
+ attr_accessor :reasons
296
+ end
297
+
298
+ T_PatchException = ::Ice::__defineException('::IceGrid::PatchException', PatchException, false, nil, [["reasons", ::Ice::T_StringSeq, false, 0]])
299
+ PatchException::ICE_TYPE = T_PatchException
300
+ end
301
+
302
+ if not defined?(::IceGrid::AccessDeniedException)
303
+ class AccessDeniedException < Ice::UserException
304
+ def initialize(lockUserId='')
305
+ @lockUserId = lockUserId
306
+ end
307
+
308
+ def to_s
309
+ 'IceGrid::AccessDeniedException'
310
+ end
311
+
312
+ attr_accessor :lockUserId
313
+ end
314
+
315
+ T_AccessDeniedException = ::Ice::__defineException('::IceGrid::AccessDeniedException', AccessDeniedException, false, nil, [["lockUserId", ::Ice::T_string, false, 0]])
316
+ AccessDeniedException::ICE_TYPE = T_AccessDeniedException
317
+ end
318
+
319
+ if not defined?(::IceGrid::AllocationException)
320
+ class AllocationException < Ice::UserException
321
+ def initialize(reason='')
322
+ @reason = reason
323
+ end
324
+
325
+ def to_s
326
+ 'IceGrid::AllocationException'
327
+ end
328
+
329
+ attr_accessor :reason
330
+ end
331
+
332
+ T_AllocationException = ::Ice::__defineException('::IceGrid::AllocationException', AllocationException, false, nil, [["reason", ::Ice::T_string, false, 0]])
333
+ AllocationException::ICE_TYPE = T_AllocationException
334
+ end
335
+
336
+ if not defined?(::IceGrid::AllocationTimeoutException)
337
+ class AllocationTimeoutException < ::IceGrid::AllocationException
338
+ def initialize(reason='')
339
+ super(reason)
340
+ end
341
+
342
+ def to_s
343
+ 'IceGrid::AllocationTimeoutException'
344
+ end
345
+ end
346
+
347
+ T_AllocationTimeoutException = ::Ice::__defineException('::IceGrid::AllocationTimeoutException', AllocationTimeoutException, false, ::IceGrid::T_AllocationException, [])
348
+ AllocationTimeoutException::ICE_TYPE = T_AllocationTimeoutException
349
+ end
350
+
351
+ if not defined?(::IceGrid::PermissionDeniedException)
352
+ class PermissionDeniedException < Ice::UserException
353
+ def initialize(reason='')
354
+ @reason = reason
355
+ end
356
+
357
+ def to_s
358
+ 'IceGrid::PermissionDeniedException'
359
+ end
360
+
361
+ attr_accessor :reason
362
+ end
363
+
364
+ T_PermissionDeniedException = ::Ice::__defineException('::IceGrid::PermissionDeniedException', PermissionDeniedException, false, nil, [["reason", ::Ice::T_string, false, 0]])
365
+ PermissionDeniedException::ICE_TYPE = T_PermissionDeniedException
366
+ end
367
+
368
+ if not defined?(::IceGrid::ObserverAlreadyRegisteredException)
369
+ class ObserverAlreadyRegisteredException < Ice::UserException
370
+ def initialize(id=::Ice::Identity.new)
371
+ @id = id
372
+ end
373
+
374
+ def to_s
375
+ 'IceGrid::ObserverAlreadyRegisteredException'
376
+ end
377
+
378
+ attr_accessor :id
379
+ end
380
+
381
+ T_ObserverAlreadyRegisteredException = ::Ice::__defineException('::IceGrid::ObserverAlreadyRegisteredException', ObserverAlreadyRegisteredException, false, nil, [["id", ::Ice::T_Identity, false, 0]])
382
+ ObserverAlreadyRegisteredException::ICE_TYPE = T_ObserverAlreadyRegisteredException
383
+ end
384
+
385
+ if not defined?(::IceGrid::FileNotAvailableException)
386
+ class FileNotAvailableException < Ice::UserException
387
+ def initialize(reason='')
388
+ @reason = reason
389
+ end
390
+
391
+ def to_s
392
+ 'IceGrid::FileNotAvailableException'
393
+ end
394
+
395
+ attr_accessor :reason
396
+ end
397
+
398
+ T_FileNotAvailableException = ::Ice::__defineException('::IceGrid::FileNotAvailableException', FileNotAvailableException, false, nil, [["reason", ::Ice::T_string, false, 0]])
399
+ FileNotAvailableException::ICE_TYPE = T_FileNotAvailableException
400
+ end
401
+ end
@@ -0,0 +1,105 @@
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 `FileParser.ice'
15
+ #
16
+ # Warning: do not edit this file.
17
+ #
18
+ # </auto-generated>
19
+ #
20
+
21
+ require 'Ice'
22
+ require 'IceGrid/Admin.rb'
23
+
24
+ module IceGrid
25
+
26
+ if not defined?(::IceGrid::ParseException)
27
+ class ParseException < Ice::UserException
28
+ def initialize(reason='')
29
+ @reason = reason
30
+ end
31
+
32
+ def to_s
33
+ 'IceGrid::ParseException'
34
+ end
35
+
36
+ attr_accessor :reason
37
+ end
38
+
39
+ T_ParseException = ::Ice::__defineException('::IceGrid::ParseException', ParseException, false, nil, [["reason", ::Ice::T_string, false, 0]])
40
+ ParseException::ICE_TYPE = T_ParseException
41
+ end
42
+
43
+ if not defined?(::IceGrid::FileParser_mixin)
44
+ module FileParser_mixin
45
+ include ::Ice::Object_mixin
46
+
47
+ def ice_ids(current=nil)
48
+ ['::Ice::Object', '::IceGrid::FileParser']
49
+ end
50
+
51
+ def ice_id(current=nil)
52
+ '::IceGrid::FileParser'
53
+ end
54
+
55
+ #
56
+ # Operation signatures.
57
+ #
58
+ # def parse(xmlFile, adminProxy, current=nil)
59
+
60
+ def inspect
61
+ ::Ice::__stringify(self, T_FileParser)
62
+ end
63
+ end
64
+ class FileParser
65
+ include FileParser_mixin
66
+
67
+ def FileParser.ice_staticId()
68
+ '::IceGrid::FileParser'
69
+ end
70
+ end
71
+ module FileParserPrx_mixin
72
+
73
+ def parse(xmlFile, adminProxy, _ctx=nil)
74
+ FileParser_mixin::OP_parse.invoke(self, [xmlFile, adminProxy], _ctx)
75
+ end
76
+ end
77
+ class FileParserPrx < ::Ice::ObjectPrx
78
+ include FileParserPrx_mixin
79
+
80
+ def FileParserPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
81
+ ice_checkedCast(proxy, '::IceGrid::FileParser', facetOrCtx, _ctx)
82
+ end
83
+
84
+ def FileParserPrx.uncheckedCast(proxy, facet=nil)
85
+ ice_uncheckedCast(proxy, facet)
86
+ end
87
+ def FileParserPrx.ice_staticId()
88
+ '::IceGrid::FileParser'
89
+ end
90
+ end
91
+
92
+ if not defined?(::IceGrid::T_FileParser)
93
+ T_FileParser = ::Ice::__declareClass('::IceGrid::FileParser')
94
+ T_FileParserPrx = ::Ice::__declareProxy('::IceGrid::FileParser')
95
+ end
96
+
97
+ T_FileParser.defineClass(FileParser, -1, true, false, nil, [], [])
98
+ FileParser_mixin::ICE_TYPE = T_FileParser
99
+
100
+ T_FileParserPrx.defineProxy(FileParserPrx, T_FileParser)
101
+ FileParserPrx::ICE_TYPE = T_FileParserPrx
102
+
103
+ FileParser_mixin::OP_parse = ::Ice::__defineOperation('parse', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_string, false, 0], [::IceGrid::T_AdminPrx, false, 0]], [], [::IceGrid::T_ApplicationDescriptor, false, 0], [::IceGrid::T_ParseException])
104
+ end
105
+ end