Package com.sun.xml.rpc.server
Class StreamingHandlerState
- java.lang.Object
-
- com.sun.xml.rpc.server.StreamingHandlerState
-
public class StreamingHandlerState extends Object
The internal state of an otherwise stateless StreamingHandler.- Author:
- JAX-RPC Development Team
-
-
Field Summary
Fields Modifier and Type Field Description static intCALL_FAULT_HANDLERSstatic intCALL_NO_HANDLERSstatic intCALL_RESPONSE_HANDLERS
-
Constructor Summary
Constructors Constructor Description StreamingHandlerState(SOAPMessageContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanacceptFastInfoset()intgetHandlerFlag()SOAPMessageContextgetMessageContext()InternalSOAPMessagegetRequest()InternalSOAPMessagegetResponse()booleanisFailure()booleanisFastInfoset()InternalSOAPMessageresetResponse()voidsetHandlerFlag(int handlerFlag)voidsetResponse(InternalSOAPMessage msg)
-
-
-
Field Detail
-
CALL_NO_HANDLERS
public static final int CALL_NO_HANDLERS
- See Also:
- Constant Field Values
-
CALL_FAULT_HANDLERS
public static final int CALL_FAULT_HANDLERS
- See Also:
- Constant Field Values
-
CALL_RESPONSE_HANDLERS
public static final int CALL_RESPONSE_HANDLERS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StreamingHandlerState
public StreamingHandlerState(SOAPMessageContext context)
-
-
Method Detail
-
isFastInfoset
public boolean isFastInfoset()
-
acceptFastInfoset
public boolean acceptFastInfoset()
-
getMessageContext
public SOAPMessageContext getMessageContext()
-
isFailure
public boolean isFailure()
-
getRequest
public InternalSOAPMessage getRequest()
-
getResponse
public InternalSOAPMessage getResponse()
-
setResponse
public void setResponse(InternalSOAPMessage msg)
-
resetResponse
public InternalSOAPMessage resetResponse()
-
setHandlerFlag
public void setHandlerFlag(int handlerFlag)
-
getHandlerFlag
public int getHandlerFlag()
-
-