1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om.registry.base;
18
19 import org.apache.jetspeed.om.registry.RegistryEntry;
20 import org.apache.jetspeed.om.registry.Registry;
21 import org.apache.jetspeed.om.registry.InvalidEntryException;
22
23 /***
24 * Provides base functionality within a Database Registry.
25 *
26 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
27 * @version $Id: DatabaseRegistry.java,v 1.3 2004/02/23 03:08:26 jford Exp $
28 */
29 public class DatabaseRegistry extends BaseRegistry implements Registry
30 {
31
32 /***
33 @see Registry#setEntry
34 */
35 public void setEntry( RegistryEntry entry ) throws InvalidEntryException
36 {
37
38
39 super.setEntry(entry);
40
41
42 }
43
44 /***
45 @see Registry#addEntry
46 */
47 public void addEntry( RegistryEntry entry ) throws InvalidEntryException
48 {
49
50
51 super.addEntry(entry);
52
53
54 }
55
56 /***
57 @see Registry#removeEntry
58 */
59 public void removeEntry( String name )
60 {
61
62
63 super.removeEntry(name);
64
65
66 }
67
68 /***
69 @see Registry#removeEntry
70 */
71
72 public void removeEntry( RegistryEntry entry )
73 {
74
75
76 super.removeEntry(entry);
77
78
79 }
80
81 }