Package org.openrdf.http.server.helpers

Examples of org.openrdf.http.server.helpers.ServerRepositoryManager


  @Override
  protected int beforeHandle(Request request, Response response) {
    String repositoryID = getRepositoryID(request);
    logger.debug("{}={}", REPOSITORY_ID_PARAM, repositoryID);

    ServerRepositoryManager manager = ((SesameApplication)getApplication()).getServerRepositoryManager();

    try {
      ServerRepository repository = manager.getRepository(repositoryID);

      if (repository != null) {
        RequestAtt.setRepository(request, repository);
        return Filter.CONTINUE;
      }
View Full Code Here


  public synchronized void start()
    throws Exception
  {
    repoManager = new LocalRepositoryManager(dataDir);
    repoManager.initialize();
    serverRepoManager = new ServerRepositoryManager(repoManager);
    super.start();
  }
View Full Code Here

TOP

Related Classes of org.openrdf.http.server.helpers.ServerRepositoryManager

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.