org.jibx.ws.transport.interceptor
Interface InputStreamInterceptor

All Known Implementing Classes:
CopiedInputStreamInterceptor

public interface InputStreamInterceptor

Provides the ability to intercept the input stream for an inbound message.


Method Summary
 void inputComplete()
          Notifies the interceptor that input is complete.
 InputStream intercept(InputStream inputStream)
          Allows the interceptor to hook into the input stream.
 void setMessageContext(InContext ctx)
          Sets the inbound message context for the interceptor to store data in.
 

Method Detail

setMessageContext

void setMessageContext(InContext ctx)
Sets the inbound message context for the interceptor to store data in.

Parameters:
ctx - inbound message context

intercept

InputStream intercept(InputStream inputStream)
Allows the interceptor to hook into the input stream.

Parameters:
inputStream - the input stream of the request from the transport
Returns:
the input stream that will be presented to the processor

inputComplete

void inputComplete()
Notifies the interceptor that input is complete.



Project Web Site