use of org.springframework.security.cas.web.CasAuthenticationEntryPoint in project uhgroupings by uhawaii-system-its-ti-iam.
the class SecurityConfig method casProcessingFilterEntryPoint.
@Bean
public CasAuthenticationEntryPoint casProcessingFilterEntryPoint() {
CasAuthenticationEntryPoint entryPoint = new CasAuthenticationEntryPoint();
entryPoint.setLoginUrl(casLoginUrl);
entryPoint.setServiceProperties(serviceProperties());
return entryPoint;
}
use of org.springframework.security.cas.web.CasAuthenticationEntryPoint in project esup-papercut by EsupPortail.
the class CasConfig method authenticationEntryPoint.
@Bean
@Primary
public AuthenticationEntryPoint authenticationEntryPoint(ServiceProperties sP) {
CasAuthenticationEntryPoint entryPoint = new CasAuthenticationEntryPoint();
entryPoint.setLoginUrl(url + "/login");
entryPoint.setServiceProperties(sP);
return entryPoint;
}
use of org.springframework.security.cas.web.CasAuthenticationEntryPoint in project tutorials by eugenp.
the class CasSecuredAppApplication method authenticationEntryPoint.
@Bean
@Primary
public AuthenticationEntryPoint authenticationEntryPoint(ServiceProperties sP) {
CasAuthenticationEntryPoint entryPoint = new CasAuthenticationEntryPoint();
entryPoint.setLoginUrl("https://localhost:6443/cas/login");
entryPoint.setServiceProperties(sP);
return entryPoint;
}
Aggregations