All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openlca.git.util.BinaryResolver Maven / Gradle / Ivy

The newest version!
package org.openlca.git.util;

import java.io.IOException;
import java.util.List;

import org.openlca.git.model.Change;

public interface BinaryResolver {

	List list(Change change, String relativePath);

	boolean isDirectory(Change change, String relativePath);

	byte[] resolve(Change change, String relativePath) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy