~vlad-lesin/percona-server/mysql-5.0.33-original

« back to all changes in this revision

Viewing changes to bdb/rpc_server/java/gen/__db_rename_reply.java

  • Committer: Vlad Lesin
  • Date: 2012-07-31 09:21:34 UTC
  • Revision ID: vladislav.lesin@percona.com-20120731092134-zfodx022b7992wsi
VirginĀ 5.0.33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
 
3
 * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
 
4
 * See http://acplt.org/ks/remotetea.html for details
 
5
 */
 
6
package com.sleepycat.db.rpcserver;
 
7
import org.acplt.oncrpc.*;
 
8
import java.io.IOException;
 
9
 
 
10
public class __db_rename_reply implements XdrAble {
 
11
    public int status;
 
12
 
 
13
    public __db_rename_reply() {
 
14
    }
 
15
 
 
16
    public __db_rename_reply(XdrDecodingStream xdr)
 
17
           throws OncRpcException, IOException {
 
18
        xdrDecode(xdr);
 
19
    }
 
20
 
 
21
    public void xdrEncode(XdrEncodingStream xdr)
 
22
           throws OncRpcException, IOException {
 
23
        xdr.xdrEncodeInt(status);
 
24
    }
 
25
 
 
26
    public void xdrDecode(XdrDecodingStream xdr)
 
27
           throws OncRpcException, IOException {
 
28
        status = xdr.xdrDecodeInt();
 
29
    }
 
30
 
 
31
}
 
32
// End of __db_rename_reply.java