Java Doc for IRegistry.java in  » Web-Services » XML-Registry-JAXR » org » apache » ws » scout » registry » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services » XML Registry JAXR » org.apache.ws.scout.registry 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.ws.scout.registry.IRegistry

All known Subclasses:   org.apache.ws.scout.registry.RegistryImpl,
IRegistry
public interface IRegistry (Code)
IRegistry interface.

Only the functions that scout relies on, are in this interface.

Borrowed from jUDDI.




Method Summary
 DispositionReportdeleteBinding(String authInfo, String[] bindingKeyArray)
    
 DispositionReportdeleteBusiness(String authInfo, String[] businessKeyArray)
    
 DispositionReportdeletePublisherAssertions(String authInfo, PublisherAssertion[] assertionArray)
    
 DispositionReportdeleteService(String authInfo, String[] serviceKeyArray)
    
 DispositionReportdeleteTModel(String authInfo, String[] tModelKeyArray)
     "Used to delete registered information about a tModel.
 Stringexecute(String uddiRequest, String urltype)
    
 BindingDetailfindBinding(String serviceKey, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows)
     "Used to locate specific bindings within a registered businessService.
 BusinessListfindBusiness(Name[] nameArray, DiscoveryURLs discoveryURLs, IdentifierBag identifierBag, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows)
     Used to locate information about one or more businesses.
 ServiceListfindService(String businessKey, Name[] nameArray, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows)
     "Used to locate specific services within a registered businessEntity.
 TModelListfindTModel(String name, CategoryBag categoryBag, IdentifierBag identifierBag, FindQualifiers findQualifiers, int maxRows)
     "Used to locate one or more tModel information structures.
 AssertionStatusReportgetAssertionStatusReport(String authInfo, String completionStatus)
    
 AuthTokengetAuthToken(String userID, String cred)
     "Used to request an authentication token from an Operator Site. Authentication tokens are required to use all other APIs defined in the publishers API.
 BusinessDetailgetBusinessDetail(String businessKey)
     "Used to get the full businessEntity information for one or more businesses.
 BusinessDetailgetBusinessDetail(String[] businessKeyVector)
     "Used to get the full businessEntity information for one or more businesses.
 URIgetInquiryURI()
    
 URIgetPublishURI()
    
 PublisherAssertionsgetPublisherAssertions(String authInfo)
    
 ServiceDetailgetServiceDetail(String serviceKey)
     "Used to get full details for a given set of registered businessService data.
 ServiceDetailgetServiceDetail(String[] serviceKeyArray)
     "Used to get full details for a given set of registered businessService data.
 TModelDetailgetTModelDetail(String tModelKey)
     "Used to get full details for a given set of registered tModel data.
 TModelDetailgetTModelDetail(String[] tModelKeyArray)
     "Used to get full details for a given set of registered tModel data.
 TransportgetTransport()
    
 BindingDetailsaveBinding(String authInfo, BindingTemplate[] bindingArray)
     "Used to register new bindingTemplate information or update existing bindingTemplate information.
 BusinessDetailsaveBusiness(String authInfo, BusinessEntity[] businessArray)
     "Used to register new businessEntity information or update existing businessEntity information.
 ServiceDetailsaveService(String authInfo, BusinessService[] serviceArray)
    
 TModelDetailsaveTModel(String authInfo, TModel[] tModelArray)
    
 voidsetInquiryURI(URI uri)
    
 voidsetPublishURI(URI uri)
    
 PublisherAssertionssetPublisherAssertions(String authInfo, PublisherAssertion[] assertionArray)
    
 voidsetTransport(Transport transport)
    



Method Detail
deleteBinding
DispositionReport deleteBinding(String authInfo, String[] bindingKeyArray) throws RegistryException(Code)
"Used to remove an existing bindingTemplate from the bindingTemplates collection that is part of a specified businessService structure."
exception:
  RegistryException - ;



deleteBusiness
DispositionReport deleteBusiness(String authInfo, String[] businessKeyArray) throws RegistryException(Code)
"Used to delete registered businessEntity information from the registry."
exception:
  RegistryException - ;



deletePublisherAssertions
DispositionReport deletePublisherAssertions(String authInfo, PublisherAssertion[] assertionArray) throws RegistryException(Code)

exception:
  RegistryException - ;



deleteService
DispositionReport deleteService(String authInfo, String[] serviceKeyArray) throws RegistryException(Code)
"Used to delete an existing businessService from the businessServices collection that is part of a specified businessEntity."
exception:
  RegistryException - ;



deleteTModel
DispositionReport deleteTModel(String authInfo, String[] tModelKeyArray) throws RegistryException(Code)
"Used to delete registered information about a tModel. If there are any references to a tModel when this call is made, the tModel will be marked deleted instead of being physically removed."
exception:
  RegistryException - ;



execute
String execute(String uddiRequest, String urltype) throws RegistryException(Code)



