Example usage for org.eclipse.jgit.internal.storage.dfs DfsReaderOptions DfsReaderOptions

List of usage examples for org.eclipse.jgit.internal.storage.dfs DfsReaderOptions DfsReaderOptions

Introduction

In this page you can find the example usage for org.eclipse.jgit.internal.storage.dfs DfsReaderOptions DfsReaderOptions.

Prototype

public DfsReaderOptions() 

Source Link

Document

Create a default reader configuration.

Usage

From source file:com.benhumphreys.jgitcassandra.repo.CassandraObjDatabase.java

License:Apache License

/**
 * Constructor//from   w w  w  .ja  v  a2 s  .co m
 *
 * @param repository a reference to the repository this ref database
 *                   is associated with.
 * @param conn       connection to the Cassandra data store.
 */
public CassandraObjDatabase(DfsRepository repository, StoreConnection conn) throws IOException {
    super(repository, new DfsReaderOptions());
    objstore = new ObjStore(repository.getDescription().getRepositoryName(), conn.getSession(),
            repository.getDescription());
}