Class BaseRealmConfig
- java.lang.Object
-
- org.keycloak.representations.adapters.config.BaseRealmConfig
-
- Direct Known Subclasses:
BaseAdapterConfig
,ClientManager.InstallationAdapterConfig
public class BaseRealmConfig extends Object
Common Realm Configuration- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected String
authServerUrl
protected int
confidentialPort
protected String
realm
protected String
realmKey
protected String
sslRequired
-
Constructor Summary
Constructors Constructor Description BaseRealmConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAuthServerUrl()
int
getConfidentialPort()
String
getRealm()
String
getRealmKey()
String
getSslRequired()
void
setAuthServerUrl(String authServerUrl)
void
setConfidentialPort(int confidentialPort)
void
setRealm(String realm)
void
setRealmKey(String realmKey)
void
setSslRequired(String sslRequired)
-
-
-
Method Detail
-
getSslRequired
public String getSslRequired()
-
setSslRequired
public void setSslRequired(String sslRequired)
-
getRealm
public String getRealm()
-
setRealm
public void setRealm(String realm)
-
getRealmKey
public String getRealmKey()
-
setRealmKey
public void setRealmKey(String realmKey)
-
getAuthServerUrl
public String getAuthServerUrl()
-
setAuthServerUrl
public void setAuthServerUrl(String authServerUrl)
-
getConfidentialPort
public int getConfidentialPort()
-
setConfidentialPort
public void setConfidentialPort(int confidentialPort)
-
-