/
Custom Authentication
Custom Authentication
To provide a custom authentication mechanism, create your own authentication handler by extending AbstractAuthenticationHandler
and implementing its abstract methods:
public class CustomAuthenticationHandler extends AbstractAuthenticationHandler {
@Override
protected LoginService getHandlerLoginService() {
// ...
}
@Override
protected IdentityService getHandlerIdentityService() {
// ...
}
@Override
protected Configuration getLoginModuleConfiguration() {
// ...
}
}
An example of an AuthenticationHandler
can be found in the CDAP source code for LDAPAuthenticationHandler.java.
To configure the custom authentication handler, see Configuring Authentication Mechanisms.
, multiple selections available,
Related content
CDAP Authentication Client for Java
CDAP Authentication Client for Java
More like this
Configuring Managed Authentication
Configuring Managed Authentication
More like this
Client Authentication
Client Authentication
More like this
Enabling Authorization
Enabling Authorization
More like this
Appendix: cdap-site.xml and cdap-default.xml
Appendix: cdap-site.xml and cdap-default.xml
Read with this
Authorization Extensions
Authorization Extensions
More like this
Created in 2020 by Google Inc.