Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.1.6
-
Component/s: JAX-RS Security
-
Labels:None
-
Estimated Complexity:Unknown
Description
Checks that Issuer is nonnull but outputs expiry value instead of issuer.
org.apache.cxf.rs.security.oauth2.provider.OAuthJSONProvider.java
// From line 116, version 3.1.6 if (obj.getIss() != null) { sb.append(","); appendJsonPair(sb, "iss", obj.getExp(), false); // Wrong value, shoud be obj.getIss() }