import java.net.*; /** * This is a class that implements the server side Authentication, * Authorisation, Accounting like services at connect level. * Currently only authentication may be supported. *

* Written: Radu Sion
* Version: 0.1
* Source: ServerConnectAAA.java */ public abstract class ServerConnectAAA extends ConnectAAA { /** * Method that should implement the real AAA. * This instructs the caller if the peer is a valid guy or not, if * he is allowed to do bussiness with us or no. * @param s Socket to use in negotiating with the peer * @return True if AAA successful, false if not ok. */ public abstract boolean doAAA(Socket s); } /*eoc*/