KEYCLOAK-2444

This commit is contained in:
Bill Burke 2016-02-03 16:43:29 -05:00
parent fc1914e53d
commit a899d86ac0

View file

@ -243,7 +243,7 @@ class KeycloakSubsystemParser implements XMLStreamConstants, XMLElementReader<Li
String credName = credential.getName();
String credValue = credential.getValue().get(CredentialDefinition.VALUE.getName()).asString();
if (credName.contains("")) {
if (credName.indexOf('.') > -1) {
String[] parts = credName.split("\\.");
String provider = parts[0];
String propKey = parts[1];