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

org.unipop.query.controller.SourceProvider Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
package org.unipop.query.controller;

import org.json.JSONObject;
import org.unipop.schema.property.PropertySchema;
import org.unipop.structure.UniGraph;

import java.util.Collections;
import java.util.List;
import java.util.Set;

public interface SourceProvider {
    Set init(UniGraph graph, JSONObject configuration) throws Exception;
    default List providerBuilders() {return Collections.emptyList();}
    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy