Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
* @author Markus Michael Geipel
*
*/
@Description("A generic xml reader")
@Description("A generic XML reader. Separates XML data in distinct records with the defined record tag name (default: `recordtagname=\"record\"`) " +
"If no matching record tag is found, the output will be empty. " +
"The handler breaks down XML elements with simple string values and optional attributes " +
"into entities with a value subfield (name configurable) and additional subfields for each attribute. " +
"Record tag and value tag names can be configured. Attributes can get an attributeMarker.")
@In(XmlReceiver.class)
@Out(StreamReceiver.class)
@FluxCommand("handle-generic-xml")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* @author Christoph Böhme
*
*/
@Description("Encodes a stream as xml")
@Description("Encodes a stream as XML. Defaults: `rootTag=\"records\"`, `recordTag=\"record\"`, no attributeMarker.")
@In(StreamReceiver.class)
@Out(String.class)
@FluxCommand("stream-to-xml")
Expand Down
Loading