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

org.cassandraunit.dataset.xml.ClassPathXmlDataSet Maven / Gradle / Ivy

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

import org.cassandraunit.dataset.DataSet;

import java.io.InputStream;

public class ClassPathXmlDataSet extends AbstractXmlDataSet implements DataSet {

    public ClassPathXmlDataSet(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