Interface HttpServletMessagePipeline
-
- All Superinterfaces:
MessagePipeline
- All Known Implementing Classes:
BasicHttpServletMessagePipeline
public interface HttpServletMessagePipeline extends MessagePipeline
Specialization ofMessagePipelinewhich narrows the type of allowed encoders and decoders.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpServletRequestMessageDecodergetDecoder()Get the message decoder instance.HttpServletResponseMessageEncodergetEncoder()Get the message encoder instance.-
Methods inherited from interface org.opensaml.messaging.pipeline.MessagePipeline
getInboundMessageHandler, getOutboundPayloadMessageHandler, getOutboundTransportMessageHandler
-
-
-
-
Method Detail
-
getEncoder
HttpServletResponseMessageEncoder getEncoder()
Get the message encoder instance.Narrows the super-interface return type to
HttpServletResponseMessageEncoder.- Specified by:
getEncoderin interfaceMessagePipeline- Returns:
- the message encoder
-
getDecoder
HttpServletRequestMessageDecoder getDecoder()
Get the message decoder instance.Narrows the super-interface return type to
HttpServletRequestMessageDecoder.- Specified by:
getDecoderin interfaceMessagePipeline- Returns:
- the message decoder
-
-