Merge pull request #3595 from dehort/KEYCLOAK-4020
Modified the saml parser to handle boolean attribute value types
This commit is contained in:
commit
06affc0700
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