01: package org.apache.ojb.odmg.shared;
02:
03: import org.apache.ojb.broker.Zoo;
04:
05: /**
06: * This class just extends the Zoo class and doesn't add any functionality.
07: * It is necessary, so a different mapping can be used in the repository file
08: * (i.e. no auto-update,... as in Zoo)
09: * @author <a href="mailto:schneider@mendel.imp.univie.ac.at">Georg Schneider</a>
10: *
11: */
12: public class ODMGZoo extends Zoo {
13:
14: /**
15: * Constructor for ODMGZoo.
16: */
17: public ODMGZoo() {
18: super ();
19: }
20:
21: /**
22: * Constructor for ODMGZoo.
23: * @param name
24: */
25: public ODMGZoo(String name) {
26: super(name);
27: }
28:
29: }
|