KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > throttle > ThrottleProvider


1 package net.javacoding.jspider.core.throttle;
2
3 import net.javacoding.jspider.core.util.config.PropertySet;
4
5
6 /**
7  * Interface that should be implemented by each Throttle provider class.
8  * This allows for pluggable provider classes to be referenced from the
9  * configuration files.
10  *
11  * $Id: ThrottleProvider.java,v 1.2 2002/12/23 17:13:36 vanrogu Exp $
12  *
13  * @author Günther Van Roey
14  */

15 public interface ThrottleProvider {
16
17     /**
18      * Method that generated the Throttle implementation.
19      * @return Throttle implementation
20      */

21     public Throttle createThrottle(PropertySet props);
22 }
23
Popular Tags