Jean-Louis MONTEIRO created TOMEE-2514:
------------------------------------------
Summary: MP-JWT ClaimBean fails if claim not found
Key: TOMEE-2514
URL: https://issues.apache.org/jira/browse/TOMEE-2514
Project: TomEE
Issue Type: Bug
Affects Versions: 8.0.0-M2
Reporter: Jean-Louis MONTEIRO
The MP-JWT ClaimBean implementation fails with a null pointer exception if
claim can't be found.
try {
final Class<?> type = (Class<?>) ip.getType();
final String claimValue = getClaimValue(key).toString();
return (T) PropertyEditors.getValue(type, claimValue);
} catch (Exception e) {
logger.warning(e.getMessage());
}
We should check the getClaimValue(key) value before calling toString on it.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)