All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cornell.mannlib.vitro.webapp.dao.jena.StaticDatasetFactory Maven / Gradle / Ivy

/* $This file is distributed under the terms of the license in LICENSE$ */

package edu.cornell.mannlib.vitro.webapp.dao.jena;

import org.apache.jena.query.Dataset;

public class StaticDatasetFactory implements DatasetWrapperFactory {

    private Dataset _dataset;

    public StaticDatasetFactory (Dataset dataset) {
        _dataset = dataset;
    }

    public DatasetWrapper getDatasetWrapper() {
        return new DatasetWrapper(_dataset);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy