summaryrefslogtreecommitdiff
path: root/java/src/Ice/Object.java
blob: e1d54bf9293bdb413444de8f05485aad075968a1 (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
// **********************************************************************
//
// Copyright (c) 2003-2007 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 Ice;

public interface Object
{
    boolean equals(java.lang.Object rhs);

    java.lang.Object clone() throws java.lang.CloneNotSupportedException;

    int ice_hash();

    boolean ice_isA(String s);
    boolean ice_isA(String s, Current current);

    void ice_ping();
    void ice_ping(Current current);

    String[] ice_ids();
    String[] ice_ids(Current current);

    String ice_id();
    String ice_id(Current current);

    int ice_operationAttributes(String operation);

    void ice_preMarshal();
    void ice_postUnmarshal();

    IceInternal.DispatchStatus ice_dispatch(Request request, DispatchInterceptorAsyncCallback cb);

    IceInternal.DispatchStatus __dispatch(IceInternal.Incoming in, Current current);

    IceInternal.DispatchStatus __collocDispatch(IceInternal.Direct request);

    void __write(IceInternal.BasicStream __os);
    void __read(IceInternal.BasicStream __is, boolean __rid);

    void __write(OutputStream __outS);
    void __read(InputStream __inS, boolean __rid);
}