01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Core License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: DbInvokeClient.java,v 1.2 2002/06/08 00:49:38 mediumnet Exp $
08:
09: package org.ozoneDB.core.DbRemote;
10:
11: import org.ozoneDB.DxLib.*;
12: import org.ozoneDB.DxLib.net.*;
13: import org.ozoneDB.*;
14: import org.ozoneDB.core.*;
15: import java.io.IOException;
16: import java.net.Socket;
17:
18: /**
19: * @author <a href="http://www.softwarebuero.de/">SMB</a>
20: * @version $Revision: 1.2 $Date: 2002/06/08 00:49:38 $
21: */
22: public class DbInvokeClient extends DxMultiServerClient {
23:
24: public User user;
25:
26: protected ProxyObjectGate proxyObjectGate;
27:
28: public DbInvokeClient(Socket sock, DxMultiServer server)
29: throws IOException {
30: super (sock, server);
31: proxyObjectGate = new ProxyObjectGate();
32: }
33:
34: public User getUser() {
35: return user;
36: }
37:
38: /**
39: Returns the ProxyObjectGate for this Client.
40: */
41: public ProxyObjectGate getProxyObjectGate() {
42: return proxyObjectGate;
43: }
44: }
|