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

io.github.mike10004.harreplay.vhsimpl.HarReaderFactory Maven / Gradle / Ivy

The newest version!
package io.github.mike10004.harreplay.vhsimpl;

import com.browserup.harreader.HarReader;

public interface HarReaderFactory {

    HarReader createReader();

    static HarReaderFactory easier() {
        return new EasierHarReaderFactory();
    }

    static HarReaderFactory stock() {
        return HarReader::new;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy