Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package fr.inria.corese.core.next.query.api;

import fr.inria.corese.core.next.data.api.Value;
import fr.inria.corese.core.next.storagemanager.api.dataset.Dataset;
import fr.inria.corese.core.next.query.api.result.BindingSet;
import fr.inria.corese.core.next.query.api.dataset.Dataset;

/**
* A generic SPARQL operation (query or update) on a Corese repository.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.core.next.storagemanager.api.dataset;
package fr.inria.corese.core.next.query.api.dataset;

import java.util.Set;

Expand Down Expand Up @@ -77,4 +77,4 @@ public interface Dataset {
* @return this Dataset instance (or a new instance) cleared of all graphs.
*/
Dataset clear();
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package fr.inria.corese.core.next.query.api.repository;

import fr.inria.corese.core.next.data.api.ValueFactory;
import fr.inria.corese.core.next.storagemanager.api.dataset.Dataset;
import fr.inria.corese.core.next.query.api.dataset.Dataset;
import fr.inria.corese.core.next.query.api.exception.QuerySyntaxException;
import fr.inria.corese.core.next.query.api.exception.RepositoryException;
import fr.inria.corese.core.next.query.api.*;
Expand Down Expand Up @@ -141,4 +141,4 @@ Update prepareUpdate(QueryLanguage queryLanguage, String updateString)
* @throws IllegalStateException if the connection is closed
*/
void rollback() throws RepositoryException;
}
}
Loading