Class XmppReceiverConnection
java.lang.Object
org.springframework.ws.transport.AbstractWebServiceConnection
org.springframework.ws.transport.AbstractReceiverConnection
org.springframework.ws.transport.xmpp.XmppReceiverConnection
- All Implemented Interfaces:
AutoCloseable, HeadersAwareReceiverWebServiceConnection, WebServiceConnection
Implementation of
WebServiceConnection that is
used for server-side XMPP access. Exposes a Message request and response
message.- Since:
- 2.0
-
Constructor Summary
ConstructorsConstructorDescriptionXmppReceiverConnection(org.jivesoftware.smack.XMPPConnection connection, org.jivesoftware.smack.packet.Message requestMessage) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddResponseHeader(String name, String value) Adds a response header with the given name and value.@Nullable StringReturns the error message.Return an iteration over all the header names the request contains.getRequestHeaders(String name) Return an iteration over all the string values of the specified request header.protected InputStreamReturns the input stream to read the response from.org.jivesoftware.smack.packet.MessageReturns the request message for this connection.@Nullable org.jivesoftware.smack.packet.MessageReturns the response message, if any, for this connection.protected OutputStreamReturns the output stream to write the request to.getUri()Returns the URI for this connection.booleanhasError()Indicates whether this connection has an error.protected voidonSendAfterWrite(WebServiceMessage message) Called after the given message has been written to theTransportOutputStream.protected voidonSendBeforeWrite(WebServiceMessage message) Called before the given message has been written to theTransportOutputStream.Methods inherited from class AbstractReceiverConnection
createTransportInputStream, createTransportOutputStream, onCloseMethods inherited from class AbstractWebServiceConnection
close, onReceiveAfterRead, onReceiveBeforeRead, receive, sendMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface WebServiceConnection
close, receive, send
-
Constructor Details
-
XmppReceiverConnection
public XmppReceiverConnection(org.jivesoftware.smack.XMPPConnection connection, org.jivesoftware.smack.packet.Message requestMessage)
-
-
Method Details
-
getRequestMessage
public org.jivesoftware.smack.packet.Message getRequestMessage()Returns the request message for this connection. -
getResponseMessage
public @Nullable org.jivesoftware.smack.packet.Message getResponseMessage()Returns the response message, if any, for this connection. -
getUri
Description copied from interface:WebServiceConnectionReturns the URI for this connection.- Throws:
URISyntaxException
-
hasError
public boolean hasError()Description copied from interface:WebServiceConnectionIndicates whether this connection has an error. Typically, error detection is done by inspecting connection error codes, etc.- Returns:
trueif this connection has an error;falseotherwise.
-
getErrorMessage
Description copied from interface:WebServiceConnectionReturns the error message.- Returns:
- the connection error message, if any; returns
nullwhen no error is present - See Also:
-
getRequestHeaderNames
Description copied from interface:HeadersAwareReceiverWebServiceConnectionReturn an iteration over all the header names the request contains. Returns an emptyIteratorif there are no headers.- Throws:
IOException
-
getRequestHeaders
Description copied from interface:HeadersAwareReceiverWebServiceConnectionReturn an iteration over all the string values of the specified request header. Return an emptyIteratorif there is no header of the specified name.- Throws:
IOException
-
getRequestInputStream
Description copied from class:AbstractReceiverConnectionReturns the input stream to read the response from.- Specified by:
getRequestInputStreamin classAbstractReceiverConnection- Throws:
IOException
-
onSendBeforeWrite
Description copied from class:AbstractWebServiceConnectionCalled before the given message has been written to theTransportOutputStream. Called fromAbstractWebServiceConnection.send(WebServiceMessage).Default implementation does nothing.
- Overrides:
onSendBeforeWritein classAbstractWebServiceConnection- Parameters:
message- the message- Throws:
IOException- when an I/O exception occurs
-
addResponseHeader
Description copied from interface:HeadersAwareReceiverWebServiceConnectionAdds a response header with the given name and value. This method can be called multiple times, to allow for headers with multiple values.- Parameters:
name- the name of the headervalue- the value of the header- Throws:
IOException
-
getResponseOutputStream
Description copied from class:AbstractReceiverConnectionReturns the output stream to write the request to.- Specified by:
getResponseOutputStreamin classAbstractReceiverConnection- Throws:
IOException
-
onSendAfterWrite
Description copied from class:AbstractWebServiceConnectionCalled after the given message has been written to theTransportOutputStream. Called fromAbstractWebServiceConnection.send(WebServiceMessage).Default implementation does nothing.
- Overrides:
onSendAfterWritein classAbstractWebServiceConnection- Parameters:
message- the message- Throws:
IOException- when an I/O exception occurs
-