public class PlainTextBuilder extends Object implements TextMessageBuilder, DataSourceMessageBuilder
This builder processes the input message as plain text and wraps
the text in a wrapper element. The name of the wrapper element can
be configured as a service parameter (see BaseConstants.WRAPPER_PARAM
).
It defaults to BaseConstants.DEFAULT_TEXT_WRAPPER
.
If the content is provided as an InputStream
and the content type specifies a
charset parameter (e.g. text/plain; charset=ISO-8859-15),
this information is used to decode the text.
If the content is provided as an InputStream
but no charset parameter
is specified on the content type, the default charset encoding specified by
MessageContext.DEFAULT_CHAR_SET_ENCODING
is used.
Constructor and Description |
---|
PlainTextBuilder() |
Modifier and Type | Method and Description |
---|---|
org.apache.axiom.om.OMElement |
processDocument(DataSource dataSource,
String contentType,
MessageContext msgContext) |
org.apache.axiom.om.OMElement |
processDocument(InputStream inputStream,
String contentType,
MessageContext msgContext)
Process a message.
|
org.apache.axiom.om.OMElement |
processDocument(Reader reader,
String contentType,
MessageContext msgContext) |
org.apache.axiom.om.OMElement |
processDocument(String content,
String contentType,
MessageContext msgContext) |
public org.apache.axiom.om.OMElement processDocument(InputStream inputStream, String contentType, MessageContext msgContext) throws AxisFault
Builder
The raw content of the message is provided as an input stream. It is the responsibility of the caller (typically a transport implementation) to close the stream after the message has been processed (more precisely after the SOAP infoset returned by this method is no longer used). This implies that implementations are not required to consume the input stream during the execution of this method. This enables deferred parsing of the message.
processDocument
in interface Builder
inputStream
- the byte stream with the raw payloadAxisFault
public org.apache.axiom.om.OMElement processDocument(Reader reader, String contentType, MessageContext msgContext) throws AxisFault
processDocument
in interface TextMessageBuilder
AxisFault
public org.apache.axiom.om.OMElement processDocument(String content, String contentType, MessageContext msgContext) throws AxisFault
processDocument
in interface TextMessageBuilder
AxisFault
public org.apache.axiom.om.OMElement processDocument(DataSource dataSource, String contentType, MessageContext msgContext) throws AxisFault
processDocument
in interface DataSourceMessageBuilder
AxisFault
Copyright © 2004–2018 The Apache Software Foundation. All rights reserved.