~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to libdb/rpc_server/java/gen/__env_close_reply.java

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.10.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 128.
  • Revision ID: james.westby@ubuntu.com-20100517170206-xu1wmjuy40nt2sk0
Tags: upstream-2.30.1
ImportĀ upstreamĀ versionĀ 2.30.1

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 __env_close_reply implements XdrAble {
11
 
    public int status;
12
 
 
13
 
    public __env_close_reply() {
14
 
    }
15
 
 
16
 
    public __env_close_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 __env_close_reply.java