2016-05-04 2 views

ответ

0

Мы можем настроить поведение требуется ответив party.xml

<bean parent="RelyingPartyByName" c:relyingPartyIds="https://sp.example.org"> 
    <property name="profileConfigurations"> 
     <list> 
     <!-- Your refs or beans here. --> 
     </list> 
    </property> 
</bean> 

И

можно указать нужный механизм аутентификации в качестве

<bean parent="SAML2.SSO" p:authenticationFlows="#{{'Password'}}" /> 

, который будет как

<bean parent="RelyingPartyByName" c:relyingPartyIds="https://sp.example.org"> 
     <property name="profileConfigurations"> 
      <list> 
       <bean parent="SAML2.SSO" p:authenticationFlows="#{{'Password'}}" /> 
      </list> 
     </property> 
    </bean> 

 Смежные вопросы

  • Нет связанных вопросов^_^