Java: Added a session handler with authentication capability.
[doldaconnect.git] / lib / java / dolda / dolcon / Authenticator.java
1 package dolda.dolcon;
2
3 import dolda.dolcon.protocol.Command;
4 import dolda.dolcon.protocol.Response;
5 import java.util.List;
6
7 public interface Authenticator {
8     public String handles(List<String> name);
9     public Command step(Response resp) throws AuthException, ProtocolException, InterruptedException;
10 }