Main Page | Class Hierarchy | Data Structures | Directories | File List | Data Fields | Related Pages

__db_remove_msg.java

00001 /*
00002  * Automatically generated by jrpcgen 0.95.1 on 8/2/05 1:49 PM
00003  * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
00004  * See http://acplt.org/ks/remotetea.html for details
00005  */
00006 package com.sleepycat.db.rpcserver;
00007 import org.acplt.oncrpc.*;
00008 import java.io.IOException;
00009 
00010 public class __db_remove_msg implements XdrAble {
00011     public int dbpcl_id;
00012     public String name;
00013     public String subdb;
00014     public int flags;
00015 
00016     public __db_remove_msg() {
00017     }
00018 
00019     public __db_remove_msg(XdrDecodingStream xdr)
00020            throws OncRpcException, IOException {
00021         xdrDecode(xdr);
00022     }
00023 
00024     public void xdrEncode(XdrEncodingStream xdr)
00025            throws OncRpcException, IOException {
00026         xdr.xdrEncodeInt(dbpcl_id);
00027         xdr.xdrEncodeString(name);
00028         xdr.xdrEncodeString(subdb);
00029         xdr.xdrEncodeInt(flags);
00030     }
00031 
00032     public void xdrDecode(XdrDecodingStream xdr)
00033            throws OncRpcException, IOException {
00034         dbpcl_id = xdr.xdrDecodeInt();
00035         name = xdr.xdrDecodeString();
00036         subdb = xdr.xdrDecodeString();
00037         flags = xdr.xdrDecodeInt();
00038     }
00039 
00040 }
00041 // End of __db_remove_msg.java

Generated on Sun Dec 25 12:14:48 2005 for Berkeley DB 4.4.16 by  doxygen 1.4.2