findBinding
BindingDetail findBinding(String serviceKey, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows) throws RegistryException(Code)
"Used to locate specific bindings within a registered businessService. Returns a bindingDetail message."
exception:
  RegistryException -



findBusiness
BusinessList findBusiness(Name[] nameArray, DiscoveryURLs discoveryURLs, IdentifierBag identifierBag, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows) throws RegistryException(Code)
Used to locate information about one or more businesses. Returns a businessList message that matches the conditions specified.
exception:
  RegistryException - ;



findService
ServiceList findService(String businessKey, Name[] nameArray, CategoryBag categoryBag, TModelBag tModelBag, FindQualifiers findQualifiers, int maxRows) throws RegistryException(Code)
"Used to locate specific services within a registered businessEntity. Return a serviceList message." From the XML spec (API, p18) it appears that the name, categoryBag, and tModelBag arguments are mutually exclusive.
exception:
  RegistryException - ;



findTModel
TModelList findTModel(String name, CategoryBag categoryBag, IdentifierBag identifierBag, FindQualifiers findQualifiers, int maxRows) throws RegistryException(Code)
"Used to locate one or more tModel information structures. Returns a tModelList structure."
exception:
  RegistryException - ;



getAssertionStatusReport
AssertionStatusReport getAssertionStatusReport(String authInfo, String completionStatus) throws RegistryException(Code)

exception:
  RegistryException - ;



getAuthToken
AuthToken getAuthToken(String userID, String cred) throws RegistryException(Code)
"Used to request an authentication token from an Operator Site. Authentication tokens are required to use all other APIs defined in the publishers API. This server serves as the program's equivalent of a login request."
exception:
  RegistryException - ;



getBusinessDetail
BusinessDetail getBusinessDetail(String businessKey) throws RegistryException(Code)
"Used to get the full businessEntity information for one or more businesses. Returns a businessDetail message."
exception:
  RegistryException - ;



getBusinessDetail
BusinessDetail getBusinessDetail(String[] businessKeyVector) throws RegistryException(Code)
"Used to get the full businessEntity information for one or more businesses. Returns a businessDetail message."
exception:
  RegistryException - ;



getInquiryURI
URI getInquiryURI()(Code)
Returns the inquiryURL.



getPublishURI
URI getPublishURI()(Code)
Returns the publishURL.



getPublisherAssertions
PublisherAssertions getPublisherAssertions(String authInfo) throws RegistryException(Code)

exception:
  RegistryException - ;



getServiceDetail
ServiceDetail getServiceDetail(String serviceKey) throws RegistryException(Code)
"Used to get full details for a given set of registered businessService data. Returns a serviceDetail message."
exception:
  RegistryException - ;



getServiceDetail
ServiceDetail getServiceDetail(String[] serviceKeyArray) throws RegistryException(Code)
"Used to get full details for a given set of registered businessService data. Returns a serviceDetail message."
exception:
  RegistryException - ;



getTModelDetail
TModelDetail getTModelDetail(String tModelKey) throws RegistryException(Code)
"Used to get full details for a given set of registered tModel data. Returns a tModelDetail message."
exception:
  RegistryException - ;



getTModelDetail
TModelDetail getTModelDetail(String[] tModelKeyArray) throws RegistryException(Code)
"Used to get full details for a given set of registered tModel data. Returns a tModelDetail message."
exception:
  RegistryException - ;



getTransport
Transport getTransport()(Code)
Returns the transport.



saveBinding
BindingDetail saveBinding(String authInfo, BindingTemplate[] bindingArray) throws RegistryException(Code)
"Used to register new bindingTemplate information or update existing bindingTemplate information. Use this to control information about technical capabilities exposed by a registered business."
exception:
  RegistryException - ;



saveBusiness
BusinessDetail saveBusiness(String authInfo, BusinessEntity[] businessArray) throws RegistryException(Code)
"Used to register new businessEntity information or update existing businessEntity information. Use this to control the overall information about the entire business. Of the save_x APIs this one has the broadest effect."
exception:
  RegistryException - ;



saveService
ServiceDetail saveService(String authInfo, BusinessService[] serviceArray) throws RegistryException(Code)
"Used to register or update complete information about a businessService exposed by a specified businessEntity."
exception:
  RegistryException - ;



saveTModel
TModelDetail saveTModel(String authInfo, TModel[] tModelArray) throws RegistryException(Code)
"Used to register or update complete information about a tModel."
exception:
  RegistryException - ;



setInquiryURI
void setInquiryURI(URI uri)(Code)

Parameters:
  inquiryURL - The inquiryURL to set.



setPublishURI
void setPublishURI(URI uri)(Code)

Parameters:
  publishURL - The publishURL to set.



setPublisherAssertions
PublisherAssertions setPublisherAssertions(String authInfo, PublisherAssertion[] assertionArray) throws RegistryException(Code)

exception:
  RegistryException - ;



setTransport
void setTransport(Transport transport)(Code)

Parameters:
  transport - The transport to set.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.