Interface MessageInfo
public interface MessageInfo
Represents the request and response messages associated with a
message-based authentication exchange. The
MessageInfo object
provides access to the request and response message objects, as well
as a map of additional context information. The types of the request
and response message objects are protocol-specific.-
Method Summary
Modifier and TypeMethodDescriptiongetMap()Returns a map of additional context information associated with this authentication exchange.Returns the request message object associated with this authentication exchange.Returns the response message object associated with this authentication exchange.voidsetRequestMessage(Object request) Sets the request message object for this authentication exchange.voidsetResponseMessage(Object response) Sets the response message object for this authentication exchange.
-
Method Details
-
getRequestMessage
Object getRequestMessage()Returns the request message object associated with this authentication exchange. The type of the returned object is protocol-specific.- Returns:
- the request message object, or
nullif not available
-
getResponseMessage
Object getResponseMessage()Returns the response message object associated with this authentication exchange. The type of the returned object is protocol-specific.- Returns:
- the response message object, or
nullif not available
-
setRequestMessage
Sets the request message object for this authentication exchange.- Parameters:
request- the request message object
-
setResponseMessage
Sets the response message object for this authentication exchange.- Parameters:
response- the response message object
-
getMap
-