Class ServerConnectAAA
java.lang.Object
|
+----ConnectAAA
|
+----ServerConnectAAA
- public abstract class ServerConnectAAA
- extends ConnectAAA
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
-
ServerConnectAAA()
-
-
doAAA(Socket)
- Method that should implement the real AAA.
ServerConnectAAA
public ServerConnectAAA()
doAAA
public abstract boolean doAAA(Socket s)
- 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.
- Parameters:
- s - Socket to use in negotiating with the peer
- Returns:
- True if AAA successful, false if not ok.
- Overrides:
- doAAA in class ConnectAAA