Modified the saml parser to handle boolean attribute value types
[KEYCLOAK-4020]
This commit is contained in:
parent
b1265f6d70
commit
c149358028
1 changed files with 2 additions and 0 deletions
|
@ -320,6 +320,8 @@ public class SAMLParserUtil {
|
|||
return StaxParserUtil.getElementText(xmlEventReader);
|
||||
} else if(typeValue.contains(":base64Binary")){
|
||||
return StaxParserUtil.getElementText(xmlEventReader);
|
||||
} else if(typeValue.contains(":boolean")){
|
||||
return StaxParserUtil.getElementText(xmlEventReader);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue