blob: 3aefa39bdbb49b6c0e0a98b022f5c2a59a3fad1f [file] [log] [blame]
package org.bouncycastle.est;
import java.io.IOException;
/**
* ESTClientSourceProvider, implementations of this are expected to return a source.
*/
public interface ESTClientSourceProvider
{
Source makeSource(String host, int port)
throws IOException;
}