blob: 8de224cba905505bf1a5f1c4adb20ea57f9c8479 (
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
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package Ice;
public interface ObjectPrx
{
public int ice_hash();
public boolean ice_isA(String __id);
public boolean ice_isA(String __id, java.util.Map __context);
public void ice_ping();
public void ice_ping(java.util.Map __context);
//public String[] ice_ids();
//public String[] ice_ids(java.util.Map __context);
public byte[] ice_invoke(String operation, boolean nonmutating,
byte[] inParams);
public byte[] ice_invoke(String operation, boolean nonmutating,
byte[] inParams, java.util.Map __context);
public Identity ice_getIdentity();
public ObjectPrx ice_newIdentity(Identity newIdentity);
public String ice_getFacet();
public ObjectPrx ice_newFacet(String newFacet);
public ObjectPrx ice_twoway();
public ObjectPrx ice_oneway();
public ObjectPrx ice_batchOneway();
public ObjectPrx ice_datagram();
public ObjectPrx ice_batchDatagram();
public ObjectPrx ice_secure(boolean b);
public ObjectPrx ice_timeout(int t);
public ObjectPrx ice_router(Ice.RouterPrx router);
public ObjectPrx ice_default();
public void ice_flush();
public boolean equals(java.lang.Object r);
}
|