1 36 package org.columba.ristretto.auth; 37 38 import java.io.IOException ; 39 40 46 public interface AuthenticationServer { 47 48 54 public String getHostName(); 55 56 63 public String getService(); 64 65 72 public void authSend(byte[] call) throws IOException ; 73 74 81 public byte[] authReceive() throws AuthenticationException, IOException ; 82 83 } 84 | Popular Tags |