KickJava   Java API By Example, From Geeks To Geeks.

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


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: DbOpen.java,v 1.2 2002/08/27 08:32:26 per_nyfelt Exp $
8

9 package org.ozoneDB.core.DbRemote;
10
11 import org.ozoneDB.core.*;
12
13
14 /**
15  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
16  * @version $Revision: 1.2 $Date: 2002/08/27 08:32:26 $
17  */

18 public class DbOpen extends DbCommand {
19
20     private String JavaDoc userName;
21
22
23     public DbOpen( String JavaDoc _userName ) {
24         userName = _userName;
25     }
26
27
28     public String JavaDoc userName() {
29         return userName;
30     }
31
32
33     public void perform( Transaction ta ) throws Exception JavaDoc {
34     //this command will be catched by the TransactionManager
35
}
36 }
37
Popular Tags