com.okworx.ilcd.validation.util.Locator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ilcd-validation Show documentation
Show all versions of ilcd-validation Show documentation
A Java library for performing technical validation of data in ILCD data format.
package com.okworx.ilcd.validation.util;
import java.io.IOException;
import java.net.URL;
/**
* Locator interface.
*
* @author oliver.kusche
* @version $Id: $Id
*/
public interface Locator {
/**
* resolve.
*
* @param url a {@link java.net.URL} object.
* @return a {@link java.net.URL} object.
* @throws java.io.IOException if any.
*/
URL resolve(URL url) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy