mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 15:02:05 -03:30
Creating IdentityProvider with latest java admin-client may fail against Keycloak server 26.4 or older
closes #45257 Signed-off-by: mposolda <mposolda@gmail.com>
This commit is contained in:
parent
e4f6a72fab
commit
29c15d8e8a
@ -16,7 +16,6 @@
|
||||
*/
|
||||
package org.keycloak.representations.idm;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -61,7 +60,7 @@ public class IdentityProviderRepresentation {
|
||||
protected String postBrokerLoginFlowAlias;
|
||||
protected String organizationId;
|
||||
protected Map<String, String> config = new HashMap<>();
|
||||
protected List<String> types = new ArrayList<>();
|
||||
protected List<String> types; // Null by default for the compatibility with older versions of Keycloak server (26.4 and older)
|
||||
|
||||
public String getInternalId() {
|
||||
return this.internalId;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user