mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BDB 4.1.24
This commit is contained in:
495
bdb/rpc_server/java/gen/DbServerStub.java
Normal file
495
bdb/rpc_server/java/gen/DbServerStub.java
Normal file
@ -0,0 +1,495 @@
|
||||
/*
|
||||
* 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;
|
||||
|
||||
import org.acplt.oncrpc.server.*;
|
||||
|
||||
/**
|
||||
*/
|
||||
public abstract class DbServerStub extends OncRpcServerStub implements OncRpcDispatchable {
|
||||
|
||||
public DbServerStub()
|
||||
throws OncRpcException, IOException {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public DbServerStub(int port)
|
||||
throws OncRpcException, IOException {
|
||||
info = new OncRpcServerTransportRegistrationInfo [] {
|
||||
new OncRpcServerTransportRegistrationInfo(db_server.DB_RPC_SERVERPROG, 4001),
|
||||
};
|
||||
transports = new OncRpcServerTransport [] {
|
||||
new OncRpcUdpServerTransport(this, port, info, 32768),
|
||||
new OncRpcTcpServerTransport(this, port, info, 32768)
|
||||
};
|
||||
}
|
||||
|
||||
public void dispatchOncRpcCall(OncRpcCallInformation call, int program, int version, int procedure)
|
||||
throws OncRpcException, IOException {
|
||||
if ( version == 4001 ) {
|
||||
switch ( procedure ) {
|
||||
case 1: {
|
||||
__env_cachesize_msg args$ = new __env_cachesize_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_cachesize_reply result$ = __DB_env_cachesize_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
__env_close_msg args$ = new __env_close_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_close_reply result$ = __DB_env_close_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 3: {
|
||||
__env_create_msg args$ = new __env_create_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_create_reply result$ = __DB_env_create_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 4: {
|
||||
__env_dbremove_msg args$ = new __env_dbremove_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_dbremove_reply result$ = __DB_env_dbremove_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 5: {
|
||||
__env_dbrename_msg args$ = new __env_dbrename_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_dbrename_reply result$ = __DB_env_dbrename_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 6: {
|
||||
__env_encrypt_msg args$ = new __env_encrypt_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_encrypt_reply result$ = __DB_env_encrypt_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 7: {
|
||||
__env_flags_msg args$ = new __env_flags_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_flags_reply result$ = __DB_env_flags_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 8: {
|
||||
__env_open_msg args$ = new __env_open_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_open_reply result$ = __DB_env_open_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 9: {
|
||||
__env_remove_msg args$ = new __env_remove_msg();
|
||||
call.retrieveCall(args$);
|
||||
__env_remove_reply result$ = __DB_env_remove_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 10: {
|
||||
__txn_abort_msg args$ = new __txn_abort_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_abort_reply result$ = __DB_txn_abort_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 11: {
|
||||
__txn_begin_msg args$ = new __txn_begin_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_begin_reply result$ = __DB_txn_begin_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 12: {
|
||||
__txn_commit_msg args$ = new __txn_commit_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_commit_reply result$ = __DB_txn_commit_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 13: {
|
||||
__txn_discard_msg args$ = new __txn_discard_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_discard_reply result$ = __DB_txn_discard_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 14: {
|
||||
__txn_prepare_msg args$ = new __txn_prepare_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_prepare_reply result$ = __DB_txn_prepare_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 15: {
|
||||
__txn_recover_msg args$ = new __txn_recover_msg();
|
||||
call.retrieveCall(args$);
|
||||
__txn_recover_reply result$ = __DB_txn_recover_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
__db_associate_msg args$ = new __db_associate_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_associate_reply result$ = __DB_db_associate_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 17: {
|
||||
__db_bt_maxkey_msg args$ = new __db_bt_maxkey_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_bt_maxkey_reply result$ = __DB_db_bt_maxkey_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
__db_bt_minkey_msg args$ = new __db_bt_minkey_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_bt_minkey_reply result$ = __DB_db_bt_minkey_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 19: {
|
||||
__db_close_msg args$ = new __db_close_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_close_reply result$ = __DB_db_close_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 20: {
|
||||
__db_create_msg args$ = new __db_create_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_create_reply result$ = __DB_db_create_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 21: {
|
||||
__db_del_msg args$ = new __db_del_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_del_reply result$ = __DB_db_del_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 22: {
|
||||
__db_encrypt_msg args$ = new __db_encrypt_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_encrypt_reply result$ = __DB_db_encrypt_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 23: {
|
||||
__db_extentsize_msg args$ = new __db_extentsize_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_extentsize_reply result$ = __DB_db_extentsize_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
__db_flags_msg args$ = new __db_flags_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_flags_reply result$ = __DB_db_flags_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 25: {
|
||||
__db_get_msg args$ = new __db_get_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_get_reply result$ = __DB_db_get_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
__db_h_ffactor_msg args$ = new __db_h_ffactor_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_h_ffactor_reply result$ = __DB_db_h_ffactor_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 27: {
|
||||
__db_h_nelem_msg args$ = new __db_h_nelem_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_h_nelem_reply result$ = __DB_db_h_nelem_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 28: {
|
||||
__db_key_range_msg args$ = new __db_key_range_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_key_range_reply result$ = __DB_db_key_range_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 29: {
|
||||
__db_lorder_msg args$ = new __db_lorder_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_lorder_reply result$ = __DB_db_lorder_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 30: {
|
||||
__db_open_msg args$ = new __db_open_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_open_reply result$ = __DB_db_open_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 31: {
|
||||
__db_pagesize_msg args$ = new __db_pagesize_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_pagesize_reply result$ = __DB_db_pagesize_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
__db_pget_msg args$ = new __db_pget_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_pget_reply result$ = __DB_db_pget_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 33: {
|
||||
__db_put_msg args$ = new __db_put_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_put_reply result$ = __DB_db_put_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
__db_re_delim_msg args$ = new __db_re_delim_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_re_delim_reply result$ = __DB_db_re_delim_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 35: {
|
||||
__db_re_len_msg args$ = new __db_re_len_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_re_len_reply result$ = __DB_db_re_len_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 36: {
|
||||
__db_re_pad_msg args$ = new __db_re_pad_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_re_pad_reply result$ = __DB_db_re_pad_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 37: {
|
||||
__db_remove_msg args$ = new __db_remove_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_remove_reply result$ = __DB_db_remove_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 38: {
|
||||
__db_rename_msg args$ = new __db_rename_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_rename_reply result$ = __DB_db_rename_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 39: {
|
||||
__db_stat_msg args$ = new __db_stat_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_stat_reply result$ = __DB_db_stat_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
__db_sync_msg args$ = new __db_sync_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_sync_reply result$ = __DB_db_sync_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 41: {
|
||||
__db_truncate_msg args$ = new __db_truncate_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_truncate_reply result$ = __DB_db_truncate_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 42: {
|
||||
__db_cursor_msg args$ = new __db_cursor_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_cursor_reply result$ = __DB_db_cursor_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 43: {
|
||||
__db_join_msg args$ = new __db_join_msg();
|
||||
call.retrieveCall(args$);
|
||||
__db_join_reply result$ = __DB_db_join_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 44: {
|
||||
__dbc_close_msg args$ = new __dbc_close_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_close_reply result$ = __DB_dbc_close_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 45: {
|
||||
__dbc_count_msg args$ = new __dbc_count_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_count_reply result$ = __DB_dbc_count_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 46: {
|
||||
__dbc_del_msg args$ = new __dbc_del_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_del_reply result$ = __DB_dbc_del_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 47: {
|
||||
__dbc_dup_msg args$ = new __dbc_dup_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_dup_reply result$ = __DB_dbc_dup_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
__dbc_get_msg args$ = new __dbc_get_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_get_reply result$ = __DB_dbc_get_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 49: {
|
||||
__dbc_pget_msg args$ = new __dbc_pget_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_pget_reply result$ = __DB_dbc_pget_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
case 50: {
|
||||
__dbc_put_msg args$ = new __dbc_put_msg();
|
||||
call.retrieveCall(args$);
|
||||
__dbc_put_reply result$ = __DB_dbc_put_4001(args$);
|
||||
call.reply(result$);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
call.failProcedureUnavailable();
|
||||
}
|
||||
} else {
|
||||
call.failProcedureUnavailable();
|
||||
}
|
||||
}
|
||||
|
||||
public abstract __env_cachesize_reply __DB_env_cachesize_4001(__env_cachesize_msg arg1);
|
||||
|
||||
public abstract __env_close_reply __DB_env_close_4001(__env_close_msg arg1);
|
||||
|
||||
public abstract __env_create_reply __DB_env_create_4001(__env_create_msg arg1);
|
||||
|
||||
public abstract __env_dbremove_reply __DB_env_dbremove_4001(__env_dbremove_msg arg1);
|
||||
|
||||
public abstract __env_dbrename_reply __DB_env_dbrename_4001(__env_dbrename_msg arg1);
|
||||
|
||||
public abstract __env_encrypt_reply __DB_env_encrypt_4001(__env_encrypt_msg arg1);
|
||||
|
||||
public abstract __env_flags_reply __DB_env_flags_4001(__env_flags_msg arg1);
|
||||
|
||||
public abstract __env_open_reply __DB_env_open_4001(__env_open_msg arg1);
|
||||
|
||||
public abstract __env_remove_reply __DB_env_remove_4001(__env_remove_msg arg1);
|
||||
|
||||
public abstract __txn_abort_reply __DB_txn_abort_4001(__txn_abort_msg arg1);
|
||||
|
||||
public abstract __txn_begin_reply __DB_txn_begin_4001(__txn_begin_msg arg1);
|
||||
|
||||
public abstract __txn_commit_reply __DB_txn_commit_4001(__txn_commit_msg arg1);
|
||||
|
||||
public abstract __txn_discard_reply __DB_txn_discard_4001(__txn_discard_msg arg1);
|
||||
|
||||
public abstract __txn_prepare_reply __DB_txn_prepare_4001(__txn_prepare_msg arg1);
|
||||
|
||||
public abstract __txn_recover_reply __DB_txn_recover_4001(__txn_recover_msg arg1);
|
||||
|
||||
public abstract __db_associate_reply __DB_db_associate_4001(__db_associate_msg arg1);
|
||||
|
||||
public abstract __db_bt_maxkey_reply __DB_db_bt_maxkey_4001(__db_bt_maxkey_msg arg1);
|
||||
|
||||
public abstract __db_bt_minkey_reply __DB_db_bt_minkey_4001(__db_bt_minkey_msg arg1);
|
||||
|
||||
public abstract __db_close_reply __DB_db_close_4001(__db_close_msg arg1);
|
||||
|
||||
public abstract __db_create_reply __DB_db_create_4001(__db_create_msg arg1);
|
||||
|
||||
public abstract __db_del_reply __DB_db_del_4001(__db_del_msg arg1);
|
||||
|
||||
public abstract __db_encrypt_reply __DB_db_encrypt_4001(__db_encrypt_msg arg1);
|
||||
|
||||
public abstract __db_extentsize_reply __DB_db_extentsize_4001(__db_extentsize_msg arg1);
|
||||
|
||||
public abstract __db_flags_reply __DB_db_flags_4001(__db_flags_msg arg1);
|
||||
|
||||
public abstract __db_get_reply __DB_db_get_4001(__db_get_msg arg1);
|
||||
|
||||
public abstract __db_h_ffactor_reply __DB_db_h_ffactor_4001(__db_h_ffactor_msg arg1);
|
||||
|
||||
public abstract __db_h_nelem_reply __DB_db_h_nelem_4001(__db_h_nelem_msg arg1);
|
||||
|
||||
public abstract __db_key_range_reply __DB_db_key_range_4001(__db_key_range_msg arg1);
|
||||
|
||||
public abstract __db_lorder_reply __DB_db_lorder_4001(__db_lorder_msg arg1);
|
||||
|
||||
public abstract __db_open_reply __DB_db_open_4001(__db_open_msg arg1);
|
||||
|
||||
public abstract __db_pagesize_reply __DB_db_pagesize_4001(__db_pagesize_msg arg1);
|
||||
|
||||
public abstract __db_pget_reply __DB_db_pget_4001(__db_pget_msg arg1);
|
||||
|
||||
public abstract __db_put_reply __DB_db_put_4001(__db_put_msg arg1);
|
||||
|
||||
public abstract __db_re_delim_reply __DB_db_re_delim_4001(__db_re_delim_msg arg1);
|
||||
|
||||
public abstract __db_re_len_reply __DB_db_re_len_4001(__db_re_len_msg arg1);
|
||||
|
||||
public abstract __db_re_pad_reply __DB_db_re_pad_4001(__db_re_pad_msg arg1);
|
||||
|
||||
public abstract __db_remove_reply __DB_db_remove_4001(__db_remove_msg arg1);
|
||||
|
||||
public abstract __db_rename_reply __DB_db_rename_4001(__db_rename_msg arg1);
|
||||
|
||||
public abstract __db_stat_reply __DB_db_stat_4001(__db_stat_msg arg1);
|
||||
|
||||
public abstract __db_sync_reply __DB_db_sync_4001(__db_sync_msg arg1);
|
||||
|
||||
public abstract __db_truncate_reply __DB_db_truncate_4001(__db_truncate_msg arg1);
|
||||
|
||||
public abstract __db_cursor_reply __DB_db_cursor_4001(__db_cursor_msg arg1);
|
||||
|
||||
public abstract __db_join_reply __DB_db_join_4001(__db_join_msg arg1);
|
||||
|
||||
public abstract __dbc_close_reply __DB_dbc_close_4001(__dbc_close_msg arg1);
|
||||
|
||||
public abstract __dbc_count_reply __DB_dbc_count_4001(__dbc_count_msg arg1);
|
||||
|
||||
public abstract __dbc_del_reply __DB_dbc_del_4001(__dbc_del_msg arg1);
|
||||
|
||||
public abstract __dbc_dup_reply __DB_dbc_dup_4001(__dbc_dup_msg arg1);
|
||||
|
||||
public abstract __dbc_get_reply __DB_dbc_get_4001(__dbc_get_msg arg1);
|
||||
|
||||
public abstract __dbc_pget_reply __DB_dbc_pget_4001(__dbc_pget_msg arg1);
|
||||
|
||||
public abstract __dbc_put_reply __DB_dbc_put_4001(__dbc_put_msg arg1);
|
||||
|
||||
}
|
||||
// End of DbServerStub.java
|
41
bdb/rpc_server/java/gen/__db_associate_msg.java
Normal file
41
bdb/rpc_server/java/gen/__db_associate_msg.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 4/25/02 11:01 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 __db_associate_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int sdbpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_associate_msg() {
|
||||
}
|
||||
|
||||
public __db_associate_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(sdbpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
sdbpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_associate_msg.java
|
32
bdb/rpc_server/java/gen/__db_associate_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_associate_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_associate_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_associate_reply() {
|
||||
}
|
||||
|
||||
public __db_associate_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_associate_reply.java
|
35
bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_bt_maxkey_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_bt_maxkey_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int maxkey;
|
||||
|
||||
public __db_bt_maxkey_msg() {
|
||||
}
|
||||
|
||||
public __db_bt_maxkey_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(maxkey);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
maxkey = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_bt_maxkey_msg.java
|
32
bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_bt_maxkey_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_bt_maxkey_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_bt_maxkey_reply() {
|
||||
}
|
||||
|
||||
public __db_bt_maxkey_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_bt_maxkey_reply.java
|
35
bdb/rpc_server/java/gen/__db_bt_minkey_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_bt_minkey_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_bt_minkey_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int minkey;
|
||||
|
||||
public __db_bt_minkey_msg() {
|
||||
}
|
||||
|
||||
public __db_bt_minkey_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(minkey);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
minkey = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_bt_minkey_msg.java
|
32
bdb/rpc_server/java/gen/__db_bt_minkey_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_bt_minkey_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_bt_minkey_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_bt_minkey_reply() {
|
||||
}
|
||||
|
||||
public __db_bt_minkey_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_bt_minkey_reply.java
|
35
bdb/rpc_server/java/gen/__db_close_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_close_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_close_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_close_msg() {
|
||||
}
|
||||
|
||||
public __db_close_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_close_msg.java
|
32
bdb/rpc_server/java/gen/__db_close_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_close_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_close_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_close_reply() {
|
||||
}
|
||||
|
||||
public __db_close_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_close_reply.java
|
35
bdb/rpc_server/java/gen/__db_create_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_create_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_create_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_create_msg() {
|
||||
}
|
||||
|
||||
public __db_create_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_create_msg.java
|
35
bdb/rpc_server/java/gen/__db_create_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_create_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_create_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dbcl_id;
|
||||
|
||||
public __db_create_reply() {
|
||||
}
|
||||
|
||||
public __db_create_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dbcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dbcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_create_reply.java
|
38
bdb/rpc_server/java/gen/__db_cursor_msg.java
Normal file
38
bdb/rpc_server/java/gen/__db_cursor_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_cursor_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_cursor_msg() {
|
||||
}
|
||||
|
||||
public __db_cursor_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_cursor_msg.java
|
35
bdb/rpc_server/java/gen/__db_cursor_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_cursor_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_cursor_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dbcidcl_id;
|
||||
|
||||
public __db_cursor_reply() {
|
||||
}
|
||||
|
||||
public __db_cursor_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dbcidcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dbcidcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_cursor_reply.java
|
53
bdb/rpc_server/java/gen/__db_del_msg.java
Normal file
53
bdb/rpc_server/java/gen/__db_del_msg.java
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_del_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int flags;
|
||||
|
||||
public __db_del_msg() {
|
||||
}
|
||||
|
||||
public __db_del_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_del_msg.java
|
32
bdb/rpc_server/java/gen/__db_del_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_del_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_del_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_del_reply() {
|
||||
}
|
||||
|
||||
public __db_del_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_del_reply.java
|
38
bdb/rpc_server/java/gen/__db_encrypt_msg.java
Normal file
38
bdb/rpc_server/java/gen/__db_encrypt_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 2/13/02 1:05 PM
|
||||
* 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 __db_encrypt_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public String passwd;
|
||||
public int flags;
|
||||
|
||||
public __db_encrypt_msg() {
|
||||
}
|
||||
|
||||
public __db_encrypt_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeString(passwd);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
passwd = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_encrypt_msg.java
|
32
bdb/rpc_server/java/gen/__db_encrypt_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_encrypt_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 2/13/02 1:05 PM
|
||||
* 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 __db_encrypt_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_encrypt_reply() {
|
||||
}
|
||||
|
||||
public __db_encrypt_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_encrypt_reply.java
|
35
bdb/rpc_server/java/gen/__db_extentsize_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_extentsize_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_extentsize_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int extentsize;
|
||||
|
||||
public __db_extentsize_msg() {
|
||||
}
|
||||
|
||||
public __db_extentsize_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(extentsize);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
extentsize = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_extentsize_msg.java
|
32
bdb/rpc_server/java/gen/__db_extentsize_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_extentsize_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_extentsize_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_extentsize_reply() {
|
||||
}
|
||||
|
||||
public __db_extentsize_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_extentsize_reply.java
|
35
bdb/rpc_server/java/gen/__db_flags_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_flags_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_flags_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_flags_msg() {
|
||||
}
|
||||
|
||||
public __db_flags_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_flags_msg.java
|
32
bdb/rpc_server/java/gen/__db_flags_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_flags_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_flags_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_flags_reply() {
|
||||
}
|
||||
|
||||
public __db_flags_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_flags_reply.java
|
68
bdb/rpc_server/java/gen/__db_get_msg.java
Normal file
68
bdb/rpc_server/java/gen/__db_get_msg.java
Normal file
@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_get_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __db_get_msg() {
|
||||
}
|
||||
|
||||
public __db_get_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_get_msg.java
|
38
bdb/rpc_server/java/gen/__db_get_reply.java
Normal file
38
bdb/rpc_server/java/gen/__db_get_reply.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_get_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] keydata;
|
||||
public byte [] datadata;
|
||||
|
||||
public __db_get_reply() {
|
||||
}
|
||||
|
||||
public __db_get_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_get_reply.java
|
35
bdb/rpc_server/java/gen/__db_h_ffactor_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_h_ffactor_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_h_ffactor_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int ffactor;
|
||||
|
||||
public __db_h_ffactor_msg() {
|
||||
}
|
||||
|
||||
public __db_h_ffactor_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(ffactor);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
ffactor = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_h_ffactor_msg.java
|
32
bdb/rpc_server/java/gen/__db_h_ffactor_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_h_ffactor_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_h_ffactor_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_h_ffactor_reply() {
|
||||
}
|
||||
|
||||
public __db_h_ffactor_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_h_ffactor_reply.java
|
35
bdb/rpc_server/java/gen/__db_h_nelem_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_h_nelem_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_h_nelem_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int nelem;
|
||||
|
||||
public __db_h_nelem_msg() {
|
||||
}
|
||||
|
||||
public __db_h_nelem_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(nelem);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
nelem = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_h_nelem_msg.java
|
32
bdb/rpc_server/java/gen/__db_h_nelem_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_h_nelem_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_h_nelem_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_h_nelem_reply() {
|
||||
}
|
||||
|
||||
public __db_h_nelem_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_h_nelem_reply.java
|
38
bdb/rpc_server/java/gen/__db_join_msg.java
Normal file
38
bdb/rpc_server/java/gen/__db_join_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_join_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int [] curs;
|
||||
public int flags;
|
||||
|
||||
public __db_join_msg() {
|
||||
}
|
||||
|
||||
public __db_join_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeIntVector(curs);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
curs = xdr.xdrDecodeIntVector();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_join_msg.java
|
35
bdb/rpc_server/java/gen/__db_join_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_join_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_join_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dbcidcl_id;
|
||||
|
||||
public __db_join_reply() {
|
||||
}
|
||||
|
||||
public __db_join_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dbcidcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dbcidcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_join_reply.java
|
53
bdb/rpc_server/java/gen/__db_key_range_msg.java
Normal file
53
bdb/rpc_server/java/gen/__db_key_range_msg.java
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_key_range_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int flags;
|
||||
|
||||
public __db_key_range_msg() {
|
||||
}
|
||||
|
||||
public __db_key_range_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_key_range_msg.java
|
41
bdb/rpc_server/java/gen/__db_key_range_reply.java
Normal file
41
bdb/rpc_server/java/gen/__db_key_range_reply.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_key_range_reply implements XdrAble {
|
||||
public int status;
|
||||
public double less;
|
||||
public double equal;
|
||||
public double greater;
|
||||
|
||||
public __db_key_range_reply() {
|
||||
}
|
||||
|
||||
public __db_key_range_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDouble(less);
|
||||
xdr.xdrEncodeDouble(equal);
|
||||
xdr.xdrEncodeDouble(greater);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
less = xdr.xdrDecodeDouble();
|
||||
equal = xdr.xdrDecodeDouble();
|
||||
greater = xdr.xdrDecodeDouble();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_key_range_reply.java
|
35
bdb/rpc_server/java/gen/__db_lorder_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_lorder_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_lorder_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int lorder;
|
||||
|
||||
public __db_lorder_msg() {
|
||||
}
|
||||
|
||||
public __db_lorder_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(lorder);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
lorder = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_lorder_msg.java
|
32
bdb/rpc_server/java/gen/__db_lorder_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_lorder_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_lorder_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_lorder_reply() {
|
||||
}
|
||||
|
||||
public __db_lorder_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_lorder_reply.java
|
50
bdb/rpc_server/java/gen/__db_open_msg.java
Normal file
50
bdb/rpc_server/java/gen/__db_open_msg.java
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 2/13/02 1:05 PM
|
||||
* 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 __db_open_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public String name;
|
||||
public String subdb;
|
||||
public int type;
|
||||
public int flags;
|
||||
public int mode;
|
||||
|
||||
public __db_open_msg() {
|
||||
}
|
||||
|
||||
public __db_open_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeString(name);
|
||||
xdr.xdrEncodeString(subdb);
|
||||
xdr.xdrEncodeInt(type);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
xdr.xdrEncodeInt(mode);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
name = xdr.xdrDecodeString();
|
||||
subdb = xdr.xdrDecodeString();
|
||||
type = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
mode = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_open_msg.java
|
44
bdb/rpc_server/java/gen/__db_open_reply.java
Normal file
44
bdb/rpc_server/java/gen/__db_open_reply.java
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_open_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dbcl_id;
|
||||
public int type;
|
||||
public int dbflags;
|
||||
public int lorder;
|
||||
|
||||
public __db_open_reply() {
|
||||
}
|
||||
|
||||
public __db_open_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dbcl_id);
|
||||
xdr.xdrEncodeInt(type);
|
||||
xdr.xdrEncodeInt(dbflags);
|
||||
xdr.xdrEncodeInt(lorder);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dbcl_id = xdr.xdrDecodeInt();
|
||||
type = xdr.xdrDecodeInt();
|
||||
dbflags = xdr.xdrDecodeInt();
|
||||
lorder = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_open_reply.java
|
35
bdb/rpc_server/java/gen/__db_pagesize_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_pagesize_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_pagesize_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int pagesize;
|
||||
|
||||
public __db_pagesize_msg() {
|
||||
}
|
||||
|
||||
public __db_pagesize_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(pagesize);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
pagesize = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_pagesize_msg.java
|
32
bdb/rpc_server/java/gen/__db_pagesize_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_pagesize_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_pagesize_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_pagesize_reply() {
|
||||
}
|
||||
|
||||
public __db_pagesize_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_pagesize_reply.java
|
83
bdb/rpc_server/java/gen/__db_pget_msg.java
Normal file
83
bdb/rpc_server/java/gen/__db_pget_msg.java
Normal file
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_pget_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int skeydlen;
|
||||
public int skeydoff;
|
||||
public int skeyulen;
|
||||
public int skeyflags;
|
||||
public byte [] skeydata;
|
||||
public int pkeydlen;
|
||||
public int pkeydoff;
|
||||
public int pkeyulen;
|
||||
public int pkeyflags;
|
||||
public byte [] pkeydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __db_pget_msg() {
|
||||
}
|
||||
|
||||
public __db_pget_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(skeydlen);
|
||||
xdr.xdrEncodeInt(skeydoff);
|
||||
xdr.xdrEncodeInt(skeyulen);
|
||||
xdr.xdrEncodeInt(skeyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(skeydata);
|
||||
xdr.xdrEncodeInt(pkeydlen);
|
||||
xdr.xdrEncodeInt(pkeydoff);
|
||||
xdr.xdrEncodeInt(pkeyulen);
|
||||
xdr.xdrEncodeInt(pkeyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(pkeydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
skeydlen = xdr.xdrDecodeInt();
|
||||
skeydoff = xdr.xdrDecodeInt();
|
||||
skeyulen = xdr.xdrDecodeInt();
|
||||
skeyflags = xdr.xdrDecodeInt();
|
||||
skeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
pkeydlen = xdr.xdrDecodeInt();
|
||||
pkeydoff = xdr.xdrDecodeInt();
|
||||
pkeyulen = xdr.xdrDecodeInt();
|
||||
pkeyflags = xdr.xdrDecodeInt();
|
||||
pkeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_pget_msg.java
|
41
bdb/rpc_server/java/gen/__db_pget_reply.java
Normal file
41
bdb/rpc_server/java/gen/__db_pget_reply.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_pget_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] skeydata;
|
||||
public byte [] pkeydata;
|
||||
public byte [] datadata;
|
||||
|
||||
public __db_pget_reply() {
|
||||
}
|
||||
|
||||
public __db_pget_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(skeydata);
|
||||
xdr.xdrEncodeDynamicOpaque(pkeydata);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
skeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
pkeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_pget_reply.java
|
68
bdb/rpc_server/java/gen/__db_put_msg.java
Normal file
68
bdb/rpc_server/java/gen/__db_put_msg.java
Normal file
@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_put_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __db_put_msg() {
|
||||
}
|
||||
|
||||
public __db_put_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_put_msg.java
|
35
bdb/rpc_server/java/gen/__db_put_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_put_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_put_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] keydata;
|
||||
|
||||
public __db_put_reply() {
|
||||
}
|
||||
|
||||
public __db_put_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_put_reply.java
|
35
bdb/rpc_server/java/gen/__db_re_delim_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_re_delim_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_delim_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int delim;
|
||||
|
||||
public __db_re_delim_msg() {
|
||||
}
|
||||
|
||||
public __db_re_delim_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(delim);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
delim = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_delim_msg.java
|
32
bdb/rpc_server/java/gen/__db_re_delim_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_re_delim_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_delim_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_re_delim_reply() {
|
||||
}
|
||||
|
||||
public __db_re_delim_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_delim_reply.java
|
35
bdb/rpc_server/java/gen/__db_re_len_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_re_len_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_len_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int len;
|
||||
|
||||
public __db_re_len_msg() {
|
||||
}
|
||||
|
||||
public __db_re_len_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(len);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
len = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_len_msg.java
|
32
bdb/rpc_server/java/gen/__db_re_len_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_re_len_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_len_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_re_len_reply() {
|
||||
}
|
||||
|
||||
public __db_re_len_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_len_reply.java
|
35
bdb/rpc_server/java/gen/__db_re_pad_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_re_pad_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_pad_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int pad;
|
||||
|
||||
public __db_re_pad_msg() {
|
||||
}
|
||||
|
||||
public __db_re_pad_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(pad);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
pad = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_pad_msg.java
|
32
bdb/rpc_server/java/gen/__db_re_pad_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_re_pad_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_re_pad_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_re_pad_reply() {
|
||||
}
|
||||
|
||||
public __db_re_pad_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_re_pad_reply.java
|
41
bdb/rpc_server/java/gen/__db_remove_msg.java
Normal file
41
bdb/rpc_server/java/gen/__db_remove_msg.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_remove_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public String name;
|
||||
public String subdb;
|
||||
public int flags;
|
||||
|
||||
public __db_remove_msg() {
|
||||
}
|
||||
|
||||
public __db_remove_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeString(name);
|
||||
xdr.xdrEncodeString(subdb);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
name = xdr.xdrDecodeString();
|
||||
subdb = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_remove_msg.java
|
32
bdb/rpc_server/java/gen/__db_remove_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_remove_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_remove_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_remove_reply() {
|
||||
}
|
||||
|
||||
public __db_remove_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_remove_reply.java
|
44
bdb/rpc_server/java/gen/__db_rename_msg.java
Normal file
44
bdb/rpc_server/java/gen/__db_rename_msg.java
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_rename_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public String name;
|
||||
public String subdb;
|
||||
public String newname;
|
||||
public int flags;
|
||||
|
||||
public __db_rename_msg() {
|
||||
}
|
||||
|
||||
public __db_rename_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeString(name);
|
||||
xdr.xdrEncodeString(subdb);
|
||||
xdr.xdrEncodeString(newname);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
name = xdr.xdrDecodeString();
|
||||
subdb = xdr.xdrDecodeString();
|
||||
newname = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_rename_msg.java
|
32
bdb/rpc_server/java/gen/__db_rename_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_rename_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_rename_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_rename_reply() {
|
||||
}
|
||||
|
||||
public __db_rename_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_rename_reply.java
|
35
bdb/rpc_server/java/gen/__db_stat_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_stat_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_stat_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_stat_msg() {
|
||||
}
|
||||
|
||||
public __db_stat_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_stat_msg.java
|
35
bdb/rpc_server/java/gen/__db_stat_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_stat_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_stat_reply implements XdrAble {
|
||||
public int status;
|
||||
public int [] stats;
|
||||
|
||||
public __db_stat_reply() {
|
||||
}
|
||||
|
||||
public __db_stat_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeIntVector(stats);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
stats = xdr.xdrDecodeIntVector();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_stat_reply.java
|
35
bdb/rpc_server/java/gen/__db_sync_msg.java
Normal file
35
bdb/rpc_server/java/gen/__db_sync_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_sync_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_sync_msg() {
|
||||
}
|
||||
|
||||
public __db_sync_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_sync_msg.java
|
32
bdb/rpc_server/java/gen/__db_sync_reply.java
Normal file
32
bdb/rpc_server/java/gen/__db_sync_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_sync_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __db_sync_reply() {
|
||||
}
|
||||
|
||||
public __db_sync_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_sync_reply.java
|
38
bdb/rpc_server/java/gen/__db_truncate_msg.java
Normal file
38
bdb/rpc_server/java/gen/__db_truncate_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_truncate_msg implements XdrAble {
|
||||
public int dbpcl_id;
|
||||
public int txnpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __db_truncate_msg() {
|
||||
}
|
||||
|
||||
public __db_truncate_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbpcl_id);
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbpcl_id = xdr.xdrDecodeInt();
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_truncate_msg.java
|
35
bdb/rpc_server/java/gen/__db_truncate_reply.java
Normal file
35
bdb/rpc_server/java/gen/__db_truncate_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __db_truncate_reply implements XdrAble {
|
||||
public int status;
|
||||
public int count;
|
||||
|
||||
public __db_truncate_reply() {
|
||||
}
|
||||
|
||||
public __db_truncate_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(count);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
count = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __db_truncate_reply.java
|
32
bdb/rpc_server/java/gen/__dbc_close_msg.java
Normal file
32
bdb/rpc_server/java/gen/__dbc_close_msg.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_close_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
|
||||
public __dbc_close_msg() {
|
||||
}
|
||||
|
||||
public __dbc_close_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_close_msg.java
|
32
bdb/rpc_server/java/gen/__dbc_close_reply.java
Normal file
32
bdb/rpc_server/java/gen/__dbc_close_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_close_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __dbc_close_reply() {
|
||||
}
|
||||
|
||||
public __dbc_close_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_close_reply.java
|
35
bdb/rpc_server/java/gen/__dbc_count_msg.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_count_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_count_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int flags;
|
||||
|
||||
public __dbc_count_msg() {
|
||||
}
|
||||
|
||||
public __dbc_count_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_count_msg.java
|
35
bdb/rpc_server/java/gen/__dbc_count_reply.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_count_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_count_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dupcount;
|
||||
|
||||
public __dbc_count_reply() {
|
||||
}
|
||||
|
||||
public __dbc_count_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dupcount);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dupcount = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_count_reply.java
|
35
bdb/rpc_server/java/gen/__dbc_del_msg.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_del_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_del_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int flags;
|
||||
|
||||
public __dbc_del_msg() {
|
||||
}
|
||||
|
||||
public __dbc_del_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_del_msg.java
|
32
bdb/rpc_server/java/gen/__dbc_del_reply.java
Normal file
32
bdb/rpc_server/java/gen/__dbc_del_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_del_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __dbc_del_reply() {
|
||||
}
|
||||
|
||||
public __dbc_del_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_del_reply.java
|
35
bdb/rpc_server/java/gen/__dbc_dup_msg.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_dup_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_dup_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int flags;
|
||||
|
||||
public __dbc_dup_msg() {
|
||||
}
|
||||
|
||||
public __dbc_dup_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_dup_msg.java
|
35
bdb/rpc_server/java/gen/__dbc_dup_reply.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_dup_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_dup_reply implements XdrAble {
|
||||
public int status;
|
||||
public int dbcidcl_id;
|
||||
|
||||
public __dbc_dup_reply() {
|
||||
}
|
||||
|
||||
public __dbc_dup_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(dbcidcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
dbcidcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_dup_reply.java
|
65
bdb/rpc_server/java/gen/__dbc_get_msg.java
Normal file
65
bdb/rpc_server/java/gen/__dbc_get_msg.java
Normal file
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_get_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __dbc_get_msg() {
|
||||
}
|
||||
|
||||
public __dbc_get_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_get_msg.java
|
38
bdb/rpc_server/java/gen/__dbc_get_reply.java
Normal file
38
bdb/rpc_server/java/gen/__dbc_get_reply.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_get_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] keydata;
|
||||
public byte [] datadata;
|
||||
|
||||
public __dbc_get_reply() {
|
||||
}
|
||||
|
||||
public __dbc_get_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_get_reply.java
|
80
bdb/rpc_server/java/gen/__dbc_pget_msg.java
Normal file
80
bdb/rpc_server/java/gen/__dbc_pget_msg.java
Normal file
@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_pget_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int skeydlen;
|
||||
public int skeydoff;
|
||||
public int skeyulen;
|
||||
public int skeyflags;
|
||||
public byte [] skeydata;
|
||||
public int pkeydlen;
|
||||
public int pkeydoff;
|
||||
public int pkeyulen;
|
||||
public int pkeyflags;
|
||||
public byte [] pkeydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __dbc_pget_msg() {
|
||||
}
|
||||
|
||||
public __dbc_pget_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(skeydlen);
|
||||
xdr.xdrEncodeInt(skeydoff);
|
||||
xdr.xdrEncodeInt(skeyulen);
|
||||
xdr.xdrEncodeInt(skeyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(skeydata);
|
||||
xdr.xdrEncodeInt(pkeydlen);
|
||||
xdr.xdrEncodeInt(pkeydoff);
|
||||
xdr.xdrEncodeInt(pkeyulen);
|
||||
xdr.xdrEncodeInt(pkeyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(pkeydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
skeydlen = xdr.xdrDecodeInt();
|
||||
skeydoff = xdr.xdrDecodeInt();
|
||||
skeyulen = xdr.xdrDecodeInt();
|
||||
skeyflags = xdr.xdrDecodeInt();
|
||||
skeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
pkeydlen = xdr.xdrDecodeInt();
|
||||
pkeydoff = xdr.xdrDecodeInt();
|
||||
pkeyulen = xdr.xdrDecodeInt();
|
||||
pkeyflags = xdr.xdrDecodeInt();
|
||||
pkeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_pget_msg.java
|
41
bdb/rpc_server/java/gen/__dbc_pget_reply.java
Normal file
41
bdb/rpc_server/java/gen/__dbc_pget_reply.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_pget_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] skeydata;
|
||||
public byte [] pkeydata;
|
||||
public byte [] datadata;
|
||||
|
||||
public __dbc_pget_reply() {
|
||||
}
|
||||
|
||||
public __dbc_pget_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(skeydata);
|
||||
xdr.xdrEncodeDynamicOpaque(pkeydata);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
skeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
pkeydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_pget_reply.java
|
65
bdb/rpc_server/java/gen/__dbc_put_msg.java
Normal file
65
bdb/rpc_server/java/gen/__dbc_put_msg.java
Normal file
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_put_msg implements XdrAble {
|
||||
public int dbccl_id;
|
||||
public int keydlen;
|
||||
public int keydoff;
|
||||
public int keyulen;
|
||||
public int keyflags;
|
||||
public byte [] keydata;
|
||||
public int datadlen;
|
||||
public int datadoff;
|
||||
public int dataulen;
|
||||
public int dataflags;
|
||||
public byte [] datadata;
|
||||
public int flags;
|
||||
|
||||
public __dbc_put_msg() {
|
||||
}
|
||||
|
||||
public __dbc_put_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbccl_id);
|
||||
xdr.xdrEncodeInt(keydlen);
|
||||
xdr.xdrEncodeInt(keydoff);
|
||||
xdr.xdrEncodeInt(keyulen);
|
||||
xdr.xdrEncodeInt(keyflags);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
xdr.xdrEncodeInt(datadlen);
|
||||
xdr.xdrEncodeInt(datadoff);
|
||||
xdr.xdrEncodeInt(dataulen);
|
||||
xdr.xdrEncodeInt(dataflags);
|
||||
xdr.xdrEncodeDynamicOpaque(datadata);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbccl_id = xdr.xdrDecodeInt();
|
||||
keydlen = xdr.xdrDecodeInt();
|
||||
keydoff = xdr.xdrDecodeInt();
|
||||
keyulen = xdr.xdrDecodeInt();
|
||||
keyflags = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
datadlen = xdr.xdrDecodeInt();
|
||||
datadoff = xdr.xdrDecodeInt();
|
||||
dataulen = xdr.xdrDecodeInt();
|
||||
dataflags = xdr.xdrDecodeInt();
|
||||
datadata = xdr.xdrDecodeDynamicOpaque();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_put_msg.java
|
35
bdb/rpc_server/java/gen/__dbc_put_reply.java
Normal file
35
bdb/rpc_server/java/gen/__dbc_put_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __dbc_put_reply implements XdrAble {
|
||||
public int status;
|
||||
public byte [] keydata;
|
||||
|
||||
public __dbc_put_reply() {
|
||||
}
|
||||
|
||||
public __dbc_put_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeDynamicOpaque(keydata);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
keydata = xdr.xdrDecodeDynamicOpaque();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __dbc_put_reply.java
|
41
bdb/rpc_server/java/gen/__env_cachesize_msg.java
Normal file
41
bdb/rpc_server/java/gen/__env_cachesize_msg.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_cachesize_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int gbytes;
|
||||
public int bytes;
|
||||
public int ncache;
|
||||
|
||||
public __env_cachesize_msg() {
|
||||
}
|
||||
|
||||
public __env_cachesize_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(gbytes);
|
||||
xdr.xdrEncodeInt(bytes);
|
||||
xdr.xdrEncodeInt(ncache);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
gbytes = xdr.xdrDecodeInt();
|
||||
bytes = xdr.xdrDecodeInt();
|
||||
ncache = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_cachesize_msg.java
|
32
bdb/rpc_server/java/gen/__env_cachesize_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_cachesize_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_cachesize_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_cachesize_reply() {
|
||||
}
|
||||
|
||||
public __env_cachesize_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_cachesize_reply.java
|
35
bdb/rpc_server/java/gen/__env_close_msg.java
Normal file
35
bdb/rpc_server/java/gen/__env_close_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_close_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int flags;
|
||||
|
||||
public __env_close_msg() {
|
||||
}
|
||||
|
||||
public __env_close_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_close_msg.java
|
32
bdb/rpc_server/java/gen/__env_close_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_close_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_close_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_close_reply() {
|
||||
}
|
||||
|
||||
public __env_close_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_close_reply.java
|
32
bdb/rpc_server/java/gen/__env_create_msg.java
Normal file
32
bdb/rpc_server/java/gen/__env_create_msg.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_create_msg implements XdrAble {
|
||||
public int timeout;
|
||||
|
||||
public __env_create_msg() {
|
||||
}
|
||||
|
||||
public __env_create_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(timeout);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
timeout = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_create_msg.java
|
35
bdb/rpc_server/java/gen/__env_create_reply.java
Normal file
35
bdb/rpc_server/java/gen/__env_create_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_create_reply implements XdrAble {
|
||||
public int status;
|
||||
public int envcl_id;
|
||||
|
||||
public __env_create_reply() {
|
||||
}
|
||||
|
||||
public __env_create_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(envcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
envcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_create_reply.java
|
44
bdb/rpc_server/java/gen/__env_dbremove_msg.java
Normal file
44
bdb/rpc_server/java/gen/__env_dbremove_msg.java
Normal file
@ -0,0 +1,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
|
32
bdb/rpc_server/java/gen/__env_dbremove_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_dbremove_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* 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_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_dbremove_reply() {
|
||||
}
|
||||
|
||||
public __env_dbremove_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_dbremove_reply.java
|
47
bdb/rpc_server/java/gen/__env_dbrename_msg.java
Normal file
47
bdb/rpc_server/java/gen/__env_dbrename_msg.java
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* 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_dbrename_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int txnpcl_id;
|
||||
public String name;
|
||||
public String subdb;
|
||||
public String newname;
|
||||
public int flags;
|
||||
|
||||
public __env_dbrename_msg() {
|
||||
}
|
||||
|
||||
public __env_dbrename_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.xdrEncodeString(newname);
|
||||
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();
|
||||
newname = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_dbrename_msg.java
|
32
bdb/rpc_server/java/gen/__env_dbrename_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_dbrename_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* 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_dbrename_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_dbrename_reply() {
|
||||
}
|
||||
|
||||
public __env_dbrename_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_dbrename_reply.java
|
38
bdb/rpc_server/java/gen/__env_encrypt_msg.java
Normal file
38
bdb/rpc_server/java/gen/__env_encrypt_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 2/13/02 1:05 PM
|
||||
* 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_encrypt_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public String passwd;
|
||||
public int flags;
|
||||
|
||||
public __env_encrypt_msg() {
|
||||
}
|
||||
|
||||
public __env_encrypt_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeString(passwd);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
passwd = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_encrypt_msg.java
|
32
bdb/rpc_server/java/gen/__env_encrypt_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_encrypt_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 2/13/02 1:05 PM
|
||||
* 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_encrypt_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_encrypt_reply() {
|
||||
}
|
||||
|
||||
public __env_encrypt_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_encrypt_reply.java
|
38
bdb/rpc_server/java/gen/__env_flags_msg.java
Normal file
38
bdb/rpc_server/java/gen/__env_flags_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_flags_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int flags;
|
||||
public int onoff;
|
||||
|
||||
public __env_flags_msg() {
|
||||
}
|
||||
|
||||
public __env_flags_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
xdr.xdrEncodeInt(onoff);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
onoff = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_flags_msg.java
|
32
bdb/rpc_server/java/gen/__env_flags_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_flags_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_flags_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_flags_reply() {
|
||||
}
|
||||
|
||||
public __env_flags_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_flags_reply.java
|
41
bdb/rpc_server/java/gen/__env_open_msg.java
Normal file
41
bdb/rpc_server/java/gen/__env_open_msg.java
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_open_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public String home;
|
||||
public int flags;
|
||||
public int mode;
|
||||
|
||||
public __env_open_msg() {
|
||||
}
|
||||
|
||||
public __env_open_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeString(home);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
xdr.xdrEncodeInt(mode);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
home = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
mode = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_open_msg.java
|
35
bdb/rpc_server/java/gen/__env_open_reply.java
Normal file
35
bdb/rpc_server/java/gen/__env_open_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_open_reply implements XdrAble {
|
||||
public int status;
|
||||
public int envcl_id;
|
||||
|
||||
public __env_open_reply() {
|
||||
}
|
||||
|
||||
public __env_open_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(envcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
envcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_open_reply.java
|
38
bdb/rpc_server/java/gen/__env_remove_msg.java
Normal file
38
bdb/rpc_server/java/gen/__env_remove_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_remove_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public String home;
|
||||
public int flags;
|
||||
|
||||
public __env_remove_msg() {
|
||||
}
|
||||
|
||||
public __env_remove_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeString(home);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
home = xdr.xdrDecodeString();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_remove_msg.java
|
32
bdb/rpc_server/java/gen/__env_remove_reply.java
Normal file
32
bdb/rpc_server/java/gen/__env_remove_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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_remove_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __env_remove_reply() {
|
||||
}
|
||||
|
||||
public __env_remove_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __env_remove_reply.java
|
32
bdb/rpc_server/java/gen/__txn_abort_msg.java
Normal file
32
bdb/rpc_server/java/gen/__txn_abort_msg.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_abort_msg implements XdrAble {
|
||||
public int txnpcl_id;
|
||||
|
||||
public __txn_abort_msg() {
|
||||
}
|
||||
|
||||
public __txn_abort_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_abort_msg.java
|
32
bdb/rpc_server/java/gen/__txn_abort_reply.java
Normal file
32
bdb/rpc_server/java/gen/__txn_abort_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_abort_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __txn_abort_reply() {
|
||||
}
|
||||
|
||||
public __txn_abort_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_abort_reply.java
|
38
bdb/rpc_server/java/gen/__txn_begin_msg.java
Normal file
38
bdb/rpc_server/java/gen/__txn_begin_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_begin_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int parentcl_id;
|
||||
public int flags;
|
||||
|
||||
public __txn_begin_msg() {
|
||||
}
|
||||
|
||||
public __txn_begin_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(parentcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
parentcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_begin_msg.java
|
35
bdb/rpc_server/java/gen/__txn_begin_reply.java
Normal file
35
bdb/rpc_server/java/gen/__txn_begin_reply.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_begin_reply implements XdrAble {
|
||||
public int status;
|
||||
public int txnidcl_id;
|
||||
|
||||
public __txn_begin_reply() {
|
||||
}
|
||||
|
||||
public __txn_begin_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
xdr.xdrEncodeInt(txnidcl_id);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
txnidcl_id = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_begin_reply.java
|
35
bdb/rpc_server/java/gen/__txn_commit_msg.java
Normal file
35
bdb/rpc_server/java/gen/__txn_commit_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_commit_msg implements XdrAble {
|
||||
public int txnpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __txn_commit_msg() {
|
||||
}
|
||||
|
||||
public __txn_commit_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_commit_msg.java
|
32
bdb/rpc_server/java/gen/__txn_commit_reply.java
Normal file
32
bdb/rpc_server/java/gen/__txn_commit_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_commit_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __txn_commit_reply() {
|
||||
}
|
||||
|
||||
public __txn_commit_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_commit_reply.java
|
35
bdb/rpc_server/java/gen/__txn_discard_msg.java
Normal file
35
bdb/rpc_server/java/gen/__txn_discard_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_discard_msg implements XdrAble {
|
||||
public int txnpcl_id;
|
||||
public int flags;
|
||||
|
||||
public __txn_discard_msg() {
|
||||
}
|
||||
|
||||
public __txn_discard_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_discard_msg.java
|
32
bdb/rpc_server/java/gen/__txn_discard_reply.java
Normal file
32
bdb/rpc_server/java/gen/__txn_discard_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_discard_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __txn_discard_reply() {
|
||||
}
|
||||
|
||||
public __txn_discard_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_discard_reply.java
|
35
bdb/rpc_server/java/gen/__txn_prepare_msg.java
Normal file
35
bdb/rpc_server/java/gen/__txn_prepare_msg.java
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_prepare_msg implements XdrAble {
|
||||
public int txnpcl_id;
|
||||
public byte [] gid;
|
||||
|
||||
public __txn_prepare_msg() {
|
||||
}
|
||||
|
||||
public __txn_prepare_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(txnpcl_id);
|
||||
xdr.xdrEncodeOpaque(gid, 128);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
txnpcl_id = xdr.xdrDecodeInt();
|
||||
gid = xdr.xdrDecodeOpaque(128);
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_prepare_msg.java
|
32
bdb/rpc_server/java/gen/__txn_prepare_reply.java
Normal file
32
bdb/rpc_server/java/gen/__txn_prepare_reply.java
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_prepare_reply implements XdrAble {
|
||||
public int status;
|
||||
|
||||
public __txn_prepare_reply() {
|
||||
}
|
||||
|
||||
public __txn_prepare_reply(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(status);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
status = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_prepare_reply.java
|
38
bdb/rpc_server/java/gen/__txn_recover_msg.java
Normal file
38
bdb/rpc_server/java/gen/__txn_recover_msg.java
Normal file
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
|
||||
* 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 __txn_recover_msg implements XdrAble {
|
||||
public int dbenvcl_id;
|
||||
public int count;
|
||||
public int flags;
|
||||
|
||||
public __txn_recover_msg() {
|
||||
}
|
||||
|
||||
public __txn_recover_msg(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdrDecode(xdr);
|
||||
}
|
||||
|
||||
public void xdrEncode(XdrEncodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
xdr.xdrEncodeInt(dbenvcl_id);
|
||||
xdr.xdrEncodeInt(count);
|
||||
xdr.xdrEncodeInt(flags);
|
||||
}
|
||||
|
||||
public void xdrDecode(XdrDecodingStream xdr)
|
||||
throws OncRpcException, IOException {
|
||||
dbenvcl_id = xdr.xdrDecodeInt();
|
||||
count = xdr.xdrDecodeInt();
|
||||
flags = xdr.xdrDecodeInt();
|
||||
}
|
||||
|
||||
}
|
||||
// End of __txn_recover_msg.java
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user