Package org.apache.ivy.core
Class ExecutionRelativeUrlResolver
- java.lang.Object
-
- org.apache.ivy.core.RelativeUrlResolver
-
- org.apache.ivy.core.ExecutionRelativeUrlResolver
-
public class ExecutionRelativeUrlResolver extends RelativeUrlResolver
Resolve relative url relatively to the current execution directory instead of relatively to the context. This is was actually done prior 2.0. This class allow thus to work in a backward compatible mode.
-
-
Constructor Summary
Constructors Constructor Description ExecutionRelativeUrlResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URL
getURL(java.net.URL context, java.lang.String url)
Resolve the url in the context of context.-
Methods inherited from class org.apache.ivy.core.RelativeUrlResolver
getURL
-
-
-
-
Method Detail
-
getURL
public java.net.URL getURL(java.net.URL context, java.lang.String url) throws java.net.MalformedURLException
Description copied from class:RelativeUrlResolver
Resolve the url in the context of context.- Specified by:
getURL
in classRelativeUrlResolver
- Parameters:
context
- The URL of the resource containing the reference urlurl
- a relative or absolution url string- Returns:
- URL
- Throws:
java.net.MalformedURLException
- if url is wrong
-
-