-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMyUnfallDatensatz.java
83 lines (75 loc) · 3.1 KB
/
MyUnfallDatensatz.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* Copyright (c) 2009 - 2021 by Oli B.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* (c)reated 21.11.2009 by Oli B. ([email protected])
*/
package gdv.xport.demo;
import gdv.xport.Datenpaket;
import gdv.xport.satz.Datensatz;
import gdv.xport.satz.xml.SatzXml;
import gdv.xport.util.SatzFactory;
import gdv.xport.util.SatzTyp;
import gdv.xport.util.XmlFormatter;
import javax.xml.stream.XMLStreamException;
import java.io.File;
import java.io.IOException;
/**
* Diese Demo-Klasse zeigt u.a., wie man eine Enumeration beim gdv-xport-Framework registriert. Sie repraesentiert den
* Datensatz 0210.030 (Unfall, Vertragsspezifischer Teil), definiert aber nur einige wenige ausgewaehlte Felder.
*
* @author oliver ([email protected])
* @since 0.3 (21.11.2009)
*/
public class MyUnfallDatensatz extends SatzXml {
/**
* Hier wird die XML-Beschreibung "MyUnfalldatensatz.xml" mit der Datenbeschreibung am
* Framework registriert und anschliessend das Beispiel von <a href=
* "http://www.gdv-online.de/vuvm/musterdatei_bestand/musterdatei_041222.txt">
* musterdatei_041222.txt</a> importiert.
*
* @param args werden ignoriert
* @throws IOException falls z.B. keine Netzverbindung da ist
*/
public static void main(final String[] args) throws IOException {
// im Framework registrieren
SatzFactory.register(MyUnfallDatensatz.class, SatzTyp.of("0210.30"));
importMusterdatei();
// und hiermit melden wir den Datensatz wieder vom Framework ab
SatzFactory.unregister(SatzTyp.of("0210.30"));
}
private static void importMusterdatei() throws IOException {
// Datenpaket importieren
Datenpaket datenpaket = new Datenpaket();
datenpaket.importFrom(new File("src/test/resources/musterdatei_041222.txt"));
// jetzt den ersten Datensatz 210, Sparte 30 suchen und ausgeben
for (Datensatz datensatz : datenpaket.getDatensaetze()) {
if ((datensatz.getSatzart() == 210) && (datensatz.getSparte() == 30)) {
datensatz.export(System.out);
new XmlFormatter(System.out).write(datensatz);
break;
}
}
}
/**
* Hiermit initialisieren wir die Klasse mit Satzart 210 und Sparte 30 (Unfall).
* Die Satzartz ergibt sich dabei aus der Beschreibung in "MyUnfallDatensatz.xml".
*
* @throws XMLStreamException bei XML-Fehlern in MyUnfallDatensatz.xml"
* @throws IOException bei Lesefehlern
*/
public MyUnfallDatensatz() throws XMLStreamException, IOException {
super(SatzXml.of("/gdv/xport/demo/MyUnfallDatensatz.xml"));
}
}