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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
|
// **********************************************************************
//
// Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package test.Ice.optional;
import test.Ice.optional.AMD.Test.*;
public final class AMDInitialI extends Initial
{
public void
shutdown_async(AMD_Initial_shutdown cb, Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
cb.ice_response();
}
public void
pingPong_async(AMD_Initial_pingPong cb, Ice.Object obj, Ice.Current current)
{
cb.ice_response(obj);
}
public void
opOptionalException_async(AMD_Initial_opOptionalException cb, Ice.IntOptional a, Ice.Optional<String> b,
Ice.Optional<OneOptional> o, Ice.Current current)
throws OptionalException
{
OptionalException ex = new OptionalException();
if(a.isSet())
{
ex.setA(a.get());
}
else
{
ex.clearA(); // The member "a" has a default value.
}
if(b.isSet())
{
ex.setB(b.get());
}
if(o.isSet())
{
ex.setO(o.get());
}
cb.ice_exception(ex);
}
public void
opDerivedException_async(AMD_Initial_opDerivedException cb, Ice.IntOptional a, Ice.Optional<String> b,
Ice.Optional<OneOptional> o, Ice.Current current)
throws OptionalException
{
DerivedException ex = new DerivedException();
if(a.isSet())
{
ex.setA(a.get());
}
else
{
ex.clearA(); // The member "a" has a default value.
}
if(b.isSet())
{
ex.setB(b.get());
ex.setSs(b.get());
}
else
{
ex.clearSs(); // The member "ss" has a default value.
}
if(o.isSet())
{
ex.setO(o.get());
ex.setO2(o.get());
}
cb.ice_exception(ex);
}
public void
opRequiredException_async(AMD_Initial_opRequiredException cb, Ice.IntOptional a, Ice.Optional<String> b,
Ice.Optional<OneOptional> o, Ice.Current current)
throws OptionalException
{
RequiredException ex = new RequiredException();
if(a.isSet())
{
ex.setA(a.get());
}
else
{
ex.clearA(); // The member "a" has a default value.
}
if(b.isSet())
{
ex.setB(b.get());
ex.ss = b.get();
}
if(o.isSet())
{
ex.setO(o.get());
ex.o2 = o.get();
}
cb.ice_exception(ex);
}
public void
opByte_async(AMD_Initial_opByte cb, Ice.ByteOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opByteReq_async(AMD_Initial_opByteReq cb, Ice.ByteOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opBool_async(AMD_Initial_opBool cb, Ice.BooleanOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opBoolReq_async(AMD_Initial_opBoolReq cb, Ice.BooleanOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opShort_async(AMD_Initial_opShort cb, Ice.ShortOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opShortReq_async(AMD_Initial_opShortReq cb, Ice.ShortOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opInt_async(AMD_Initial_opInt cb, Ice.IntOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opIntReq_async(AMD_Initial_opIntReq cb, Ice.IntOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opLong_async(AMD_Initial_opLong cb, Ice.LongOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opLongReq_async(AMD_Initial_opLongReq cb, Ice.LongOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opFloat_async(AMD_Initial_opFloat cb, Ice.FloatOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opFloatReq_async(AMD_Initial_opFloatReq cb, Ice.FloatOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opDouble_async(AMD_Initial_opDouble cb, Ice.DoubleOptional p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opDoubleReq_async(AMD_Initial_opDoubleReq cb, Ice.DoubleOptional p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opString_async(AMD_Initial_opString cb, Ice.Optional<String> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opStringReq_async(AMD_Initial_opStringReq cb, Ice.Optional<String> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opMyEnum_async(AMD_Initial_opMyEnum cb, Ice.Optional<MyEnum> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opMyEnumReq_async(AMD_Initial_opMyEnumReq cb, Ice.Optional<MyEnum> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opSmallStruct_async(AMD_Initial_opSmallStruct cb, Ice.Optional<SmallStruct> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opSmallStructReq_async(AMD_Initial_opSmallStructReq cb, Ice.Optional<SmallStruct> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opFixedStruct_async(AMD_Initial_opFixedStruct cb, Ice.Optional<FixedStruct> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opFixedStructReq_async(AMD_Initial_opFixedStructReq cb, Ice.Optional<FixedStruct> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opVarStruct_async(AMD_Initial_opVarStruct cb, Ice.Optional<VarStruct> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opVarStructReq_async(AMD_Initial_opVarStructReq cb, Ice.Optional<VarStruct> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opOneOptional_async(AMD_Initial_opOneOptional cb, Ice.Optional<OneOptional> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opOneOptionalReq_async(AMD_Initial_opOneOptionalReq cb, Ice.Optional<OneOptional> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opOneOptionalProxy_async(AMD_Initial_opOneOptionalProxy cb, Ice.Optional<OneOptionalPrx> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opOneOptionalProxyReq_async(AMD_Initial_opOneOptionalProxyReq cb, Ice.Optional<OneOptionalPrx> p1,
Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opByteSeq_async(AMD_Initial_opByteSeq cb, Ice.Optional<byte[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opByteSeqReq_async(AMD_Initial_opByteSeqReq cb, Ice.Optional<byte[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opBoolSeq_async(AMD_Initial_opBoolSeq cb, Ice.Optional<boolean[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opBoolSeqReq_async(AMD_Initial_opBoolSeqReq cb, Ice.Optional<boolean[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opShortSeq_async(AMD_Initial_opShortSeq cb, Ice.Optional<short[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opShortSeqReq_async(AMD_Initial_opShortSeqReq cb, Ice.Optional<short[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opIntSeq_async(AMD_Initial_opIntSeq cb, Ice.Optional<int[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opIntSeqReq_async(AMD_Initial_opIntSeqReq cb, Ice.Optional<int[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opLongSeq_async(AMD_Initial_opLongSeq cb, Ice.Optional<long[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opLongSeqReq_async(AMD_Initial_opLongSeqReq cb, Ice.Optional<long[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opFloatSeq_async(AMD_Initial_opFloatSeq cb, Ice.Optional<float[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opFloatSeqReq_async(AMD_Initial_opFloatSeqReq cb, Ice.Optional<float[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opDoubleSeq_async(AMD_Initial_opDoubleSeq cb, Ice.Optional<double[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opDoubleSeqReq_async(AMD_Initial_opDoubleSeqReq cb, Ice.Optional<double[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opStringSeq_async(AMD_Initial_opStringSeq cb, Ice.Optional<String[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opStringSeqReq_async(AMD_Initial_opStringSeqReq cb, Ice.Optional<String[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opSmallStructSeq_async(AMD_Initial_opSmallStructSeq cb, Ice.Optional<SmallStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opSmallStructSeqReq_async(AMD_Initial_opSmallStructSeqReq cb, Ice.Optional<SmallStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opSmallStructList_async(AMD_Initial_opSmallStructList cb, Ice.Optional<java.util.List<SmallStruct>> p1,
Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opSmallStructListReq_async(AMD_Initial_opSmallStructListReq cb, Ice.Optional<java.util.List<SmallStruct>> p1,
Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opFixedStructSeq_async(AMD_Initial_opFixedStructSeq cb, Ice.Optional<FixedStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opFixedStructSeqReq_async(AMD_Initial_opFixedStructSeqReq cb, Ice.Optional<FixedStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opFixedStructList_async(AMD_Initial_opFixedStructList cb, Ice.Optional<java.util.List<FixedStruct>> p1,
Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opFixedStructListReq_async(AMD_Initial_opFixedStructListReq cb, Ice.Optional<java.util.List<FixedStruct>> p1,
Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opVarStructSeq_async(AMD_Initial_opVarStructSeq cb, Ice.Optional<VarStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opVarStructSeqReq_async(AMD_Initial_opVarStructSeqReq cb, Ice.Optional<VarStruct[]> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opSerializable_async(AMD_Initial_opSerializable cb, Ice.Optional<SerializableClass> p1, Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opSerializableReq_async(AMD_Initial_opSerializableReq cb, Ice.Optional<SerializableClass> p1, Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opIntIntDict_async(AMD_Initial_opIntIntDict cb, Ice.Optional<java.util.Map<Integer, Integer>> p1,
Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opIntIntDictReq_async(AMD_Initial_opIntIntDictReq cb, Ice.Optional<java.util.Map<Integer, Integer>> p1,
Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opStringIntDict_async(AMD_Initial_opStringIntDict cb, Ice.Optional<java.util.Map<String, Integer>> p1,
Ice.Current current)
{
cb.ice_response(p1, p1);
}
public void
opStringIntDictReq_async(AMD_Initial_opStringIntDictReq cb, Ice.Optional<java.util.Map<String, Integer>> p1,
Ice.Current current)
{
cb.ice_response(p1.get(), p1.get());
}
public void
opClassAndUnknownOptional_async(AMD_Initial_opClassAndUnknownOptional cb, A p, Ice.Current current)
{
cb.ice_response();
}
public void
sendOptionalClass_async(AMD_Initial_sendOptionalClass cb, boolean req, Ice.Optional<OneOptional> o,
Ice.Current current)
{
cb.ice_response();
}
public void
returnOptionalClass_async(AMD_Initial_returnOptionalClass cb, boolean req, Ice.Current current)
{
cb.ice_response(new Ice.Optional<OneOptional>(new OneOptional(53)));
}
public void
supportsRequiredParams_async(AMD_Initial_supportsRequiredParams cb, Ice.Current current)
{
cb.ice_response(true);
}
public void
supportsJavaSerializable_async(AMD_Initial_supportsJavaSerializable cb, Ice.Current current)
{
cb.ice_response(true);
}
public void
supportsCsharpSerializable_async(AMD_Initial_supportsCsharpSerializable cb, Ice.Current current)
{
cb.ice_response(false);
}
}
|