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

org.cassandraunit.dataset.yaml.ClassPathYamlDataSet Maven / Gradle / Ivy

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

import org.cassandraunit.dataset.DataSet;

import java.io.InputStream;

public class ClassPathYamlDataSet extends AbstractYamlDataSet implements DataSet {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy