01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-2001 by SMB GmbH. All rights reserved.
06: //
07: // $Id: Group.java,v 1.1.4.1 2002/08/23 16:42:41 per_nyfelt Exp $
08:
09: package org.ozoneDB.test.tx;
10:
11: import org.ozoneDB.*;
12:
13: public interface Group extends OzoneRemote {
14:
15: public void setName(String _name); /*update*/
16:
17: public String name();
18:
19: public User[] getAll();
20:
21: public void addUser(User user) throws Exception;
22:
23: public void populate(int n) throws Exception;
24:
25: public void crash();
26:
27: public String toString();
28: }
|