1 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 29 public class DatabaseRegistry extends BaseRegistry implements Registry 30 { 31 32 35 public void setEntry( RegistryEntry entry ) throws InvalidEntryException 36 { 37 39 super.setEntry(entry); 40 41 } 43 44 47 public void addEntry( RegistryEntry entry ) throws InvalidEntryException 48 { 49 51 super.addEntry(entry); 52 53 } 55 56 59 public void removeEntry( String name ) 60 { 61 63 super.removeEntry(name); 64 65 } 67 68 71 72 public void removeEntry( RegistryEntry entry ) 73 { 74 76 super.removeEntry(entry); 77 78 } 80 81 } | Popular Tags |