KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > core > DbRemote > DbInvokeClient


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Core License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: DbInvokeClient.java,v 1.4 2002/09/18 06:54:15 per_nyfelt Exp $
8

9 package org.ozoneDB.core.DbRemote;
10
11 import org.ozoneDB.DxLib.net.DxMultiServer;
12 import org.ozoneDB.DxLib.net.DxMultiServerClient;
13 import org.ozoneDB.core.User;
14
15 import java.io.IOException JavaDoc;
16 import java.net.Socket JavaDoc;
17
18 /**
19  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
20  * @version $Revision: 1.4 $Date: 2002/09/18 06:54:15 $
21  */

22 public class DbInvokeClient extends DxMultiServerClient {
23
24     public User user;
25
26     protected ProxyObjectGate proxyObjectGate;
27
28
29     public DbInvokeClient( Socket JavaDoc sock, DxMultiServer server ) throws IOException JavaDoc{
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 }
45
Popular Tags