Package org.openrdf.http.client.helpers

Examples of org.openrdf.http.client.helpers.StoreClient


  }

  public void begin()
    throws StoreException
  {
    new StoreClient(pool.slash(Protocol.BEGIN)).post();
  }
View Full Code Here


  }

  public void ping()
    throws StoreException
  {
    new StoreClient(pool.slash(Protocol.PING)).post();
  }
View Full Code Here

  }

  public void commit()
    throws StoreException
  {
    new StoreClient(pool.slash(Protocol.COMMIT)).post();
  }
View Full Code Here

  }

  public void rollback()
    throws StoreException
  {
    new StoreClient(pool.slash(Protocol.ROLLBACK)).post();
  }
View Full Code Here

  }

  public void close()
    throws StoreException
  {
    new StoreClient(pool).delete();
  }
View Full Code Here

public class ProtocolClient {

  private final StoreClient client;

  public ProtocolClient(HTTPConnectionPool pool) {
    this.client = new StoreClient(pool);
  }
View Full Code Here

  private final StoreClient client;

  public ConnectionsClient(HTTPConnectionPool pool) {
    this.pool = pool;
    this.client = new StoreClient(pool);
  }
View Full Code Here

public class NamespaceClient {

  private final StoreClient client;

  public NamespaceClient(HTTPConnectionPool pool) {
    this.client = new StoreClient(pool);
  }
View Full Code Here

public class ContextClient {

  private final StoreClient client;

  public ContextClient(HTTPConnectionPool contexts) {
    this.client = new StoreClient(contexts);
  }
View Full Code Here

  private final StoreClient client;

  public RepositoriesClient(HTTPConnectionPool pool) {
    this.pool = pool;
    this.client = new StoreClient(pool);
  }
View Full Code Here

TOP

Related Classes of org.openrdf.http.client.helpers.StoreClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.