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 String
clientId
protected String
clientSecret
protected Map<String,String>
customParams
protected boolean
enabled
protected String
responseType
protected String
scope
protected String
tokenUrl
protected String
userIdAttribute
-
Constructor Summary
Constructors Constructor Description AbstractOAuth20AuthModuleConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClientId()
String
getClientSecret()
Map<String,String>
getCustomParams()
String
getResponseType()
String
getScope()
String
getTokenUrl()
String
getUserIdAttribute()
boolean
isEnabled()
void
setClientId(String clientId)
void
setClientSecret(String clientSecret)
void
setCustomParams(Map<String,String> customParams)
void
setEnabled(boolean enabled)
void
setId(String clientId)
void
setResponseType(String responseType)
void
setScope(String scope)
void
setTokenUrl(String tokenUrl)
void
setUserIdAttribute(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)
-
-