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
|
/*
* Automatically generated by jrpcgen 0.95.1 on 3/19/02 10:30 AM
* jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
* See http://acplt.org/ks/remotetea.html for details
*/
package com.sleepycat.db.rpcserver;
import org.acplt.oncrpc.*;
import java.io.IOException;
public class __env_dbremove_msg implements XdrAble {
public int dbenvcl_id;
public int txnpcl_id;
public String name;
public String subdb;
public int flags;
public __env_dbremove_msg() {
}
public __env_dbremove_msg(XdrDecodingStream xdr)
throws OncRpcException, IOException {
xdrDecode(xdr);
}
public void xdrEncode(XdrEncodingStream xdr)
throws OncRpcException, IOException {
xdr.xdrEncodeInt(dbenvcl_id);
xdr.xdrEncodeInt(txnpcl_id);
xdr.xdrEncodeString(name);
xdr.xdrEncodeString(subdb);
xdr.xdrEncodeInt(flags);
}
public void xdrDecode(XdrDecodingStream xdr)
throws OncRpcException, IOException {
dbenvcl_id = xdr.xdrDecodeInt();
txnpcl_id = xdr.xdrDecodeInt();
name = xdr.xdrDecodeString();
subdb = xdr.xdrDecodeString();
flags = xdr.xdrDecodeInt();
}
}
// End of __env_dbremove_msg.java
|