use of org.springframework.security.cas.ServiceProperties in project tutorials by eugenp.
the class CasSecuredAppApplication method serviceProperties.
@Bean
public ServiceProperties serviceProperties() {
ServiceProperties serviceProperties = new ServiceProperties();
serviceProperties.setService("http://localhost:9000/login/cas");
serviceProperties.setSendRenew(false);
return serviceProperties;
}
use of org.springframework.security.cas.ServiceProperties in project wombat by PLOS.
the class SpringSecurityConfiguration method serviceProperties.
private ServiceProperties serviceProperties() {
ServiceProperties serviceProperties = new ServiceProperties();
serviceProperties.setService(CAS_VALIDATION_URI);
serviceProperties.setSendRenew(false);
serviceProperties.setAuthenticateAllArtifacts(true);
return serviceProperties;
}
Aggregations