Package org.openrdf.http.client

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

/*
* 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.StoreConfigClient;
import org.openrdf.model.Model;
import org.openrdf.store.StoreConfigException;

/**
* @author James Leigh
*/
public class SchemaClient {

  private final StoreConfigClient client;

  public SchemaClient(HTTPConnectionPool pool) {
    this.client = new StoreConfigClient(pool);
  }

  public Model get()
    throws StoreConfigException
  {
    return client.get(Model.class);
  }
}
TOP

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

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.