Class JavaXmlSource
- All Implemented Interfaces:
Source
,Serializable
In the XML representation, java object arguments are substituted by <ctx:java-content ref='jcid:xyz' xmlns:ctx="http://www.bea.com/wli/sb/context" /> elements, having the value of the ref attribute equal to a key in the JavaObjects map that indexes the replaced java object.
Map contains the objects to be registered in pipeline java object repository against the unique ids as present in the XML representation
Example:
Let�s assume, we have an inbound jejb transport endpoint based on method myMethod(String, int, com.acme.SomeXMLObject, com.acme.SomePOJO). The proxy service configuration specifies the names �my-method� for the operation, and arg0, arg1, arg2 and arg3 for the arguments. When a transport invocation occurs and a JavaXmlSource is composed by the inbound endpoint, the XML representation will have the following contents:
<tes:my-method xmlns:tes=�default/someURI">   <arg0>Some string</arg0>   <arg1>88</arg1>   <arg2><inlined xml object contents .../></arg2>   <arg3><con:java-content ref=�key1� xmlns:con="http://www.bea.com/wli/sb/context�/></arg3> </tes:my-method>
In this example, the java objects map will contain:
key1 --> the java object passed as the fourth 'SomePOJO' argument.
- Author:
- mpoplace
- See Also:
-
Field Summary
Fields inherited from interface com.bea.wli.sb.sources.Source
DEFAULT_CHARACTER_SET_ENCODING
-
Constructor Summary
ConstructorsConstructorDescriptionJavaXmlSource
(XmlObjectSource xmlSource, Map<String, Object> pojoMap) Creates an instance of JavaXmlSource given a XML representation defining the shape of message body in the pipeline and a map containing java objects against the unique keys. -
Method Summary
Modifier and TypeMethodDescriptiongetInputStream
(TransformOptions options) Returns an input stream that contains the XML representation, defining the shape of the message body.Returns the map containing the objects stored against the unique ids as present in the XML representation.Returns the XmlObjectSource containing the XML representation of the payload.void
writeTo
(OutputStream os, TransformOptions options) Writes the XmlObjectSource contents to a byte-based stream.
-
Constructor Details
-
JavaXmlSource
Creates an instance of JavaXmlSource given a XML representation defining the shape of message body in the pipeline and a map containing java objects against the unique keys. Each object is expected to implement java.io.Serializable interface.- Parameters:
xmlSource
- xml representation defining the shape of message bodypojoMap
- the sequence of objects to be registered in pipeline java object repository against the unique ids as present in the XML representation
-
-
Method Details
-
getInputStream
Returns an input stream that contains the XML representation, defining the shape of the message body.- Specified by:
getInputStream
in interfaceSource
- Parameters:
options
- Options used to affect the serialization- Returns:
- a InputStream for retrieving the XmlObjectSource containing the XML represenation of the message body
- Throws:
IOException
TransformException
-
writeTo
public void writeTo(OutputStream os, TransformOptions options) throws IOException, TransformException Writes the XmlObjectSource contents to a byte-based stream.- Specified by:
writeTo
in interfaceSource
- Parameters:
os
- the OutputStream to which serialized content will be writtenoptions
- TransformOptions used to affect the serialization- Throws:
IOException
TransformException
-
getXmlSource
Returns the XmlObjectSource containing the XML representation of the payload.- Returns:
- the XmlObjectSource containing the XML representation of the payload
-
getPojoMap
Returns the map containing the objects stored against the unique ids as present in the XML representation.- Returns:
- the map containing the objects
-