
be.ugent.rml.functions.AbstractSingleRecordFunctionExecutor Maven / Gradle / Ivy
package be.ugent.rml.functions;
import be.ugent.rml.records.Record;
import java.io.IOException;
import java.util.HashMap;
public abstract class AbstractSingleRecordFunctionExecutor implements SingleRecordFunctionExecutor {
protected MultipleRecordsFunctionExecutor functionExecutor;
public Object execute(Record record) throws Exception {
HashMap recordsMap = new HashMap<>();
recordsMap.put("_default", record);
return this.functionExecutor.execute(recordsMap);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy