forked from pkiraly/qa-catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag961.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package de.gwdg.metadataqa.marc.definition.tags.hbztags; | ||
|
||
import de.gwdg.metadataqa.marc.definition.Cardinality; | ||
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition; | ||
import de.gwdg.metadataqa.marc.definition.structure.Indicator; | ||
|
||
/** | ||
* Sonstige Standardnummer | ||
*/ | ||
public class Tag961 extends DataFieldDefinition { | ||
|
||
private static Tag961 uniqueInstance; | ||
|
||
private Tag961() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag961 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag961(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "961"; | ||
label = "Sonstige Standardnummer"; | ||
mqTag = "SonstigeStandardnummer"; | ||
cardinality = Cardinality.Repeatable; | ||
// descriptionUrl = "https://service-wiki.hbz-nrw.de/nebenbei/cgi/anonymous_display_only.pl?pageId=717357250"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Sonstige Standardnummer", "R" | ||
); | ||
|
||
} | ||
} |