blob: f57c21fe8ec2c2c6d1825ac203b99be987e42f38 (
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
|
// **********************************************************************
//
// Copyright (c) 2003
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************
public final class InitialI extends _InitialDisp
{
public
InitialI(Ice.ObjectAdapter adapter)
{
_adapter = adapter;
_ca = MA.CAPrxHelper.uncheckedCast(
_adapter.addWithUUID(new CAI()));
_cb = MB.CBPrxHelper.uncheckedCast(
_adapter.addWithUUID(new CBI()));
_cc = MA.CCPrxHelper.uncheckedCast(
_adapter.addWithUUID(new CCI()));
_cd = MA.CDPrxHelper.uncheckedCast(
_adapter.addWithUUID(new CDI()));
_ia = MA.IAPrxHelper.uncheckedCast(
_adapter.addWithUUID(new IAI()));
_ib1 = MB.IB1PrxHelper.uncheckedCast(
_adapter.addWithUUID(new IB1I()));
_ib2 = MB.IB2PrxHelper.uncheckedCast(
_adapter.addWithUUID(new IB2I()));
_ic = MA.ICPrxHelper.uncheckedCast(
_adapter.addWithUUID(new ICI()));
}
public MA.CAPrx
caop(Ice.Current current)
{
return _ca;
}
public MB.CBPrx
cbop(Ice.Current current)
{
return _cb;
}
public MA.CCPrx
ccop(Ice.Current current)
{
return _cc;
}
public MA.CDPrx
cdop(Ice.Current current)
{
return _cd;
}
public MA.IAPrx
iaop(Ice.Current current)
{
return _ia;
}
public MB.IB1Prx
ib1op(Ice.Current current)
{
return _ib1;
}
public MB.IB2Prx
ib2op(Ice.Current current)
{
return _ib2;
}
public MA.ICPrx
icop(Ice.Current current)
{
return _ic;
}
public void
shutdown(Ice.Current current)
{
_adapter.getCommunicator().shutdown();
}
private Ice.ObjectAdapter _adapter;
private MA.CAPrx _ca;
private MB.CBPrx _cb;
private MA.CCPrx _cc;
private MA.CDPrx _cd;
private MA.IAPrx _ia;
private MB.IB1Prx _ib1;
private MB.IB2Prx _ib2;
private MA.ICPrx _ic;
}
|