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.
Merge pull request #8 from hbz/7-improveHbzSpecificElements
Update hbz specific elements #7
- Loading branch information
Showing
57 changed files
with
1,594 additions
and
16 deletions.
There are no files selected for viewing
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
47 changes: 47 additions & 0 deletions
47
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag093.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,47 @@ | ||
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; | ||
|
||
/** | ||
* Lizenzinformationen | ||
* https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686 | ||
*/ | ||
public class Tag093 extends DataFieldDefinition { | ||
|
||
private static Tag093 uniqueInstance; | ||
|
||
private Tag093() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag093 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag093(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "093"; | ||
label = "Lizenzinformationen"; | ||
mqTag = "Lizenzinformationen"; | ||
cardinality = Cardinality.Nonrepeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Herkunft, Erfassungsrichtung", "NR", | ||
"b", "Angaben zu den Zugriffsrechten", "NR", | ||
"c", "Angaben zur Zahl der parallelen Zugriffe Freitext","NR", | ||
"d", "Kommentar zu den Zugriffsrechten Freitext","NR", | ||
"e", "Angaben zum Dokumenttyp","NR", | ||
"f", "Angaben zum Lizenztyp","NR", | ||
"g", "Angaben zum Preistyp","NR", | ||
"h", "Kommentar zu Dokument-, Lizenz- und Preistyp Freitext","NR" | ||
); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag099.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,41 @@ | ||
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; | ||
|
||
/** | ||
* Datum für den Austauschsatz | ||
* https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686 | ||
*/ | ||
public class Tag099 extends DataFieldDefinition { | ||
|
||
private static Tag099 uniqueInstance; | ||
|
||
private Tag099() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag099 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag099(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "099"; | ||
label = "Datum für den Austauschsatz"; | ||
mqTag = "DatumFürDenAustauschsatz"; | ||
cardinality = Cardinality.Nonrepeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Kennzeichnungen für Nationallizenzen und digitale Sammlungen", "NR", | ||
"b", "Lizenzjahr", "NR" | ||
); | ||
} | ||
} |
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
47 changes: 47 additions & 0 deletions
47
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag935.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,47 @@ | ||
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; | ||
|
||
/** | ||
* BSZ-Feld für Codierungen | ||
* https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686 | ||
*/ | ||
public class Tag935 extends DataFieldDefinition { | ||
|
||
private static Tag935 uniqueInstance; | ||
|
||
private Tag935() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag935 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag935(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "935"; | ||
label = "BSZ-Feld für Codierungen"; | ||
mqTag = "BSZ-FeldFürCodierungen"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "Abrufzeichen vierstellig", "R", | ||
"b", "Datenträger", "R", | ||
"c", "Veröffentlichungsart und -inhalt", "R", | ||
"d", "Codes aus Fremddaten", "R", | ||
"e", "Bibliographische Zitate", "R", | ||
"m", "Explizit der Unterlage", "R", | ||
"n", "Normierter Explizit", "R" | ||
); | ||
|
||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag940.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,41 @@ | ||
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; | ||
|
||
/** | ||
* reserviert für BVB | ||
*/ | ||
public class Tag940 extends DataFieldDefinition { | ||
|
||
private static Tag940 uniqueInstance; | ||
|
||
private Tag940() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag940 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag940(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "940"; | ||
label = "reserviert für BVB"; | ||
mqTag = "ReserviertFürBVB"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "BVB-Feld", "R" | ||
); | ||
|
||
|
||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag941.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,41 @@ | ||
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; | ||
|
||
/** | ||
* reserviert für BVB | ||
*/ | ||
public class Tag941 extends DataFieldDefinition { | ||
|
||
private static Tag941 uniqueInstance; | ||
|
||
private Tag941() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag941 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag941(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "941"; | ||
label = "reserviert für BVB"; | ||
mqTag = "ReserviertFürBVB"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "BVB-Feld", "R" | ||
); | ||
|
||
|
||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag942.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,41 @@ | ||
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; | ||
|
||
/** | ||
* reserviert für BVB | ||
*/ | ||
public class Tag942 extends DataFieldDefinition { | ||
|
||
private static Tag942 uniqueInstance; | ||
|
||
private Tag942() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag942 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag942(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "942"; | ||
label = "reserviert für BVB"; | ||
mqTag = "ReserviertFürBVB"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "BVB-Feld", "R" | ||
); | ||
|
||
|
||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag943.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,41 @@ | ||
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; | ||
|
||
/** | ||
* reserviert für BVB | ||
*/ | ||
public class Tag943 extends DataFieldDefinition { | ||
|
||
private static Tag943 uniqueInstance; | ||
|
||
private Tag943() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag943 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag943(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "943"; | ||
label = "reserviert für BVB"; | ||
mqTag = "ReserviertFürBVB"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "BVB-Feld", "R" | ||
); | ||
|
||
|
||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/de/gwdg/metadataqa/marc/definition/tags/hbztags/Tag944.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,41 @@ | ||
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; | ||
|
||
/** | ||
* reserviert für BVB | ||
*/ | ||
public class Tag944 extends DataFieldDefinition { | ||
|
||
private static Tag944 uniqueInstance; | ||
|
||
private Tag944() { | ||
initialize(); | ||
postCreation(); | ||
} | ||
|
||
public static Tag944 getInstance() { | ||
if (uniqueInstance == null) | ||
uniqueInstance = new Tag944(); | ||
return uniqueInstance; | ||
} | ||
|
||
private void initialize() { | ||
tag = "944"; | ||
label = "reserviert für BVB"; | ||
mqTag = "ReserviertFürBVB"; | ||
cardinality = Cardinality.Repeatable; | ||
descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=698777686"; | ||
|
||
ind1 = new Indicator(); | ||
ind2 = new Indicator(); | ||
|
||
setSubfieldsWithCardinality( | ||
"a", "BVB-Feld", "R" | ||
); | ||
|
||
|
||
} | ||
} |
Oops, something went wrong.