1 22 package javax.xml.registry.infomodel; 23 24 import java.util.Collection ; 25 import java.util.Set ; 26 import javax.xml.registry.JAXRException ; 27 28 32 public interface RegistryPackage 33 extends RegistryEntry 34 { 35 public void addRegistryObject(RegistryObject registryObject) throws JAXRException ; 36 public void addRegistryObjects(Collection registryObjects) throws JAXRException ; 37 public Set getRegistryObjects() throws JAXRException ; 38 public void removeRegistryObject(RegistryObject registryObject) throws JAXRException ; 39 public void removeRegistryObjects(Collection registryObjects) throws JAXRException ; 40 41 } 42 | Popular Tags |