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

org.webharvest.events.ScraperExecutionStartEvent Maven / Gradle / Ivy

The newest version!
package org.webharvest.events;

import org.webharvest.runtime.WebScraper;

public final class ScraperExecutionStartEvent {

    private final WebScraper scraper;

    public ScraperExecutionStartEvent(final WebScraper scraper) {
        this.scraper = scraper;
    }

    public WebScraper getScraper() {
        return scraper;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy