1 22 package javax.xml.registry; 23 24 import java.util.Collection ; 25 import javax.xml.registry.infomodel.RegistryObject ; 26 27 32 public interface QueryManager 33 { 34 public RegistryObject getRegistryObject(String id) throws JAXRException ; 35 public RegistryObject getRegistryObject(String id, String objectType) 36 throws JAXRException ; 37 38 public BulkResponse getRegistryObjects() throws JAXRException ; 39 public BulkResponse getRegistryObjects(String objectType) 40 throws JAXRException ; 41 public BulkResponse getRegistryObjects(Collection objectKeys) 42 throws JAXRException ; 43 public BulkResponse getRegistryObjects(Collection objectKeys, String objectType) 44 throws JAXRException ; 45 46 public RegistryService getRegistryService() throws JAXRException ; 47 } 48 | Popular Tags |