Package com.sun.xml.ws.api.wsdl.parser
Class MetaDataResolver
- java.lang.Object
-
- com.sun.xml.ws.api.wsdl.parser.MetaDataResolver
-
- Direct Known Subclasses:
MetadataResolverImpl
public abstract class MetaDataResolver extends Object
Resolves metadata such as WSDL/schema. This serves as extensibile plugin point which a wsdl parser can use to get the metadata from an endpoint.- Author:
- Vivek Pandey
-
-
Constructor Summary
Constructors Constructor Description MetaDataResolver()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ServiceDescriptorresolve(URI location)GivesServiceDescriptorresolved from the given location.
-
-
-
Method Detail
-
resolve
@Nullable public abstract ServiceDescriptor resolve(@NotNull URI location)
GivesServiceDescriptorresolved from the given location. TODO: Does this method need to propogate errors?- Parameters:
location- metadata location- Returns:
ServiceDescriptorresolved from the location. It may be null in the cases when MetadataResolver can get the metada associated with the metadata loction.
-
-