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

org.cassandraunit.dataset.json.ClassPathJsonDataSet Maven / Gradle / Ivy

There is a newer version: 4.3.1.0
Show newest version
package org.cassandraunit.dataset.json;

import org.cassandraunit.dataset.DataSet;

import java.io.InputStream;

/**
 * @author Jeremy Sevellec
 */
public class ClassPathJsonDataSet extends AbstractJsonDataSet implements DataSet {

    public ClassPathJsonDataSet(String dataSetLocation) {
        super(dataSetLocation);
    }

    protected InputStream getInputDataSetLocation(String dataSetLocation) {
        InputStream inputDataSetLocation = this.getClass().getResourceAsStream("/" + dataSetLocation);
        return inputDataSetLocation;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy