Fixed HTTP-client query-string handling bug.
[doldaconnect.git] / Authenticator.java
... / ...
CommitLineData
1package dolda.dolcon;
2
3import dolda.dolcon.protocol.Command;
4import dolda.dolcon.protocol.Response;
5import java.util.List;
6
7public interface Authenticator {
8 public String handles(List<String> name);
9 public Command step(Response resp) throws AuthException, ProtocolException, InterruptedException;
10}