1 22 package javax.xml.registry; 23 24 import java.util.Collection ; 25 import javax.xml.registry.infomodel.Key ; 26 import javax.xml.registry.infomodel.Concept ; 27 import javax.xml.registry.infomodel.ClassificationScheme ; 28 29 33 public interface BusinessQueryManager 34 extends QueryManager  35 { 36 public BulkResponse findAssociations(Collection findQualifiers, 37 String sourceObjectId, String targetObjectId, 38 Collection associationTypes) 39 throws JAXRException ; 40 public BulkResponse findCallerAssociations(Collection findQualifiers, 41 Boolean confirmedByCaller, Boolean confirmedByOtherParty, 42 Collection associationTypes) 43 throws JAXRException ; 44 public ClassificationScheme findClassificationSchemeByName( 45 Collection findQualifiers, String namePattern) 46 throws JAXRException ; 47 public BulkResponse findClassificationSchemes(Collection findQualifiers, 48 Collection namePatterns, Collection classifications, 49 Collection externalLinks) 50 throws JAXRException ; 51 public Concept findConceptByPath(String path) 52 throws JAXRException ; 53 public BulkResponse findConcepts(Collection findQualifiers, 54 Collection namePatterns, Collection classifications, 55 Collection externalIdentifiers, Collection externalLinks) 56 throws JAXRException ; 57 public BulkResponse findOrganizations(Collection findQualifiers, 58 Collection namePatterns, Collection classifications, 59 Collection specifications, Collection externalIdentifiers, 60 Collection externalLinks) 61 throws JAXRException ; 62 public BulkResponse findRegistryPackages(Collection findQualifiers, 63 Collection namePatterns, Collection classifications, 64 Collection externalLinks) 65 throws JAXRException ; 66 public BulkResponse findServiceBindings(Key serviceKey, 67 Collection findQualifiers, Collection classifications, 68 Collection specifications) 69 throws JAXRException ; 70 public BulkResponse findServices(Key orgKey, Collection findQualifiers, 71 Collection namePatterns, Collection classifications, 72 Collection specifications) 73 throws JAXRException ; 74 75 } 76 | Popular Tags |