1 7 8 package org.jboss.media.util.registry; 9 10 import java.util.Iterator ; 11 12 18 public interface Registry 19 { 20 28 public void bind(Object key, Object value) 29 throws ObjectAlreadyBoundException; 30 31 37 public void rebind(Object key, Object value); 38 39 46 public Object unbind(Object key) throws ObjectNotBoundException; 47 48 55 public Object lookup(Object key) throws ObjectNotBoundException; 56 57 62 public Iterator keyIterator(); 63 } 64 | Popular Tags |