Class RepositoryConnectionInterceptorAdapter
java.lang.Object
org.eclipse.rdf4j.repository.event.base.RepositoryConnectionInterceptorAdapter
- All Implemented Interfaces:
RepositoryConnectionInterceptor
public class RepositoryConnectionInterceptorAdapter
extends Object
implements RepositoryConnectionInterceptor
- Author:
- Herko ter Horst
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
begin
(RepositoryConnection conn) boolean
clear
(RepositoryConnection conn, Resource... contexts) boolean
boolean
close
(RepositoryConnection conn) boolean
commit
(RepositoryConnection conn) boolean
execute
(RepositoryConnection conn, QueryLanguage ql, String update, String baseURI, Update operation) boolean
remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) boolean
removeNamespace
(RepositoryConnection conn, String prefix) boolean
rollback
(RepositoryConnection conn) boolean
setAutoCommit
(RepositoryConnection conn, boolean autoCommit) Deprecated.boolean
setNamespace
(RepositoryConnection conn, String prefix, String name)
-
Constructor Details
-
RepositoryConnectionInterceptorAdapter
public RepositoryConnectionInterceptorAdapter()
-
-
Method Details
-
add
public boolean add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) - Specified by:
add
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.add(Resource, IRI, Value, Resource...)
operation on.- Returns:
- true if the interceptor has been denied access to the add operation, false otherwise.
-
begin
- Specified by:
begin
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.begin()
orRepositoryConnection.begin(org.eclipse.rdf4j.IsolationLevel)
operation on.- Returns:
- true if the interceptor has been denied access to the begin operation, false otherwise.
-
clear
- Specified by:
clear
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.clear(Resource...)
operation on.- Returns:
- true if the interceptor has been denied access to the clear operation, false otherwise.
-
clearNamespaces
- Specified by:
clearNamespaces
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.clearNamespaces()
operation on.- Returns:
- true if the interceptor has been denied access to the clearNamespaces operation, false otherwise.
-
close
- Specified by:
close
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.close()
operation on.- Returns:
- true if the interceptor has been denied access to the close operation, false otherwise.
-
commit
- Specified by:
commit
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.commit()
operation on.- Returns:
- true if the interceptor has been denied access to the commit operation, false otherwise.
-
remove
public boolean remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) - Specified by:
remove
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.remove(Resource, IRI, Value, Resource...)
operation on.- Returns:
- true if the interceptor has been denied access to the remove operation, false otherwise.
-
removeNamespace
- Specified by:
removeNamespace
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.removeNamespace(String)
operation on.- Returns:
- true if the interceptor has been denied access to the removeNamespace operation, false otherwise.
-
rollback
- Specified by:
rollback
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.rollback()
operation on.- Returns:
- true if the interceptor has been denied access to the rollback operation, false otherwise.
-
setAutoCommit
Deprecated.- Specified by:
setAutoCommit
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnectionInterceptor.setAutoCommit(RepositoryConnection, boolean)
operation on.autoCommit
-- Returns:
- true if the interceptor has been denied access to the setAutoCommit operation, false otherwise.
-
setNamespace
- Specified by:
setNamespace
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform theRepositoryConnection.setNamespace(String, String)
operation on.- Returns:
- true if the interceptor has been denied access to the setNamespace operation, false otherwise.
-
execute
public boolean execute(RepositoryConnection conn, QueryLanguage ql, String update, String baseURI, Update operation) - Specified by:
execute
in interfaceRepositoryConnectionInterceptor
- Parameters:
conn
- the RepositoryConnection to perform the query execution operations on.- Returns:
- true if the interceptor has been denied access to the query execution operations, false otherwise.
-