blob: 7c2c813c83f08744e403557555c408cea25dab95 [file] [log] [blame]
package org.bouncycastle.est;
import java.io.IOException;
/**
* ESTSourceConnectionListener is called when the source is
* is connected to the remote end point but no application
* data has been sent.
*/
public interface ESTSourceConnectionListener<T, I>
{
ESTRequest onConnection(Source<T> source, ESTRequest request)
throws IOException;
}