bruno 2003/06/07 14:00:47
Added: sourceresolve/src/java/org/apache/excalibur/source
URIAbsolutizer.java
Log:
initial commit
Revision Changes Path
1.1
avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/URIAbsolutizer.java
Index: URIAbsolutizer.java
===================================================================
package org.apache.excalibur.source;
/**
* Implemented by a SourceFactory when it supports applying a relative URI
* to a base URI to form an absolute URI.
*
* <p>If a source factory does not implement this interface, the standard
* algorithm (as described in RFC 2396) will be used. This interface only
* needs to be implemented for source-types which have a different behaviour.
*/
public interface URIAbsolutizer
{
public String absolutize(String baseURI, String location);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]