javax.xml.registry
Interface RegistryService


public interface RegistryService

This is the principal interface implemented by a JAXR provider. A registry client can get this interface from a Connection to a registry. It provides the methods that are used by the client to discover various capability specific interfaces implemented by the JAXR provider.

See Also:
Connection

Method Summary
 BulkResponse getBulkResponse(java.lang.String requestId)
          Returns the BulkResponse associated with specified requestId.
 BusinessLifeCycleManager getBusinessLifeCycleManager()
          Returns the BusinessLifeCycleManager object implemented by the JAXR provider
 BusinessQueryManager getBusinessQueryManager()
          Returns the BusinessQueryManager object implemented by the JAXR provider
 CapabilityProfile getCapabilityProfile()
          Returns the CapabilityProfile for the JAXR provider
 DeclarativeQueryManager getDeclarativeQueryManager()
          Returns the DeclarativeQueryManager object implemented by the JAXR provider.
 ClassificationScheme getDefaultPostalScheme()
          Get the default user-defined postal scheme for codifying the attributes of PostalAddress
 java.lang.String makeRegistrySpecificRequest(java.lang.String request)
          This method takes a String that is an XML request in a registry specific format.
 

Method Detail

getCapabilityProfile

public CapabilityProfile getCapabilityProfile()
                                       throws JAXRException
Returns the CapabilityProfile for the JAXR provider

Capability Level: 0
Returns:
the CapabilityProfile for a JAXR provider
Throws:
JAXRException - If the JAXR provider encounters an internal error
See Also:
LifeCycleManager

getBusinessLifeCycleManager

public BusinessLifeCycleManager getBusinessLifeCycleManager()
                                                     throws JAXRException
Returns the BusinessLifeCycleManager object implemented by the JAXR provider

Capability Level: 0
Returns:
the BusinessLifeCycleManager
Throws:
JAXRException - If the JAXR provider encounters an internal error
See Also:
LifeCycleManager

getBusinessQueryManager

public BusinessQueryManager getBusinessQueryManager()
                                             throws JAXRException
Returns the BusinessQueryManager object implemented by the JAXR provider

Capability Level: 0
Returns:
the BusinessQueryManaer
Throws:
JAXRException - If the JAXR provider encounters an internal error

getDeclarativeQueryManager

public DeclarativeQueryManager getDeclarativeQueryManager()
                                                   throws JAXRException,
                                                          UnsupportedCapabilityException
Returns the DeclarativeQueryManager object implemented by the JAXR provider.

Capability Level: 1
Returns:
the DeclarativeQueryManager
Throws:
JAXRException - If the JAXR provider encounters an internal error

getBulkResponse

public BulkResponse getBulkResponse(java.lang.String requestId)
                             throws InvalidRequestException,
                                    JAXRException
Returns the BulkResponse associated with specified requestId. Once a client retrieves a BulkResponse for a particular requestId any subsequent calls to retrieve the Bulkresponse for the same requestId should result in an InvalidRequestException.

Capability Level: 0
Parameters:
requestId - the id for a previous asynchronous request
Returns:
the BulkResponse that contains the result for the specified request
Throws:
InvalidRequestException - if no responses exist for specified requestId
JAXRException - If the JAXR provider encounters an internal error

getDefaultPostalScheme

public ClassificationScheme getDefaultPostalScheme()
                                            throws JAXRException
Get the default user-defined postal scheme for codifying the attributes of PostalAddress

Capability Level: 0
Returns:
the ClassificationScheme that is the default postal scheme
Throws:
JAXRException - If the JAXR provider encounters an internal error

makeRegistrySpecificRequest

public java.lang.String makeRegistrySpecificRequest(java.lang.String request)
                                             throws JAXRException
This method takes a String that is an XML request in a registry specific format. It sends the request to the registry and returns a String that is the registry specific XML response.

Capability Level: 0
Parameters:
request - the registry specific request in a String representation
Returns:
the String that is the XML response in a registry specific manner
Throws:
JAXRException - If the JAXR provider encounters an internal error