File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/main/java/health/ere/ps/service/gematik Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -212,8 +212,10 @@ static synchronized String extractKVNR(ReadVSDResult readVSDResult) {
212
212
new ByteArrayInputStream (readVSDResult .persoenlicheVersichertendaten .value ));
213
213
UCPersoenlicheVersichertendatenXML patient = (UCPersoenlicheVersichertendatenXML ) jaxbContext
214
214
.createUnmarshaller ().unmarshal (isPersoenlicheVersichertendaten );
215
-
216
- return patient .getVersicherter ().getVersichertenID ();
215
+
216
+ String versichertenID = patient .getVersicherter ().getVersichertenID ();
217
+ log .fine ("VSDM result: " +e +" VersichertenID: " + versichertenID );
218
+ return versichertenID ;
217
219
} else {
218
220
String pn = doc .getElementsByTagName ("PZ" ).item (0 ).getTextContent ();
219
221
String base64PN = new String (DatatypeConverter .parseBase64Binary (pn ));
You can’t perform that action at this time.
0 commit comments