Tomas Bozik created FEDIZ-226:
---------------------------------
Summary: authnRequestBuilder cofiguration property for
samlProtocolType ignored
Key: FEDIZ-226
URL: https://issues.apache.org/jira/browse/FEDIZ-226
Project: CXF-Fediz
Issue Type: Bug
Components: Plugin
Affects Versions: 1.4.4
Reporter: Tomas Bozik
authnRequestBuilder cofiguration property for samlProtocolType is ignored due
to the bug in org.apache.cxf.fediz.core.config.SAMLProtocol line 84. It states
following:
samlpRequestBuilder = new DefaultSAMLPRequestBuilder();
it means, that DefaultSAMLPRequestBuilder is created even if configuration
defines custom authnRequestBuilder.
it should be something like this:
if (null == samlpRequestBuilder)
samlpRequestBuilder = new DefaultSAMLPRequestBuilder();
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)