Interface WSDLLocator


public interface WSDLLocator
This interface can act as an additional layer of indirection between a WSDLReader and the actual location of WSDL documents. One use could be to retrieve WSDL documents from JAR files, while still retaining the ability to resolve imported documents using relative URIs.
Author:
Owen Burroughs (owenb@uk.ibm.com)
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Releases all associated system resources such as the InputStreams associated with the Base and Import InputSources.
    Returns an InputSource "pointed at" the base document.
    Returns a URI representing the location of the base document.
    getImportInputSource(String parentLocation, String importLocation)
    Returns an InputSource "pointed at" an imported wsdl document.
    Returns a URI representing the location of the last import document to be resolved.
  • Method Details

    • getBaseInputSource

      InputSource getBaseInputSource()
      Returns an InputSource "pointed at" the base document.
      Returns:
      the InputSource object or null if the base document could not be found
    • getImportInputSource

      InputSource getImportInputSource(String parentLocation, String importLocation)
      Returns an InputSource "pointed at" an imported wsdl document.
      Parameters:
      parentLocation - a URI specifying the location of the document doing the importing. This can be null if the import location is not relative to the parent location.
      importLocation - a URI specifying the location of the document to import. This might be relative to the parent document's location.
      Returns:
      the InputSource object or null if the import cannot be found.
    • getBaseURI

      String getBaseURI()
      Returns a URI representing the location of the base document.
    • getLatestImportURI

      String getLatestImportURI()
      Returns a URI representing the location of the last import document to be resolved. This is used in resolving nested imports where an import location is relative to the parent document.
    • close

      void close()
      Releases all associated system resources such as the InputStreams associated with the Base and Import InputSources.