Added map for social provider settings to RealmRepresentation

This commit is contained in:
Stian Thorgersen 2013-10-21 17:15:39 +01:00
parent f365e85118
commit 36662fb5ca

View file

@ -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;
}