Skip to content

Commit

Permalink
Add how to ignore namespace (#552)
Browse files Browse the repository at this point in the history
To ignore the namepace it has to be set to null.
The @description describes how to set to null using the flux. The method
description describes how to set it using the JAVA-API.
  • Loading branch information
dr0i committed Jul 15, 2024
1 parent 0d73713 commit a0cd80c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @author Markus Michael Geipel
*
*/
@Description("A marc xml reader")
@Description("A MARC XML reader. To read marc data without namespace specification set option `namespace=\"\"`")
@In(XmlReceiver.class)
@Out(StreamReceiver.class)
@FluxCommand("handle-marcxml")
Expand Down Expand Up @@ -63,7 +63,7 @@ public MarcXmlHandler() {
*
* <strong>Default value: {@value #NAMESPACE}</strong>
*
* @param namespace the namespace
* @param namespace the namespace. Set to null if namespace shouldn't be checked.
*/
public void setNamespace(final String namespace) {
this.namespace = namespace;
Expand Down

0 comments on commit a0cd80c

Please sign in to comment.