Package org.forgerock.openam.radius.server.spi.handlers
Implementations of handlers and related context object for receiving and processing radius server traffic including:
An accept-all handler that always returns an Access-Accept packet for testing purposes only. See
AcceptAllHandler.
A reject-all handler that always returns an Access-Reject packet for testing purposes only. See
RejectAllHandler.
A handler that expects client configuration from the admin console to indicate the realm and chain to be used
for authenticating users. It uses openAM's AuthContext to perform the
authentication conversation and translates each callback into an Access-Challenge response which triggers a
subsequent Access-Requests that contains the user entered answer for a callback. The handler then injects
all such answers into the callbacks and submits them back to the
AuthContext and repeats this pattern until all callback sets have been
exhausted and authentication fails or succeeds.
See OpenAMAuthHandler.
Created by boydmr on 6/4/15.-
Class Summary Class Description AcceptAllHandler Simple handler that sends an AccessAccept for all incoming Radius access requests.OpenAMAuthHandler This RADIUS handler authenticates against an authentication realm and chain specified via configuration.RejectAllHandler Simple handler that sends a an AccessReject for all incoming Radius access requests.