diff --git a/core/src/main/java/org/keycloak/representations/idm/RealmRepresentation.java b/core/src/main/java/org/keycloak/representations/idm/RealmRepresentation.java
index 192dec6..2793053 100755
--- a/core/src/main/java/org/keycloak/representations/idm/RealmRepresentation.java
+++ b/core/src/main/java/org/keycloak/representations/idm/RealmRepresentation.java
@@ -37,6 +37,7 @@ public class RealmRepresentation {
protected List<ScopeMappingRepresentation> scopeMappings;
protected List<SocialMappingRepresentation> socialMappings;
protected List<ApplicationRepresentation> applications;
+ protected Map<String, String> socialProviders;
protected Map<String, String> smtpServer;
public String getSelf() {
@@ -283,6 +284,14 @@ public class RealmRepresentation {
this.automaticRegistrationAfterSocialLogin = automaticRegistrationAfterSocialLogin;
}
+ public Map<String, String> getSocialProviders() {
+ return socialProviders;
+ }
+
+ public void setSocialProviders(Map<String, String> socialProviders) {
+ this.socialProviders = socialProviders;
+ }
+
public Map<String, String> getSmtpServer() {
return smtpServer;
}