Hi All,
I have a requirement to process the auth response before I give it to client.
i.e Post to successful authentication I would like to make a REST call to validate the user against 3rd party and return the AuthResposne.
As part of this I have written a new CustomAuthHandlerConfig.java which is as similar as LdapAuthenticationConfiguration in CAS.
Getting below errors during cas-overlay build.
[ERROR] COMPILATION ERROR :[INFO] -------------------------------------------------------------[ERROR] /home/username/cas-workspace/cas-overlay-template/src/main/java/com/pramati/cas/config/CustomAuthHandlerConfig.java:[22,45] package org.apereo.cas.authentication.support does not exist[ERROR] /home/username/cas-workspace/cas-overlay-template/src/main/java/com/pramati/cas/config/CustomAuthHandlerConfig.java:[23,45] package org.apereo.cas.authentication.support does not exist[ERROR] /home/username/cas-workspace/cas-overlay-template/src/main/java/com/pramati/cas/config/CustomAuthHandlerConfig.java:[24,45] package org.apereo.cas.authentication.support does not exist[ERROR] /home/username/cas-workspace/cas-overlay-template/src/main/java/com/pramati/cas/config/CustomAuthHandlerConfig.java:[33,27] package org.apereo.cas.util does not exist[ERROR] /home/username/cas-workspace/cas-overlay-template/src/main/java/com/pramati/cas/config/CustomAuthHandlerConfig.java:[34,27] package org.apereo.cas.util does not exist
Added Dependency as:
<dependency><groupId>org.apereo.cas</groupId><artifactId>cas-server-core-authentication-api</artifactId><version>${cas.version}</version></dependency>
Attached related files for the same.
--
- Andy