use of org.apache.cxf.sts.token.delegation.SAMLDelegationHandler 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