01: /**
02: *
03: * Copyright 2003-2004 The Apache Software Foundation
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package javax.xml.registry;
17:
18: import java.util.Collection;
19:
20: import javax.xml.registry.infomodel.ClassificationScheme;
21: import javax.xml.registry.infomodel.Concept;
22: import javax.xml.registry.infomodel.Key;
23:
24: /**
25: * @version $Revision$ $Date$
26: */
27: public interface BusinessQueryManager extends QueryManager {
28: BulkResponse findAssociations(Collection findQualifiers,
29: String sourceObjectId, String targetObjectId,
30: Collection associationTypes) throws JAXRException;
31:
32: BulkResponse findCallerAssociations(Collection findQualifiers,
33: Boolean confirmedByCaller, Boolean confirmedByOtherParty,
34: Collection associationTypes) throws JAXRException;
35:
36: ClassificationScheme findClassificationSchemeByName(
37: Collection findQualifiers, String namePatters)
38: throws JAXRException;
39:
40: BulkResponse findClassificationSchemes(Collection findQualifiers,
41: Collection namePatterns, Collection classifications,
42: Collection externalLinks) throws JAXRException;
43:
44: Concept findConceptByPath(String path) throws JAXRException;
45:
46: BulkResponse findConcepts(Collection findQualifiers,
47: Collection namePatterns, Collection classifications,
48: Collection externalIdentifiers, Collection externalLinks)
49: throws JAXRException;
50:
51: BulkResponse findOrganizations(Collection findQualifiers,
52: Collection namePatterns, Collection classifications,
53: Collection specifications, Collection externalIdentifiers,
54: Collection externalLinks) throws JAXRException;
55:
56: BulkResponse findRegistryPackages(Collection findQualifiers,
57: Collection namePatterns, Collection classifications,
58: Collection externalLinks) throws JAXRException;
59:
60: BulkResponse findServiceBindings(Key serviceKey,
61: Collection findQualifiers, Collection classifications,
62: Collection specificationa) throws JAXRException;
63:
64: BulkResponse findServices(Key orgKey, Collection findQualifiers,
65: Collection namePattersn, Collection classifications,
66: Collection specificationa) throws JAXRException;
67:
68: }
|