Class AzureOIDCAuthModuleConf
- java.lang.Object
-
- org.apache.syncope.common.lib.auth.Pac4jAuthModuleConf
-
- org.apache.syncope.common.lib.auth.AbstractOAuth20AuthModuleConf
-
- org.apache.syncope.common.lib.auth.AbstractOIDCAuthModuleConf
-
- org.apache.syncope.common.lib.auth.AzureOIDCAuthModuleConf
-
- All Implemented Interfaces:
Serializable
,AuthModuleConf
,BaseBean
public class AzureOIDCAuthModuleConf extends AbstractOIDCAuthModuleConf implements AuthModuleConf
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.syncope.common.lib.auth.AuthModuleConf
AuthModuleConf.Mapper
-
-
Field Summary
Fields Modifier and Type Field Description protected String
tenant
Azure AD tenant name.-
Fields inherited from class org.apache.syncope.common.lib.auth.AbstractOIDCAuthModuleConf
discoveryUri, expireSessionWithToken, maxClockSkew, preferredJwsAlgorithm, responseMode, tokenExpirationAdvance, useNonce
-
Fields inherited from class org.apache.syncope.common.lib.auth.AbstractOAuth20AuthModuleConf
clientId, clientSecret, customParams, enabled, responseType, scope, tokenUrl, userIdAttribute
-
-
Constructor Summary
Constructors Constructor Description AzureOIDCAuthModuleConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTenant()
Map<String,Object>
map(AuthModuleTO authModule, AuthModuleConf.Mapper mapper)
void
setTenant(String tenant)
-
Methods inherited from class org.apache.syncope.common.lib.auth.AbstractOIDCAuthModuleConf
getDiscoveryUri, getMaxClockSkew, getPreferredJwsAlgorithm, getResponseMode, getTokenExpirationAdvance, isExpireSessionWithToken, isUseNonce, setDiscoveryUri, setExpireSessionWithToken, setMaxClockSkew, setPreferredJwsAlgorithm, setResponseMode, setTokenExpirationAdvance, setUseNonce
-
Methods inherited from class org.apache.syncope.common.lib.auth.AbstractOAuth20AuthModuleConf
getClientId, getClientSecret, getCustomParams, getResponseType, getScope, getTokenUrl, getUserIdAttribute, isEnabled, setClientId, setClientSecret, setCustomParams, setEnabled, setId, setResponseType, setScope, setTokenUrl, setUserIdAttribute
-
Methods inherited from class org.apache.syncope.common.lib.auth.Pac4jAuthModuleConf
getClientName, setClientName
-
-
-
-
Field Detail
-
tenant
protected String tenant
Azure AD tenant name. After tenant is configured, #getDiscoveryUri() property will be overridden. Azure AD tenant name can take 4 different values: - organizations: Only users with work or school accounts from Azure AD can sign in. - consumers: Only users with a personal Microsoft account can sign in. - Specific tenant domain name or ID: Only user with account under that the specified tenant can login
-
-
Method Detail
-
getTenant
public String getTenant()
-
setTenant
public void setTenant(String tenant)
-
map
public Map<String,Object> map(AuthModuleTO authModule, AuthModuleConf.Mapper mapper)
- Specified by:
map
in interfaceAuthModuleConf
-
-