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 interface implemented by the JAXR provider
 BusinessQueryManager getBusinessQueryManager()
          Returns the BusinessQueryManager interface implemented by the JAXR provider
 CapabilityProfile getCapabilityProfile()
          Returns the CapabilityProfile for the JAXR provider
 DeclarativeQueryManager getDeclarativeQueryManager()
          Returns the DeclarativeQueryManager interface implemented by the JAXR provider Registries should throws UnsupportedCapabilityException if they do not implement this optional feature.
 ClassificationScheme getDefaultPostalScheme()
          Get the default user-defined postal scheme for codifying the attributes of PostalAddress
 LifeCycleManager getLifeCycleManager()
          Returns the basic LifeCycleManager interface implemented by the JAXR provider
 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
See Also:
LifeCycleManager

getBusinessLifeCycleManager

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

Capability Level: 0
See Also:
LifeCycleManager

getLifeCycleManager

public LifeCycleManager getLifeCycleManager()
                                     throws JAXRException
Returns the basic LifeCycleManager interface implemented by the JAXR provider

Capability Level: 0

getBusinessQueryManager

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

Capability Level: 0

getDeclarativeQueryManager

public DeclarativeQueryManager getDeclarativeQueryManager()
                                                   throws JAXRException,
                                                          UnsupportedCapabilityException
Returns the DeclarativeQueryManager interface implemented by the JAXR provider Registries should throws UnsupportedCapabilityException if they do not implement this optional feature.

Capability Level: 0 (optional)

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. Throws an InavlidRequestException if no responses exist for specified requestId.

Capability Level: 0

getDefaultPostalScheme

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

Capability Level: 0

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
Returns:
String that is the XML response in a registry specific manner.