Added map for smtp server settings to RealmRepresentation

This commit is contained in:
Stian Thorgersen 2013-10-21 17:13:19 +01:00
parent 42051b1111
commit f365e85118

View file

@ -2,6 +2,7 @@ package org.keycloak.representations.idm;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
@ -36,7 +37,7 @@ public class RealmRepresentation {
protected List<ScopeMappingRepresentation> scopeMappings;
protected List<SocialMappingRepresentation> socialMappings;
protected List<ApplicationRepresentation> applications;
protected Map<String, String> smtpServer;
public String getSelf() {
return self;
@ -281,4 +282,12 @@ public class RealmRepresentation {
public void setAutomaticRegistrationAfterSocialLogin(Boolean automaticRegistrationAfterSocialLogin) {
this.automaticRegistrationAfterSocialLogin = automaticRegistrationAfterSocialLogin;
}
public Map<String, String> getSmtpServer() {
return smtpServer;
}
public void setSmtpServer(Map<String, String> smtpServer) {
this.smtpServer = smtpServer;
}
}