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

com.serphacker.serposcope.di.CaptchaSolverFactory Maven / Gradle / Ivy

The newest version!
/* 
 * Serposcope - SEO rank checker https://serposcope.serphacker.com/
 * 
 * Copyright (c) 2016 SERP Hacker
 * @author Pierre Nogues 
 * @license https://opensource.org/licenses/MIT MIT License
 */
package com.serphacker.serposcope.di;

import com.google.inject.ImplementedBy;
import com.serphacker.serposcope.models.base.Config;
import com.serphacker.serposcope.scraper.captcha.solver.CaptchaSolver;
import java.util.Map;

/**
 *
 * @author admin
 */
@ImplementedBy(CaptchaSolverFactoryImpl.class)
public interface CaptchaSolverFactory {
    public CaptchaSolver get(Config config);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy