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


Constructor Index

 o ServerConnectAAA()

Method Index

 o doAAA(Socket)
Method that should implement the real AAA.

Constructors

 o ServerConnectAAA
 public ServerConnectAAA()

Methods

 o 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