add .toString() for OperationOutcome.issue
This commit is contained in:
parent
d9faafa1be
commit
28a8165034
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue