KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > registry > BusinessQueryManager


1 /*
2 * JBoss, Home of Professional Open Source
3 * Copyright 2005, JBoss Inc., and individual contributors as indicated
4 * by the @authors tag. See the copyright.txt in the distribution for a
5 * full listing of individual contributors.
6 *
7 * This is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this software; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21 */

22 package javax.xml.registry;
23
24 import java.util.Collection JavaDoc;
25 import javax.xml.registry.infomodel.Key JavaDoc;
26 import javax.xml.registry.infomodel.Concept JavaDoc;
27 import javax.xml.registry.infomodel.ClassificationScheme JavaDoc;
28
29 /**
30  * @author Scott.Stark@jboss.org
31  * @version $Revision: 37459 $
32  */

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