Package org.openrdf.http.client

Source Code of org.openrdf.http.client.ProtocolClient

/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 2008-2010.
*
* Licensed under the Aduna BSD-style license.
*/
package org.openrdf.http.client;

import org.openrdf.http.client.connections.HTTPConnectionPool;
import org.openrdf.http.client.helpers.StoreClient;
import org.openrdf.store.StoreException;

/**
* @author Herko ter Horst
* @author Arjohn Kampman
* @author James Leigh
*/
public class ProtocolClient {

  private final StoreClient client;

  public ProtocolClient(HTTPConnectionPool pool) {
    this.client = new StoreClient(pool);
  }

  public String get()
    throws StoreException
  {
    return client.get(String.class);
  }
}
TOP

Related Classes of org.openrdf.http.client.ProtocolClient

TOP
Copyright © 2018 www.massapi.com. 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.