add .toString() for OperationOutcome.issue

This commit is contained in:
Grahame Grieve 2022-10-04 14:04:20 +11:00
parent d9faafa1be
commit 28a8165034
1 changed files with 9 additions and 0 deletions

View File

@ -1299,6 +1299,15 @@ For resource issues, this will be a simple XPath limited to element names, repet
}
@Override
public String toString() {
if (getExpression().size() == 1) {
return getExpression().get(0)+" "+getDiagnostics()+" "+getSeverity().toCode()+"/"+getCode().toCode()+": "+getDetails().getText();
} else {
return getExpression()+" "+getDiagnostics()+" "+getSeverity().toCode()+"/"+getCode().toCode()+": "+getDetails().getText();
}
}
}
/**