Package | Description |
---|---|
org.opensaml.messaging.error |
Interfaces and classes for message-related error handling.
|
org.opensaml.messaging.handler |
Interfaces and classes for message context handlers.
|
org.opensaml.messaging.pipeline |
Modifier and Type | Method and Description |
---|---|
MessageHandler<MessageType> |
PipelineMessageErrorHandler.getHandler()
Get the handler to invoke on the outbound error message.
|
Modifier and Type | Method and Description |
---|---|
void |
PipelineMessageErrorHandler.setHandler(MessageHandler<MessageType> handler)
Set the handler to invoke on the outbound error message.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MessageHandlerChain<MessageType>
A specialization of
MessageHandler which represents an ordered list of
message handlers which may be invoked in order. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMessageHandler<MessageType>
A base abstract implementation of
MessageHandler . |
Modifier and Type | Method and Description |
---|---|
List<MessageHandler<MessageType>> |
MessageHandlerChain.getHandlers()
Get the ordered list of message handlers which comprise the handler chain.
|
Modifier and Type | Field and Description |
---|---|
private MessageHandler<InboundMessageType> |
BasicMessagePipeline.inboundHandler
Inbound message handler.
|
private MessageHandler<OutboundMessageType> |
BasicMessagePipeline.outboundPayloadHandler
Outbound payload message handler.
|
private MessageHandler<OutboundMessageType> |
BasicMessagePipeline.outboundTransportHandler
Outbound transport message handler.
|
Modifier and Type | Method and Description |
---|---|
MessageHandler<InboundMessageType> |
MessagePipeline.getInboundMessageHandler()
Get the (optional) inbound message handler instance.
|
MessageHandler<InboundMessageType> |
BasicMessagePipeline.getInboundMessageHandler()
Get the (optional) inbound message handler instance.
|
MessageHandler<OutboundMessageType> |
MessagePipeline.getOutboundPayloadMessageHandler()
Get the (optional) outbound payload message handler instance.
|
MessageHandler<OutboundMessageType> |
BasicMessagePipeline.getOutboundPayloadMessageHandler()
Get the (optional) outbound payload message handler instance.
|
MessageHandler<OutboundMessageType> |
MessagePipeline.getOutboundTransportMessageHandler()
Get the (optional) outbound transport message handler instance.
|
MessageHandler<OutboundMessageType> |
BasicMessagePipeline.getOutboundTransportMessageHandler()
Get the (optional) outbound transport message handler instance.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicMessagePipeline.setInboundHandler(MessageHandler<InboundMessageType> handler)
Set the inbound message handler.
|
void |
BasicMessagePipeline.setOutboundPayloadHandler(MessageHandler<OutboundMessageType> handler)
Set the outbound payload message handler.
|
void |
BasicMessagePipeline.setOutboundTransportHandler(MessageHandler<OutboundMessageType> handler)
Set the outbound transport message handler.
|
Copyright © 1999–2015. All rights reserved.