X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fjava%2Fdolda%2Fdolcon%2FAuthenticator.java;fp=lib%2Fjava%2Fdolda%2Fdolcon%2FAuthenticator.java;h=b9e9cfee5301dc1292632955b52de857526cc1dd;hb=7131093cf84874bc7290c18cf34a3ae4d36cf2bd;hp=0000000000000000000000000000000000000000;hpb=59b214d63f3e51473177f573bdc4c8edaa08f9ea;p=doldaconnect.git diff --git a/lib/java/dolda/dolcon/Authenticator.java b/lib/java/dolda/dolcon/Authenticator.java new file mode 100644 index 0000000..b9e9cfe --- /dev/null +++ b/lib/java/dolda/dolcon/Authenticator.java @@ -0,0 +1,10 @@ +package dolda.dolcon; + +import dolda.dolcon.protocol.Command; +import dolda.dolcon.protocol.Response; +import java.util.List; + +public interface Authenticator { + public String handles(List name); + public Command step(Response resp) throws AuthException, ProtocolException, InterruptedException; +}