Class AbstractOAuth20AuthModuleConf
- java.lang.Object
-
- org.apache.syncope.common.lib.auth.Pac4jAuthModuleConf
-
- org.apache.syncope.common.lib.auth.AbstractOAuth20AuthModuleConf
-
- All Implemented Interfaces:
Serializable,AuthModuleConf,BaseBean
- Direct Known Subclasses:
AbstractOIDCAuthModuleConf,OAuth20AuthModuleConf
public abstract class AbstractOAuth20AuthModuleConf extends Pac4jAuthModuleConf
- 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 StringclientIdprotected StringclientSecretprotected Map<String,String>customParamsprotected booleanenabledprotected StringresponseTypeprotected Stringscopeprotected StringtokenUrlprotected StringuserIdAttribute
-
Constructor Summary
Constructors Constructor Description AbstractOAuth20AuthModuleConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClientId()StringgetClientSecret()Map<String,String>getCustomParams()StringgetResponseType()StringgetScope()StringgetTokenUrl()StringgetUserIdAttribute()booleanisEnabled()voidsetClientId(String clientId)voidsetClientSecret(String clientSecret)voidsetCustomParams(Map<String,String> customParams)voidsetEnabled(boolean enabled)voidsetId(String clientId)voidsetResponseType(String responseType)voidsetScope(String scope)voidsetTokenUrl(String tokenUrl)voidsetUserIdAttribute(String userIdAttribute)-
Methods inherited from class org.apache.syncope.common.lib.auth.Pac4jAuthModuleConf
getClientName, setClientName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.syncope.common.lib.auth.AuthModuleConf
map
-
-
-
-
Method Detail
-
getClientId
public String getClientId()
-
setId
public void setId(String clientId)
-
getClientSecret
public String getClientSecret()
-
setClientSecret
public void setClientSecret(String clientSecret)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
getTokenUrl
public String getTokenUrl()
-
setTokenUrl
public void setTokenUrl(String tokenUrl)
-
getResponseType
public String getResponseType()
-
setResponseType
public void setResponseType(String responseType)
-
getScope
public String getScope()
-
setScope
public void setScope(String scope)
-
setClientId
public void setClientId(String clientId)
-
getUserIdAttribute
public String getUserIdAttribute()
-
setUserIdAttribute
public void setUserIdAttribute(String userIdAttribute)
-
-