use of org.apereo.cas.support.x509.X509TokenDelegationHandler in project cas by apereo.
the class CoreWsSecuritySecurityTokenServiceConfiguration method delegationHandlers.
@RefreshScope
@Bean
public List<TokenDelegationHandler> delegationHandlers() {
final List<TokenDelegationHandler> handlers = new ArrayList<>();
handlers.add(new SAMLDelegationHandler());
handlers.add(new X509TokenDelegationHandler());
return handlers;
}
Aggregations