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 192dec61a5..279305370a 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 scopeMappings; protected List socialMappings; protected List applications; + protected Map socialProviders; protected Map smtpServer; public String getSelf() { @@ -283,6 +284,14 @@ public class RealmRepresentation { this.automaticRegistrationAfterSocialLogin = automaticRegistrationAfterSocialLogin; } + public Map getSocialProviders() { + return socialProviders; + } + + public void setSocialProviders(Map socialProviders) { + this.socialProviders = socialProviders; + } + public Map getSmtpServer() { return smtpServer; }