Skip to content

Commit 29722a3

Browse files
committed
Merge #553 from branch '552-addHowToIgnoreNamespacesInMarcXmlHandler' of github.com:metafacture/metafacture-core
2 parents 0d73713 + 4e9386c commit 29722a3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

metafacture-biblio/src/main/java/org/metafacture/biblio/marc21/MarcXmlHandler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Markus Michael Geipel
3333
*
3434
*/
35-
@Description("A marc xml reader")
35+
@Description("A MARC XML reader. To read marc data without namespace specification set option `namespace=\"\"`")
3636
@In(XmlReceiver.class)
3737
@Out(StreamReceiver.class)
3838
@FluxCommand("handle-marcxml")
@@ -63,7 +63,8 @@ public MarcXmlHandler() {
6363
*
6464
* <strong>Default value: {@value #NAMESPACE}</strong>
6565
*
66-
* @param namespace the namespace
66+
* @param namespace the namespace. Set to null if namespace shouldn't be checked. Set to empty string
67+
* if the namespace is missing in the data.
6768
*/
6869
public void setNamespace(final String namespace) {
6970
this.namespace = namespace;

0 commit comments

Comments
 (0)