public interface ServiceContractResolverRegistry
Modifier and Type | Method and Description |
---|---|
URI |
getContractLocation(QName qname)
Resolves a service's QName to a URI representing the location of a
WSDL contract.
|
boolean |
isRegistered(ServiceContractResolver resolver)
Determines if a contract resolver is already registered with a
registry.
|
void |
register(ServiceContractResolver resolver)
Registers a contract resolver.
|
void |
unregister(ServiceContractResolver resolver)
Removes a contract resolver from the registry.
|
URI getContractLocation(QName qname)
getContractLocation
methods of the registered contract
resolvers to do the actual resolution.qname
- the service qname to resolve into a URIvoid register(ServiceContractResolver resolver)
resolver
- the contract resolver being registeredvoid unregister(ServiceContractResolver resolver)
resolver
- the contract resolver being removedboolean isRegistered(ServiceContractResolver resolver)
resolver
- the contract resolver for which to searchtrue
if the contract resolver is already registeredApache CXF