Package org.exolab.adaptx.net
Interface URIResolver
-
- All Known Implementing Classes:
URIResolverImpl
,URIResolverWrapper
public interface URIResolver
An interface for URI handling- Author:
- Keith Visco
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URILocation
resolve(java.lang.String href, java.lang.String documentBase)
Resolves the given href and documentBase.
-
-
-
Method Detail
-
resolve
URILocation resolve(java.lang.String href, java.lang.String documentBase) throws URIException
Resolves the given href and documentBase. An implementation of this method should never return null. A URIException may be thrown instead.- Returns:
- the URILocation for the URI. [not null]
- Throws:
URIException
-
-