Package org.eclipse.rdf4j.http.client
Interface SesameClient
-
- All Known Subinterfaces:
HttpClientSessionManager
- All Known Implementing Classes:
SesameClientImpl,SharedHttpClientSessionManager
@Deprecated public interface SesameClient
Deprecated.useHttpClientSessionManagerinstead.- Author:
- Jeen Broekstra
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description RDF4JProtocolSessioncreateRDF4JProtocolSession(String serverURL)Deprecated.Creates a new session to the remote Sesame server to manage the auth state.default RDF4JProtocolSessioncreateSesameSession(String serverURL)Deprecated.usecreateRDF4JProtocolSession(String)instead.SPARQLProtocolSessioncreateSPARQLProtocolSession(String queryEndpointUrl, String updateEndpointUrl)Deprecated.Creates a new session to the remote SPARQL endpoint to manage the auth state.default SPARQLProtocolSessioncreateSparqlSession(String queryEndpointUrl, String updateEndpointUrl)Deprecated.usecreateSPARQLProtocolSession(String, String)instead.org.apache.http.client.HttpClientgetHttpClient()Deprecated.voidshutDown()Deprecated.Closes any remaining connections and threads used by the sessions created by this object.
-
-
-
Method Detail
-
getHttpClient
org.apache.http.client.HttpClient getHttpClient()
Deprecated.- Returns:
- Returns the httpClient.
-
createSPARQLProtocolSession
SPARQLProtocolSession createSPARQLProtocolSession(String queryEndpointUrl, String updateEndpointUrl)
Deprecated.Creates a new session to the remote SPARQL endpoint to manage the auth state.
-
createSparqlSession
@Deprecated default SPARQLProtocolSession createSparqlSession(String queryEndpointUrl, String updateEndpointUrl)
Deprecated.usecreateSPARQLProtocolSession(String, String)instead.
-
createRDF4JProtocolSession
RDF4JProtocolSession createRDF4JProtocolSession(String serverURL)
Deprecated.Creates a new session to the remote Sesame server to manage the auth state.
-
createSesameSession
@Deprecated default RDF4JProtocolSession createSesameSession(String serverURL)
Deprecated.usecreateRDF4JProtocolSession(String)instead.
-
shutDown
void shutDown()
Deprecated.Closes any remaining connections and threads used by the sessions created by this object.
-
-